In [1]:
# Supress Warnings

import warnings
warnings.filterwarnings('ignore')
In [2]:
# Import the numpy and pandas packages

import numpy as np
import pandas as pd

Task 1: Reading and Inspection

  • ### Subtask 1.1: Import and read

Import and read the movie database. Store it in a variable called movies.

In [3]:
movies = pd.read_csv('Movie_2BAssignment_2BData_(2).csv')
movies.head()
Out[3]:
color director_name num_critic_for_reviews duration director_facebook_likes actor_3_facebook_likes actor_2_name actor_1_facebook_likes gross genres ... num_user_for_reviews language country content_rating budget title_year actor_2_facebook_likes imdb_score aspect_ratio movie_facebook_likes
0 Color James Cameron 723.0 178.0 0.0 855.0 Joel David Moore 1000.0 760505847.0 Action|Adventure|Fantasy|Sci-Fi ... 3054.0 English USA PG-13 237000000.0 2009.0 936.0 7.9 1.78 33000
1 Color Gore Verbinski 302.0 169.0 563.0 1000.0 Orlando Bloom 40000.0 309404152.0 Action|Adventure|Fantasy ... 1238.0 English USA PG-13 300000000.0 2007.0 5000.0 7.1 2.35 0
2 Color Sam Mendes 602.0 148.0 0.0 161.0 Rory Kinnear 11000.0 200074175.0 Action|Adventure|Thriller ... 994.0 English UK PG-13 245000000.0 2015.0 393.0 6.8 2.35 85000
3 Color Christopher Nolan 813.0 164.0 22000.0 23000.0 Christian Bale 27000.0 448130642.0 Action|Thriller ... 2701.0 English USA PG-13 250000000.0 2012.0 23000.0 8.5 2.35 164000
4 NaN Doug Walker NaN NaN 131.0 NaN Rob Walker 131.0 NaN Documentary ... NaN NaN NaN NaN NaN NaN 12.0 7.1 NaN 0

5 rows × 28 columns

  • ### Subtask 1.2: Inspect the dataframe

Inspect the dataframe's columns, shapes, variable types etc.

In [4]:
movies.shape #It has 5043 rows and 28 columns.
Out[4]:
(5043, 28)
In [5]:
movies.columns
Out[5]:
Index(['color', 'director_name', 'num_critic_for_reviews', 'duration',
       'director_facebook_likes', 'actor_3_facebook_likes', 'actor_2_name',
       'actor_1_facebook_likes', 'gross', 'genres', 'actor_1_name',
       'movie_title', 'num_voted_users', 'cast_total_facebook_likes',
       'actor_3_name', 'facenumber_in_poster', 'plot_keywords',
       'movie_imdb_link', 'num_user_for_reviews', 'language', 'country',
       'content_rating', 'budget', 'title_year', 'actor_2_facebook_likes',
       'imdb_score', 'aspect_ratio', 'movie_facebook_likes'],
      dtype='object')
In [6]:
list(movies.columns)
Out[6]:
['color',
 'director_name',
 'num_critic_for_reviews',
 'duration',
 'director_facebook_likes',
 'actor_3_facebook_likes',
 'actor_2_name',
 'actor_1_facebook_likes',
 'gross',
 'genres',
 'actor_1_name',
 'movie_title',
 'num_voted_users',
 'cast_total_facebook_likes',
 'actor_3_name',
 'facenumber_in_poster',
 'plot_keywords',
 'movie_imdb_link',
 'num_user_for_reviews',
 'language',
 'country',
 'content_rating',
 'budget',
 'title_year',
 'actor_2_facebook_likes',
 'imdb_score',
 'aspect_ratio',
 'movie_facebook_likes']
In [7]:
print(list(movies.columns),end=' ')
['color', 'director_name', 'num_critic_for_reviews', 'duration', 'director_facebook_likes', 'actor_3_facebook_likes', 'actor_2_name', 'actor_1_facebook_likes', 'gross', 'genres', 'actor_1_name', 'movie_title', 'num_voted_users', 'cast_total_facebook_likes', 'actor_3_name', 'facenumber_in_poster', 'plot_keywords', 'movie_imdb_link', 'num_user_for_reviews', 'language', 'country', 'content_rating', 'budget', 'title_year', 'actor_2_facebook_likes', 'imdb_score', 'aspect_ratio', 'movie_facebook_likes'] 
In [8]:
L=[]
for i in movies.columns:
    L.append(i)
print(L)
['color', 'director_name', 'num_critic_for_reviews', 'duration', 'director_facebook_likes', 'actor_3_facebook_likes', 'actor_2_name', 'actor_1_facebook_likes', 'gross', 'genres', 'actor_1_name', 'movie_title', 'num_voted_users', 'cast_total_facebook_likes', 'actor_3_name', 'facenumber_in_poster', 'plot_keywords', 'movie_imdb_link', 'num_user_for_reviews', 'language', 'country', 'content_rating', 'budget', 'title_year', 'actor_2_facebook_likes', 'imdb_score', 'aspect_ratio', 'movie_facebook_likes']
In [9]:
movies.dtypes #To get the datatypes of columns of movies.
Out[9]:
color                         object
director_name                 object
num_critic_for_reviews       float64
duration                     float64
director_facebook_likes      float64
actor_3_facebook_likes       float64
actor_2_name                  object
actor_1_facebook_likes       float64
gross                        float64
genres                        object
actor_1_name                  object
movie_title                   object
num_voted_users                int64
cast_total_facebook_likes      int64
actor_3_name                  object
facenumber_in_poster         float64
plot_keywords                 object
movie_imdb_link               object
num_user_for_reviews         float64
language                      object
country                       object
content_rating                object
budget                       float64
title_year                   float64
actor_2_facebook_likes       float64
imdb_score                   float64
aspect_ratio                 float64
movie_facebook_likes           int64
dtype: object
In [10]:
movies.describe
Out[10]:
<bound method NDFrame.describe of       color      director_name  num_critic_for_reviews  duration  \
0     Color      James Cameron                   723.0     178.0   
1     Color     Gore Verbinski                   302.0     169.0   
2     Color         Sam Mendes                   602.0     148.0   
3     Color  Christopher Nolan                   813.0     164.0   
4       NaN        Doug Walker                     NaN       NaN   
...     ...                ...                     ...       ...   
5038  Color        Scott Smith                     1.0      87.0   
5039  Color                NaN                    43.0      43.0   
5040  Color   Benjamin Roberds                    13.0      76.0   
5041  Color        Daniel Hsia                    14.0     100.0   
5042  Color           Jon Gunn                    43.0      90.0   

      director_facebook_likes  actor_3_facebook_likes      actor_2_name  \
0                         0.0                   855.0  Joel David Moore   
1                       563.0                  1000.0     Orlando Bloom   
2                         0.0                   161.0      Rory Kinnear   
3                     22000.0                 23000.0    Christian Bale   
4                       131.0                     NaN        Rob Walker   
...                       ...                     ...               ...   
5038                      2.0                   318.0     Daphne Zuniga   
5039                      NaN                   319.0     Valorie Curry   
5040                      0.0                     0.0     Maxwell Moody   
5041                      0.0                   489.0     Daniel Henney   
5042                     16.0                    16.0  Brian Herzlinger   

      actor_1_facebook_likes        gross                           genres  \
0                     1000.0  760505847.0  Action|Adventure|Fantasy|Sci-Fi   
1                    40000.0  309404152.0         Action|Adventure|Fantasy   
2                    11000.0  200074175.0        Action|Adventure|Thriller   
3                    27000.0  448130642.0                  Action|Thriller   
4                      131.0          NaN                      Documentary   
...                      ...          ...                              ...   
5038                   637.0          NaN                     Comedy|Drama   
5039                   841.0          NaN     Crime|Drama|Mystery|Thriller   
5040                     0.0          NaN            Drama|Horror|Thriller   
5041                   946.0      10443.0             Comedy|Drama|Romance   
5042                    86.0      85222.0                      Documentary   

      ... num_user_for_reviews language  country  content_rating       budget  \
0     ...               3054.0  English      USA           PG-13  237000000.0   
1     ...               1238.0  English      USA           PG-13  300000000.0   
2     ...                994.0  English       UK           PG-13  245000000.0   
3     ...               2701.0  English      USA           PG-13  250000000.0   
4     ...                  NaN      NaN      NaN             NaN          NaN   
...   ...                  ...      ...      ...             ...          ...   
5038  ...                  6.0  English   Canada             NaN          NaN   
5039  ...                359.0  English      USA           TV-14          NaN   
5040  ...                  3.0  English      USA             NaN       1400.0   
5041  ...                  9.0  English      USA           PG-13          NaN   
5042  ...                 84.0  English      USA              PG       1100.0   

      title_year actor_2_facebook_likes imdb_score  aspect_ratio  \
0         2009.0                  936.0        7.9          1.78   
1         2007.0                 5000.0        7.1          2.35   
2         2015.0                  393.0        6.8          2.35   
3         2012.0                23000.0        8.5          2.35   
4            NaN                   12.0        7.1           NaN   
...          ...                    ...        ...           ...   
5038      2013.0                  470.0        7.7           NaN   
5039         NaN                  593.0        7.5         16.00   
5040      2013.0                    0.0        6.3           NaN   
5041      2012.0                  719.0        6.3          2.35   
5042      2004.0                   23.0        6.6          1.85   

     movie_facebook_likes  
0                   33000  
1                       0  
2                   85000  
3                  164000  
4                       0  
...                   ...  
5038                   84  
5039                32000  
5040                   16  
5041                  660  
5042                  456  

[5043 rows x 28 columns]>

Task 2: Cleaning the Data

  • ### Subtask 2.1: Inspect Null values

Find out the number of Null values in all the columns and rows. Also, find the percentage of Null values in each column. Round off the percentages upto two decimal places.

In [11]:
A=list(movies['color'].isnull().value_counts())
A
# index 0 indicates non null value and index 1 indicates null values in respective columns
Out[11]:
[5024, 19]
In [12]:
A=movies['color'].isnull()
B=list(A.value_counts())
B
# index 0 indicates non null value and index 1 indicates null values in respective columns
Out[12]:
[5024, 19]
In [13]:
# Write your code for column-wise null count here
for i in movies.columns:
    print(len(movies[i].dropna()))
    # It prints the non_null values.
5024
4939
4993
5028
4939
5020
5030
5036
4159
5043
5036
5043
5043
5043
5020
5030
4890
5043
5022
5031
5038
4740
4551
4935
5030
5043
4714
5043
In [14]:
# Write your code for column-wise null count here
for i in movies.columns:
    A=list(movies[i].isnull().value_counts())
    if len(A)==1:
        B=0
    else:
        B=A[1]
    print('Column: {}  Null_value: {}  True_value: {}'.format(i,B,A[0]))
Column: color  Null_value: 19  True_value: 5024
Column: director_name  Null_value: 104  True_value: 4939
Column: num_critic_for_reviews  Null_value: 50  True_value: 4993
Column: duration  Null_value: 15  True_value: 5028
Column: director_facebook_likes  Null_value: 104  True_value: 4939
Column: actor_3_facebook_likes  Null_value: 23  True_value: 5020
Column: actor_2_name  Null_value: 13  True_value: 5030
Column: actor_1_facebook_likes  Null_value: 7  True_value: 5036
Column: gross  Null_value: 884  True_value: 4159
Column: genres  Null_value: 0  True_value: 5043
Column: actor_1_name  Null_value: 7  True_value: 5036
Column: movie_title  Null_value: 0  True_value: 5043
Column: num_voted_users  Null_value: 0  True_value: 5043
Column: cast_total_facebook_likes  Null_value: 0  True_value: 5043
Column: actor_3_name  Null_value: 23  True_value: 5020
Column: facenumber_in_poster  Null_value: 13  True_value: 5030
Column: plot_keywords  Null_value: 153  True_value: 4890
Column: movie_imdb_link  Null_value: 0  True_value: 5043
Column: num_user_for_reviews  Null_value: 21  True_value: 5022
Column: language  Null_value: 12  True_value: 5031
Column: country  Null_value: 5  True_value: 5038
Column: content_rating  Null_value: 303  True_value: 4740
Column: budget  Null_value: 492  True_value: 4551
Column: title_year  Null_value: 108  True_value: 4935
Column: actor_2_facebook_likes  Null_value: 13  True_value: 5030
Column: imdb_score  Null_value: 0  True_value: 5043
Column: aspect_ratio  Null_value: 329  True_value: 4714
Column: movie_facebook_likes  Null_value: 0  True_value: 5043
In [15]:
# Write your code for column-wise null percentages here
D=movies.shape[0]
for i in movies.columns:
    A=list(movies[i].isnull().value_counts())
    if len(A)==1:
        B=0
    else:
        B=A[1]
    null_per=(B/D)*100
    not_null_per=((D-B)/D)*100 
    print('Column: {}     Null_Percentage: {}      True_value_Percentage: {}'.format(i,null_per,not_null_per))
Column: color     Null_Percentage: 0.3767598651596272      True_value_Percentage: 99.62324013484037
Column: director_name     Null_Percentage: 2.062264525084275      True_value_Percentage: 97.93773547491573
Column: num_critic_for_reviews     Null_Percentage: 0.9914733293674401      True_value_Percentage: 99.00852667063256
Column: duration     Null_Percentage: 0.297441998810232      True_value_Percentage: 99.70255800118977
Column: director_facebook_likes     Null_Percentage: 2.062264525084275      True_value_Percentage: 97.93773547491573
Column: actor_3_facebook_likes     Null_Percentage: 0.4560777315090224      True_value_Percentage: 99.54392226849097
Column: actor_2_name     Null_Percentage: 0.2577830656355344      True_value_Percentage: 99.74221693436446
Column: actor_1_facebook_likes     Null_Percentage: 0.13880626611144162      True_value_Percentage: 99.86119373388856
Column: gross     Null_Percentage: 17.52924846321634      True_value_Percentage: 82.47075153678367
Column: genres     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: actor_1_name     Null_Percentage: 0.13880626611144162      True_value_Percentage: 99.86119373388856
Column: movie_title     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: num_voted_users     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: cast_total_facebook_likes     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: actor_3_name     Null_Percentage: 0.4560777315090224      True_value_Percentage: 99.54392226849097
Column: facenumber_in_poster     Null_Percentage: 0.2577830656355344      True_value_Percentage: 99.74221693436446
Column: plot_keywords     Null_Percentage: 3.0339083878643662      True_value_Percentage: 96.96609161213563
Column: movie_imdb_link     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: num_user_for_reviews     Null_Percentage: 0.41641879833432477      True_value_Percentage: 99.58358120166567
Column: language     Null_Percentage: 0.2379535990481856      True_value_Percentage: 99.7620464009518
Column: country     Null_Percentage: 0.099147332936744      True_value_Percentage: 99.90085266706326
Column: content_rating     Null_Percentage: 6.008328375966687      True_value_Percentage: 93.99167162403332
Column: budget     Null_Percentage: 9.75609756097561      True_value_Percentage: 90.2439024390244
Column: title_year     Null_Percentage: 2.1415823914336705      True_value_Percentage: 97.85841760856633
Column: actor_2_facebook_likes     Null_Percentage: 0.2577830656355344      True_value_Percentage: 99.74221693436446
Column: imdb_score     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: aspect_ratio     Null_Percentage: 6.523894507237755      True_value_Percentage: 93.47610549276224
Column: movie_facebook_likes     Null_Percentage: 0.0      True_value_Percentage: 100.0
In [16]:
# Write your code for row-wise null percentages here
for i in range(movies.shape[0]):
    print(movies.loc[i,:])
color                                                                    Color
director_name                                                    James Cameron
num_critic_for_reviews                                                     723
duration                                                                   178
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     855
actor_2_name                                                  Joel David Moore
actor_1_facebook_likes                                                    1000
gross                                                              7.60506e+08
genres                                         Action|Adventure|Fantasy|Sci-Fi
actor_1_name                                                       CCH Pounder
movie_title                                                            Avatar 
num_voted_users                                                         886204
cast_total_facebook_likes                                                 4834
actor_3_name                                                         Wes Studi
facenumber_in_poster                                                         0
plot_keywords                           avatar|future|marine|native|paraplegic
movie_imdb_link              http://www.imdb.com/title/tt0499549/?ref_=fn_t...
num_user_for_reviews                                                      3054
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                2.37e+08
title_year                                                                2009
actor_2_facebook_likes                                                     936
imdb_score                                                                 7.9
aspect_ratio                                                              1.78
movie_facebook_likes                                                     33000
Name: 0, dtype: object
color                                                                    Color
director_name                                                   Gore Verbinski
num_critic_for_reviews                                                     302
duration                                                                   169
director_facebook_likes                                                    563
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Orlando Bloom
actor_1_facebook_likes                                                   40000
gross                                                              3.09404e+08
genres                                                Action|Adventure|Fantasy
actor_1_name                                                       Johnny Depp
movie_title                          Pirates of the Caribbean: At World's End 
num_voted_users                                                         471220
cast_total_facebook_likes                                                48350
actor_3_name                                                    Jack Davenport
facenumber_in_poster                                                         0
plot_keywords                goddess|marriage ceremony|marriage proposal|pi...
movie_imdb_link              http://www.imdb.com/title/tt0449088/?ref_=fn_t...
num_user_for_reviews                                                      1238
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   3e+08
title_year                                                                2007
actor_2_facebook_likes                                                    5000
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1, dtype: object
color                                                                    Color
director_name                                                       Sam Mendes
num_critic_for_reviews                                                     602
duration                                                                   148
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     161
actor_2_name                                                      Rory Kinnear
actor_1_facebook_likes                                                   11000
gross                                                              2.00074e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                   Christoph Waltz
movie_title                                                           Spectre 
num_voted_users                                                         275868
cast_total_facebook_likes                                                11700
actor_3_name                                                  Stephanie Sigman
facenumber_in_poster                                                         1
plot_keywords                              bomb|espionage|sequel|spy|terrorist
movie_imdb_link              http://www.imdb.com/title/tt2379713/?ref_=fn_t...
num_user_for_reviews                                                       994
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                2.45e+08
title_year                                                                2015
actor_2_facebook_likes                                                     393
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     85000
Name: 2, dtype: object
color                                                                    Color
director_name                                                Christopher Nolan
num_critic_for_reviews                                                     813
duration                                                                   164
director_facebook_likes                                                  22000
actor_3_facebook_likes                                                   23000
actor_2_name                                                    Christian Bale
actor_1_facebook_likes                                                   27000
gross                                                              4.48131e+08
genres                                                         Action|Thriller
actor_1_name                                                         Tom Hardy
movie_title                                             The Dark Knight Rises 
num_voted_users                                                        1144337
cast_total_facebook_likes                                               106759
actor_3_name                                              Joseph Gordon-Levitt
facenumber_in_poster                                                         0
plot_keywords                deception|imprisonment|lawlessness|police offi...
movie_imdb_link              http://www.imdb.com/title/tt1345836/?ref_=fn_t...
num_user_for_reviews                                                      2701
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.5e+08
title_year                                                                2012
actor_2_facebook_likes                                                   23000
imdb_score                                                                 8.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                    164000
Name: 3, dtype: object
color                                                                      NaN
director_name                                                      Doug Walker
num_critic_for_reviews                                                     NaN
duration                                                                   NaN
director_facebook_likes                                                    131
actor_3_facebook_likes                                                     NaN
actor_2_name                                                        Rob Walker
actor_1_facebook_likes                                                     131
gross                                                                      NaN
genres                                                             Documentary
actor_1_name                                                       Doug Walker
movie_title                  Star Wars: Episode VII - The Force Awakens    ...
num_voted_users                                                              8
cast_total_facebook_likes                                                  143
actor_3_name                                                               NaN
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt5289954/?ref_=fn_t...
num_user_for_reviews                                                       NaN
language                                                                   NaN
country                                                                    NaN
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                      12
imdb_score                                                                 7.1
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 4, dtype: object
color                                                                    Color
director_name                                                   Andrew Stanton
num_critic_for_reviews                                                     462
duration                                                                   132
director_facebook_likes                                                    475
actor_3_facebook_likes                                                     530
actor_2_name                                                   Samantha Morton
actor_1_facebook_likes                                                     640
gross                                                              7.30587e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                      Daryl Sabara
movie_title                                                       John Carter 
num_voted_users                                                         212204
cast_total_facebook_likes                                                 1873
actor_3_name                                                      Polly Walker
facenumber_in_poster                                                         1
plot_keywords                alien|american civil war|male nipple|mars|prin...
movie_imdb_link              http://www.imdb.com/title/tt0401729/?ref_=fn_t...
num_user_for_reviews                                                       738
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                               2.637e+08
title_year                                                                2012
actor_2_facebook_likes                                                     632
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     24000
Name: 5, dtype: object
color                                                                    Color
director_name                                                        Sam Raimi
num_critic_for_reviews                                                     392
duration                                                                   156
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    4000
actor_2_name                                                      James Franco
actor_1_facebook_likes                                                   24000
gross                                                               3.3653e+08
genres                                                Action|Adventure|Romance
actor_1_name                                                      J.K. Simmons
movie_title                                                      Spider-Man 3 
num_voted_users                                                         383056
cast_total_facebook_likes                                                46055
actor_3_name                                                     Kirsten Dunst
facenumber_in_poster                                                         0
plot_keywords                        sandman|spider man|symbiote|venom|villain
movie_imdb_link              http://www.imdb.com/title/tt0413300/?ref_=fn_t...
num_user_for_reviews                                                      1902
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                2.58e+08
title_year                                                                2007
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 6, dtype: object
color                                                                    Color
director_name                                                     Nathan Greno
num_critic_for_reviews                                                     324
duration                                                                   100
director_facebook_likes                                                     15
actor_3_facebook_likes                                                     284
actor_2_name                                                      Donna Murphy
actor_1_facebook_likes                                                     799
gross                                                              2.00807e+08
genres                       Adventure|Animation|Comedy|Family|Fantasy|Musi...
actor_1_name                                                      Brad Garrett
movie_title                                                           Tangled 
num_voted_users                                                         294810
cast_total_facebook_likes                                                 2036
actor_3_name                                                       M.C. Gainey
facenumber_in_poster                                                         1
plot_keywords                17th century|based on fairy tale|disney|flower...
movie_imdb_link              http://www.imdb.com/title/tt0398286/?ref_=fn_t...
num_user_for_reviews                                                       387
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 2.6e+08
title_year                                                                2010
actor_2_facebook_likes                                                     553
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     29000
Name: 7, dtype: object
color                                                                    Color
director_name                                                      Joss Whedon
num_critic_for_reviews                                                     635
duration                                                                   141
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   19000
actor_2_name                                                 Robert Downey Jr.
actor_1_facebook_likes                                                   26000
gross                                                              4.58992e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                   Chris Hemsworth
movie_title                                           Avengers: Age of Ultron 
num_voted_users                                                         462669
cast_total_facebook_likes                                                92000
actor_3_name                                                Scarlett Johansson
facenumber_in_poster                                                         4
plot_keywords                artificial intelligence|based on comic book|ca...
movie_imdb_link              http://www.imdb.com/title/tt2395427/?ref_=fn_t...
num_user_for_reviews                                                      1117
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.5e+08
title_year                                                                2015
actor_2_facebook_likes                                                   21000
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                    118000
Name: 8, dtype: object
color                                                                    Color
director_name                                                      David Yates
num_critic_for_reviews                                                     375
duration                                                                   153
director_facebook_likes                                                    282
actor_3_facebook_likes                                                   10000
actor_2_name                                                  Daniel Radcliffe
actor_1_facebook_likes                                                   25000
gross                                                              3.01957e+08
genres                                        Adventure|Family|Fantasy|Mystery
actor_1_name                                                      Alan Rickman
movie_title                            Harry Potter and the Half-Blood Prince 
num_voted_users                                                         321795
cast_total_facebook_likes                                                58753
actor_3_name                                                      Rupert Grint
facenumber_in_poster                                                         3
plot_keywords                                 blood|book|love|potion|professor
movie_imdb_link              http://www.imdb.com/title/tt0417741/?ref_=fn_t...
num_user_for_reviews                                                       973
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 2.5e+08
title_year                                                                2009
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 9, dtype: object
color                                                                    Color
director_name                                                      Zack Snyder
num_critic_for_reviews                                                     673
duration                                                                   183
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    2000
actor_2_name                                                      Lauren Cohan
actor_1_facebook_likes                                                   15000
gross                                                              3.30249e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                      Henry Cavill
movie_title                                Batman v Superman: Dawn of Justice 
num_voted_users                                                         371639
cast_total_facebook_likes                                                24450
actor_3_name                                                    Alan D. Purwin
facenumber_in_poster                                                         0
plot_keywords                based on comic book|batman|sequel to a reboot|...
movie_imdb_link              http://www.imdb.com/title/tt2975590/?ref_=fn_t...
num_user_for_reviews                                                      3018
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.5e+08
title_year                                                                2016
actor_2_facebook_likes                                                    4000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                    197000
Name: 10, dtype: object
color                                                                    Color
director_name                                                     Bryan Singer
num_critic_for_reviews                                                     434
duration                                                                   169
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     903
actor_2_name                                                     Marlon Brando
actor_1_facebook_likes                                                   18000
gross                                                              2.00069e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                      Kevin Spacey
movie_title                                                  Superman Returns 
num_voted_users                                                         240396
cast_total_facebook_likes                                                29991
actor_3_name                                                    Frank Langella
facenumber_in_poster                                                         0
plot_keywords                crystal|epic|lex luthor|lois lane|return to earth
movie_imdb_link              http://www.imdb.com/title/tt0348150/?ref_=fn_t...
num_user_for_reviews                                                      2367
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                2.09e+08
title_year                                                                2006
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 11, dtype: object
color                                                                    Color
director_name                                                     Marc Forster
num_critic_for_reviews                                                     403
duration                                                                   106
director_facebook_likes                                                    395
actor_3_facebook_likes                                                     393
actor_2_name                                                   Mathieu Amalric
actor_1_facebook_likes                                                     451
gross                                                              1.68368e+08
genres                                                        Action|Adventure
actor_1_name                                                Giancarlo Giannini
movie_title                                                 Quantum of Solace 
num_voted_users                                                         330784
cast_total_facebook_likes                                                 2023
actor_3_name                                                      Rory Kinnear
facenumber_in_poster                                                         1
plot_keywords                action hero|attempted rape|bond girl|official ...
movie_imdb_link              http://www.imdb.com/title/tt0830515/?ref_=fn_t...
num_user_for_reviews                                                      1243
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2008
actor_2_facebook_likes                                                     412
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 12, dtype: object
color                                                                    Color
director_name                                                   Gore Verbinski
num_critic_for_reviews                                                     313
duration                                                                   151
director_facebook_likes                                                    563
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Orlando Bloom
actor_1_facebook_likes                                                   40000
gross                                                              4.23033e+08
genres                                                Action|Adventure|Fantasy
actor_1_name                                                       Johnny Depp
movie_title                        Pirates of the Caribbean: Dead Man's Chest 
num_voted_users                                                         522040
cast_total_facebook_likes                                                48486
actor_3_name                                                    Jack Davenport
facenumber_in_poster                                                         2
plot_keywords                box office hit|giant squid|heart|liar's dice|m...
movie_imdb_link              http://www.imdb.com/title/tt0383574/?ref_=fn_t...
num_user_for_reviews                                                      1832
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                2.25e+08
title_year                                                                2006
actor_2_facebook_likes                                                    5000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                      5000
Name: 13, dtype: object
color                                                                    Color
director_name                                                   Gore Verbinski
num_critic_for_reviews                                                     450
duration                                                                   150
director_facebook_likes                                                    563
actor_3_facebook_likes                                                    1000
actor_2_name                                                       Ruth Wilson
actor_1_facebook_likes                                                   40000
gross                                                              8.92899e+07
genres                                                Action|Adventure|Western
actor_1_name                                                       Johnny Depp
movie_title                                                   The Lone Ranger 
num_voted_users                                                         181792
cast_total_facebook_likes                                                45757
actor_3_name                                                     Tom Wilkinson
facenumber_in_poster                                                         1
plot_keywords                            horse|outlaw|texas|texas ranger|train
movie_imdb_link              http://www.imdb.com/title/tt1210819/?ref_=fn_t...
num_user_for_reviews                                                       711
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                2.15e+08
title_year                                                                2013
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     48000
Name: 14, dtype: object
color                                                                    Color
director_name                                                      Zack Snyder
num_critic_for_reviews                                                     733
duration                                                                   143
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     748
actor_2_name                                                Christopher Meloni
actor_1_facebook_likes                                                   15000
gross                                                              2.91022e+08
genres                                         Action|Adventure|Fantasy|Sci-Fi
actor_1_name                                                      Henry Cavill
movie_title                                                      Man of Steel 
num_voted_users                                                         548573
cast_total_facebook_likes                                                20495
actor_3_name                                                      Harry Lennix
facenumber_in_poster                                                         0
plot_keywords                based on comic book|british actor playing amer...
movie_imdb_link              http://www.imdb.com/title/tt0770828/?ref_=fn_t...
num_user_for_reviews                                                      2536
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                2.25e+08
title_year                                                                2013
actor_2_facebook_likes                                                    3000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                    118000
Name: 15, dtype: object
color                                                                    Color
director_name                                                   Andrew Adamson
num_critic_for_reviews                                                     258
duration                                                                   150
director_facebook_likes                                                     80
actor_3_facebook_likes                                                     201
actor_2_name                                              Pierfrancesco Favino
actor_1_facebook_likes                                                   22000
gross                                                              1.41614e+08
genres                                         Action|Adventure|Family|Fantasy
actor_1_name                                                    Peter Dinklage
movie_title                          The Chronicles of Narnia: Prince Caspian 
num_voted_users                                                         149922
cast_total_facebook_likes                                                22697
actor_3_name                                                    Damián Alcázar
facenumber_in_poster                                                         4
plot_keywords                brother brother relationship|brother sister re...
movie_imdb_link              http://www.imdb.com/title/tt0499448/?ref_=fn_t...
num_user_for_reviews                                                       438
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                2.25e+08
title_year                                                                2008
actor_2_facebook_likes                                                     216
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 16, dtype: object
color                                                                    Color
director_name                                                      Joss Whedon
num_critic_for_reviews                                                     703
duration                                                                   173
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   19000
actor_2_name                                                 Robert Downey Jr.
actor_1_facebook_likes                                                   26000
gross                                                               6.2328e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                   Chris Hemsworth
movie_title                                                      The Avengers 
num_voted_users                                                         995415
cast_total_facebook_likes                                                87697
actor_3_name                                                Scarlett Johansson
facenumber_in_poster                                                         3
plot_keywords                  alien invasion|assassin|battle|iron man|soldier
movie_imdb_link              http://www.imdb.com/title/tt0848228/?ref_=fn_t...
num_user_for_reviews                                                      1722
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.2e+08
title_year                                                                2012
actor_2_facebook_likes                                                   21000
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                    123000
Name: 17, dtype: object
color                                                                    Color
director_name                                                     Rob Marshall
num_critic_for_reviews                                                     448
duration                                                                   136
director_facebook_likes                                                    252
actor_3_facebook_likes                                                    1000
actor_2_name                                                       Sam Claflin
actor_1_facebook_likes                                                   40000
gross                                                              2.41064e+08
genres                                                Action|Adventure|Fantasy
actor_1_name                                                       Johnny Depp
movie_title                       Pirates of the Caribbean: On Stranger Tides 
num_voted_users                                                         370704
cast_total_facebook_likes                                                54083
actor_3_name                                                    Stephen Graham
facenumber_in_poster                                                         4
plot_keywords                        blackbeard|captain|pirate|revenge|soldier
movie_imdb_link              http://www.imdb.com/title/tt1298650/?ref_=fn_t...
num_user_for_reviews                                                       484
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.5e+08
title_year                                                                2011
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     58000
Name: 18, dtype: object
color                                                                    Color
director_name                                                 Barry Sonnenfeld
num_critic_for_reviews                                                     451
duration                                                                   106
director_facebook_likes                                                    188
actor_3_facebook_likes                                                     718
actor_2_name                                                 Michael Stuhlbarg
actor_1_facebook_likes                                                   10000
gross                                                              1.79021e+08
genres                           Action|Adventure|Comedy|Family|Fantasy|Sci-Fi
actor_1_name                                                        Will Smith
movie_title                                                    Men in Black 3 
num_voted_users                                                         268154
cast_total_facebook_likes                                                12572
actor_3_name                                                Nicole Scherzinger
facenumber_in_poster                                                         1
plot_keywords                alien|criminal|m.i.b.|maximum security prison|...
movie_imdb_link              http://www.imdb.com/title/tt1409024/?ref_=fn_t...
num_user_for_reviews                                                       341
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                2.25e+08
title_year                                                                2012
actor_2_facebook_likes                                                     816
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     40000
Name: 19, dtype: object
color                                                                    Color
director_name                                                    Peter Jackson
num_critic_for_reviews                                                     422
duration                                                                   164
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     773
actor_2_name                                                        Adam Brown
actor_1_facebook_likes                                                    5000
gross                                                              2.55108e+08
genres                                                       Adventure|Fantasy
actor_1_name                                                      Aidan Turner
movie_title                         The Hobbit: The Battle of the Five Armies 
num_voted_users                                                         354228
cast_total_facebook_likes                                                 9152
actor_3_name                                                     James Nesbitt
facenumber_in_poster                                                         0
plot_keywords                                 army|elf|hobbit|middle earth|orc
movie_imdb_link              http://www.imdb.com/title/tt2310332/?ref_=fn_t...
num_user_for_reviews                                                       802
language                                                               English
country                                                            New Zealand
content_rating                                                           PG-13
budget                                                                 2.5e+08
title_year                                                                2014
actor_2_facebook_likes                                                     972
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     65000
Name: 20, dtype: object
color                                                                    Color
director_name                                                        Marc Webb
num_critic_for_reviews                                                     599
duration                                                                   153
director_facebook_likes                                                    464
actor_3_facebook_likes                                                     963
actor_2_name                                                   Andrew Garfield
actor_1_facebook_likes                                                   15000
gross                                                              2.62031e+08
genres                                                Action|Adventure|Fantasy
actor_1_name                                                        Emma Stone
movie_title                                            The Amazing Spider-Man 
num_voted_users                                                         451803
cast_total_facebook_likes                                                28489
actor_3_name                                                       Chris Zylka
facenumber_in_poster                                                         0
plot_keywords                        lizard|outcast|spider|spider man|teenager
movie_imdb_link              http://www.imdb.com/title/tt0948470/?ref_=fn_t...
num_user_for_reviews                                                      1225
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.3e+08
title_year                                                                2012
actor_2_facebook_likes                                                   10000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     56000
Name: 21, dtype: object
color                                                                    Color
director_name                                                     Ridley Scott
num_critic_for_reviews                                                     343
duration                                                                   156
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     738
actor_2_name                                                      William Hurt
actor_1_facebook_likes                                                     891
gross                                                               1.0522e+08
genres                                          Action|Adventure|Drama|History
actor_1_name                                                         Mark Addy
movie_title                                                        Robin Hood 
num_voted_users                                                         211765
cast_total_facebook_likes                                                 3244
actor_3_name                                                      Scott Grimes
facenumber_in_poster                                                         0
plot_keywords                  1190s|archer|england|king of england|robin hood
movie_imdb_link              http://www.imdb.com/title/tt0955308/?ref_=fn_t...
num_user_for_reviews                                                       546
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2010
actor_2_facebook_likes                                                     882
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     17000
Name: 22, dtype: object
color                                                                    Color
director_name                                                    Peter Jackson
num_critic_for_reviews                                                     509
duration                                                                   186
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     773
actor_2_name                                                        Adam Brown
actor_1_facebook_likes                                                    5000
gross                                                              2.58355e+08
genres                                                       Adventure|Fantasy
actor_1_name                                                      Aidan Turner
movie_title                               The Hobbit: The Desolation of Smaug 
num_voted_users                                                         483540
cast_total_facebook_likes                                                 9152
actor_3_name                                                     James Nesbitt
facenumber_in_poster                                                         6
plot_keywords                   dwarf|elf|lake town|mountain|sword and sorcery
movie_imdb_link              http://www.imdb.com/title/tt1170358/?ref_=fn_t...
num_user_for_reviews                                                       951
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                2.25e+08
title_year                                                                2013
actor_2_facebook_likes                                                     972
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     83000
Name: 23, dtype: object
color                                                                    Color
director_name                                                      Chris Weitz
num_critic_for_reviews                                                     251
duration                                                                   113
director_facebook_likes                                                    129
actor_3_facebook_likes                                                    1000
actor_2_name                                                         Eva Green
actor_1_facebook_likes                                                   16000
gross                                                              7.00835e+07
genres                                                Adventure|Family|Fantasy
actor_1_name                                                   Christopher Lee
movie_title                                                The Golden Compass 
num_voted_users                                                         149019
cast_total_facebook_likes                                                24106
actor_3_name                                              Kristin Scott Thomas
facenumber_in_poster                                                         2
plot_keywords                                  children|epic|friend|girl|quest
movie_imdb_link              http://www.imdb.com/title/tt0385752/?ref_=fn_t...
num_user_for_reviews                                                       666
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.8e+08
title_year                                                                2007
actor_2_facebook_likes                                                    6000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 24, dtype: object
color                                                                    Color
director_name                                                    Peter Jackson
num_critic_for_reviews                                                     446
duration                                                                   201
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      84
actor_2_name                                                Thomas Kretschmann
actor_1_facebook_likes                                                    6000
gross                                                              2.18051e+08
genres                                          Action|Adventure|Drama|Romance
actor_1_name                                                       Naomi Watts
movie_title                                                         King Kong 
num_voted_users                                                         316018
cast_total_facebook_likes                                                 7123
actor_3_name                                                        Evan Parke
facenumber_in_poster                                                         0
plot_keywords                animal name in title|ape abducts a woman|goril...
movie_imdb_link              http://www.imdb.com/title/tt0360717/?ref_=fn_t...
num_user_for_reviews                                                      2618
language                                                               English
country                                                            New Zealand
content_rating                                                           PG-13
budget                                                                2.07e+08
title_year                                                                2005
actor_2_facebook_likes                                                     919
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 25, dtype: object
color                                                                    Color
director_name                                                    James Cameron
num_critic_for_reviews                                                     315
duration                                                                   194
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     794
actor_2_name                                                      Kate Winslet
actor_1_facebook_likes                                                   29000
gross                                                              6.58672e+08
genres                                                           Drama|Romance
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                           Titanic 
num_voted_users                                                         793059
cast_total_facebook_likes                                                45223
actor_3_name                                                     Gloria Stuart
facenumber_in_poster                                                         0
plot_keywords                                     artist|love|ship|titanic|wet
movie_imdb_link              http://www.imdb.com/title/tt0120338/?ref_=fn_t...
num_user_for_reviews                                                      2528
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                1997
actor_2_facebook_likes                                                   14000
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     26000
Name: 26, dtype: object
color                                                                    Color
director_name                                                    Anthony Russo
num_critic_for_reviews                                                     516
duration                                                                   147
director_facebook_likes                                                     94
actor_3_facebook_likes                                                   11000
actor_2_name                                                Scarlett Johansson
actor_1_facebook_likes                                                   21000
gross                                                              4.07197e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                 Robert Downey Jr.
movie_title                                        Captain America: Civil War 
num_voted_users                                                         272670
cast_total_facebook_likes                                                64798
actor_3_name                                                       Chris Evans
facenumber_in_poster                                                         0
plot_keywords                based on comic book|knife|marvel cinematic uni...
movie_imdb_link              http://www.imdb.com/title/tt3498820/?ref_=fn_t...
num_user_for_reviews                                                      1022
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.5e+08
title_year                                                                2016
actor_2_facebook_likes                                                   19000
imdb_score                                                                 8.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     72000
Name: 27, dtype: object
color                                                                    Color
director_name                                                       Peter Berg
num_critic_for_reviews                                                     377
duration                                                                   131
director_facebook_likes                                                    532
actor_3_facebook_likes                                                     627
actor_2_name                                               Alexander Skarsgård
actor_1_facebook_likes                                                   14000
gross                                                              6.51732e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                       Liam Neeson
movie_title                                                        Battleship 
num_voted_users                                                         202382
cast_total_facebook_likes                                                26679
actor_3_name                                                    Tadanobu Asano
facenumber_in_poster                                                         0
plot_keywords                    box office flop|hawaii|naval|oahu hawaii|ship
movie_imdb_link              http://www.imdb.com/title/tt1440129/?ref_=fn_t...
num_user_for_reviews                                                       751
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                2.09e+08
title_year                                                                2012
actor_2_facebook_likes                                                   10000
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     44000
Name: 28, dtype: object
color                                                                    Color
director_name                                                  Colin Trevorrow
num_critic_for_reviews                                                     644
duration                                                                   124
director_facebook_likes                                                    365
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Judy Greer
actor_1_facebook_likes                                                    3000
gross                                                              6.52177e+08
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                               Bryce Dallas Howard
movie_title                                                    Jurassic World 
num_voted_users                                                         418214
cast_total_facebook_likes                                                 8458
actor_3_name                                                           Omar Sy
facenumber_in_poster                                                         0
plot_keywords                dinosaur|disaster film|experiment gone wrong|j...
movie_imdb_link              http://www.imdb.com/title/tt0369610/?ref_=fn_t...
num_user_for_reviews                                                      1290
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2015
actor_2_facebook_likes                                                    2000
imdb_score                                                                   7
aspect_ratio                                                                 2
movie_facebook_likes                                                    150000
Name: 29, dtype: object
color                                                                    Color
director_name                                                       Sam Mendes
num_critic_for_reviews                                                     750
duration                                                                   143
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     393
actor_2_name                                                     Helen McCrory
actor_1_facebook_likes                                                     883
gross                                                               3.0436e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                     Albert Finney
movie_title                                                           Skyfall 
num_voted_users                                                         522030
cast_total_facebook_likes                                                 2039
actor_3_name                                                      Rory Kinnear
facenumber_in_poster                                                         0
plot_keywords                brawl|childhood home|computer cracker|intellig...
movie_imdb_link              http://www.imdb.com/title/tt1074638/?ref_=fn_t...
num_user_for_reviews                                                      1498
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2012
actor_2_facebook_likes                                                     563
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     80000
Name: 30, dtype: object
color                                                                    Color
director_name                                                        Sam Raimi
num_critic_for_reviews                                                     300
duration                                                                   135
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    4000
actor_2_name                                                      James Franco
actor_1_facebook_likes                                                   24000
gross                                                              3.73378e+08
genres                                        Action|Adventure|Fantasy|Romance
actor_1_name                                                      J.K. Simmons
movie_title                                                      Spider-Man 2 
num_voted_users                                                         411164
cast_total_facebook_likes                                                43388
actor_3_name                                                     Kirsten Dunst
facenumber_in_poster                                                         1
plot_keywords                    death|doctor|scientist|super villain|tentacle
movie_imdb_link              http://www.imdb.com/title/tt0316654/?ref_=fn_t...
num_user_for_reviews                                                      1303
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2004
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 31, dtype: object
color                                                                    Color
director_name                                                      Shane Black
num_critic_for_reviews                                                     608
duration                                                                   195
director_facebook_likes                                                   1000
actor_3_facebook_likes                                                    3000
actor_2_name                                                       Jon Favreau
actor_1_facebook_likes                                                   21000
gross                                                              4.08992e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                 Robert Downey Jr.
movie_title                                                        Iron Man 3 
num_voted_users                                                         557489
cast_total_facebook_likes                                                30426
actor_3_name                                                       Don Cheadle
facenumber_in_poster                                                         3
plot_keywords                armor|explosion|human bomb|missile attack|terr...
movie_imdb_link              http://www.imdb.com/title/tt1300854/?ref_=fn_t...
num_user_for_reviews                                                      1187
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2013
actor_2_facebook_likes                                                    4000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     95000
Name: 32, dtype: object
color                                                                    Color
director_name                                                       Tim Burton
num_critic_for_reviews                                                     451
duration                                                                   108
director_facebook_likes                                                  13000
actor_3_facebook_likes                                                   11000
actor_2_name                                                      Alan Rickman
actor_1_facebook_likes                                                   40000
gross                                                              3.34185e+08
genres                                                Adventure|Family|Fantasy
actor_1_name                                                       Johnny Depp
movie_title                                               Alice in Wonderland 
num_voted_users                                                         306320
cast_total_facebook_likes                                                79957
actor_3_name                                                     Anne Hathaway
facenumber_in_poster                                                         0
plot_keywords                alice in wonderland|mistaking reality for drea...
movie_imdb_link              http://www.imdb.com/title/tt1014759/?ref_=fn_t...
num_user_for_reviews                                                       736
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   2e+08
title_year                                                                2010
actor_2_facebook_likes                                                   25000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     24000
Name: 33, dtype: object
color                                                                    Color
director_name                                                     Brett Ratner
num_critic_for_reviews                                                     334
duration                                                                   104
director_facebook_likes                                                    420
actor_3_facebook_likes                                                     560
actor_2_name                                                    Kelsey Grammer
actor_1_facebook_likes                                                   20000
gross                                                               2.3436e+08
genres                                Action|Adventure|Fantasy|Sci-Fi|Thriller
actor_1_name                                                      Hugh Jackman
movie_title                                             X-Men: The Last Stand 
num_voted_users                                                         383427
cast_total_facebook_likes                                                21714
actor_3_name                                                    Daniel Cudmore
facenumber_in_poster                                                         0
plot_keywords                battle|mutant|outrage|walking through a wall|x...
movie_imdb_link              http://www.imdb.com/title/tt0376994/?ref_=fn_t...
num_user_for_reviews                                                      1912
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                 2.1e+08
title_year                                                                2006
actor_2_facebook_likes                                                     808
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 34, dtype: object
color                                                                    Color
director_name                                                      Dan Scanlon
num_critic_for_reviews                                                     376
duration                                                                   104
director_facebook_likes                                                     37
actor_3_facebook_likes                                                     760
actor_2_name                                                      Tyler Labine
actor_1_facebook_likes                                                   12000
gross                                                              2.68488e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                     Steve Buscemi
movie_title                                               Monsters University 
num_voted_users                                                         235025
cast_total_facebook_likes                                                14863
actor_3_name                                                        Sean Hayes
facenumber_in_poster                                                         0
plot_keywords                cheating|fraternity|monster|singing in a car|u...
movie_imdb_link              http://www.imdb.com/title/tt1453405/?ref_=fn_t...
num_user_for_reviews                                                       265
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   2e+08
title_year                                                                2013
actor_2_facebook_likes                                                     779
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     44000
Name: 35, dtype: object
color                                                                    Color
director_name                                                      Michael Bay
num_critic_for_reviews                                                     366
duration                                                                   150
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     464
actor_2_name                                                        Kevin Dunn
actor_1_facebook_likes                                                     894
gross                                                              4.02077e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                   Glenn Morshower
movie_title                               Transformers: Revenge of the Fallen 
num_voted_users                                                         323207
cast_total_facebook_likes                                                 3218
actor_3_name                                                   Ramon Rodriguez
facenumber_in_poster                                                         0
plot_keywords                            autobot|decepticon|machine|sun|symbol
movie_imdb_link              http://www.imdb.com/title/tt1055369/?ref_=fn_t...
num_user_for_reviews                                                      1439
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2009
actor_2_facebook_likes                                                     581
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 36, dtype: object
color                                                                    Color
director_name                                                      Michael Bay
num_critic_for_reviews                                                     378
duration                                                                   165
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     808
actor_2_name                                                      Sophia Myles
actor_1_facebook_likes                                                     974
gross                                                              2.45428e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                       Bingbing Li
movie_title                                   Transformers: Age of Extinction 
num_voted_users                                                         242420
cast_total_facebook_likes                                                 3988
actor_3_name                                                    Kelsey Grammer
facenumber_in_poster                                                         2
plot_keywords                blockbuster|bumblebee the character|semi truck...
movie_imdb_link              http://www.imdb.com/title/tt2109248/?ref_=fn_t...
num_user_for_reviews                                                       918
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.1e+08
title_year                                                                2014
actor_2_facebook_likes                                                     956
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     56000
Name: 37, dtype: object
color                                                                    Color
director_name                                                        Sam Raimi
num_critic_for_reviews                                                     525
duration                                                                   130
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   11000
actor_2_name                                                        Mila Kunis
actor_1_facebook_likes                                                   44000
gross                                                              2.34903e+08
genres                                                Adventure|Family|Fantasy
actor_1_name                                                        Tim Holmes
movie_title                                         Oz the Great and Powerful 
num_voted_users                                                         175409
cast_total_facebook_likes                                                73441
actor_3_name                                                      James Franco
facenumber_in_poster                                                         4
plot_keywords                                   circus|magic|magician|oz|witch
movie_imdb_link              http://www.imdb.com/title/tt1623205/?ref_=fn_t...
num_user_for_reviews                                                       511
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                2.15e+08
title_year                                                                2013
actor_2_facebook_likes                                                   15000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     60000
Name: 38, dtype: object
color                                                                    Color
director_name                                                        Marc Webb
num_critic_for_reviews                                                     495
duration                                                                   142
director_facebook_likes                                                    464
actor_3_facebook_likes                                                     825
actor_2_name                                                   Andrew Garfield
actor_1_facebook_likes                                                   15000
gross                                                              2.02854e+08
genres                                         Action|Adventure|Fantasy|Sci-Fi
actor_1_name                                                        Emma Stone
movie_title                                          The Amazing Spider-Man 2 
num_voted_users                                                         321227
cast_total_facebook_likes                                                28631
actor_3_name                                                        B.J. Novak
facenumber_in_poster                                                         0
plot_keywords                costumed hero|death of girlfriend|masked vigil...
movie_imdb_link              http://www.imdb.com/title/tt1872181/?ref_=fn_t...
num_user_for_reviews                                                      1067
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2014
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     41000
Name: 39, dtype: object
color                                                                    Color
director_name                                                  Joseph Kosinski
num_critic_for_reviews                                                     469
duration                                                                   125
director_facebook_likes                                                    364
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Olivia Wilde
actor_1_facebook_likes                                                   12000
gross                                                              1.72052e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                      Jeff Bridges
movie_title                                                      TRON: Legacy 
num_voted_users                                                         264183
cast_total_facebook_likes                                                25550
actor_3_name                                                       James Frain
facenumber_in_poster                                                         0
plot_keywords                       arcade|bridge|disappearance|escape|warrior
movie_imdb_link              http://www.imdb.com/title/tt1104001/?ref_=fn_t...
num_user_for_reviews                                                       665
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.7e+08
title_year                                                                2010
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     30000
Name: 40, dtype: object
color                                                                    Color
director_name                                                    John Lasseter
num_critic_for_reviews                                                     304
duration                                                                   106
director_facebook_likes                                                    487
actor_3_facebook_likes                                                     776
actor_2_name                                                Thomas Kretschmann
actor_1_facebook_likes                                                    1000
gross                                                              1.91451e+08
genres                                 Adventure|Animation|Comedy|Family|Sport
actor_1_name                                                      Joe Mantegna
movie_title                                                            Cars 2 
num_voted_users                                                         101178
cast_total_facebook_likes                                                 4482
actor_3_name                                                      Eddie Izzard
facenumber_in_poster                                                         0
plot_keywords                   best friend|car race|conspiracy|gadget car|spy
movie_imdb_link              http://www.imdb.com/title/tt1216475/?ref_=fn_t...
num_user_for_reviews                                                       283
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   2e+08
title_year                                                                2011
actor_2_facebook_likes                                                     919
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 41, dtype: object
color                                                                    Color
director_name                                                  Martin Campbell
num_critic_for_reviews                                                     436
duration                                                                   123
director_facebook_likes                                                    258
actor_3_facebook_likes                                                     326
actor_2_name                                                  Temuera Morrison
actor_1_facebook_likes                                                   16000
gross                                                              1.16593e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                     Ryan Reynolds
movie_title                                                     Green Lantern 
num_voted_users                                                         223393
cast_total_facebook_likes                                                17657
actor_3_name                                                     Taika Waititi
facenumber_in_poster                                                         2
plot_keywords                           autopsy|lantern|planet|ring|test pilot
movie_imdb_link              http://www.imdb.com/title/tt1133985/?ref_=fn_t...
num_user_for_reviews                                                       550
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2011
actor_2_facebook_likes                                                     368
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     24000
Name: 42, dtype: object
color                                                                    Color
director_name                                                      Lee Unkrich
num_critic_for_reviews                                                     453
duration                                                                   103
director_facebook_likes                                                    125
actor_3_facebook_likes                                                     721
actor_2_name                                                 John Ratzenberger
actor_1_facebook_likes                                                   15000
gross                                                              4.14984e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                         Tom Hanks
movie_title                                                       Toy Story 3 
num_voted_users                                                         544884
cast_total_facebook_likes                                                19085
actor_3_name                                                       Don Rickles
facenumber_in_poster                                                         3
plot_keywords                           college|day care|escape|teddy bear|toy
movie_imdb_link              http://www.imdb.com/title/tt0435761/?ref_=fn_t...
num_user_for_reviews                                                       733
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   2e+08
title_year                                                                2010
actor_2_facebook_likes                                                    1000
imdb_score                                                                 8.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     30000
Name: 43, dtype: object
color                                                                    Color
director_name                                                              McG
num_critic_for_reviews                                                     422
duration                                                                   118
director_facebook_likes                                                    368
actor_3_facebook_likes                                                     988
actor_2_name                                               Bryce Dallas Howard
actor_1_facebook_likes                                                   23000
gross                                                               1.2532e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                    Christian Bale
movie_title                                              Terminator Salvation 
num_voted_users                                                         286095
cast_total_facebook_likes                                                27468
actor_3_name                                                            Common
facenumber_in_poster                                                         0
plot_keywords                           death row|future|machine|rescue|skynet
movie_imdb_link              http://www.imdb.com/title/tt0438488/?ref_=fn_t...
num_user_for_reviews                                                       974
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2009
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 44, dtype: object
color                                                                    Color
director_name                                                        James Wan
num_critic_for_reviews                                                     424
duration                                                                   140
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   14000
actor_2_name                                                       Paul Walker
actor_1_facebook_likes                                                   26000
gross                                                              3.50034e+08
genres                                                   Action|Crime|Thriller
actor_1_name                                                     Jason Statham
movie_title                                                         Furious 7 
num_voted_users                                                         278232
cast_total_facebook_likes                                                79150
actor_3_name                                                        Vin Diesel
facenumber_in_poster                                                         0
plot_keywords                car falling off a cliff|hospital|revenge|star ...
movie_imdb_link              http://www.imdb.com/title/tt2820852/?ref_=fn_t...
num_user_for_reviews                                                       657
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.9e+08
title_year                                                                2015
actor_2_facebook_likes                                                   23000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     94000
Name: 45, dtype: object
color                                                                    Color
director_name                                                     Marc Forster
num_critic_for_reviews                                                     654
duration                                                                   123
director_facebook_likes                                                    395
actor_3_facebook_likes                                                    1000
actor_2_name                                                         Brad Pitt
actor_1_facebook_likes                                                   17000
gross                                                              2.02352e+08
genres                                 Action|Adventure|Horror|Sci-Fi|Thriller
actor_1_name                                                     Peter Capaldi
movie_title                                                       World War Z 
num_voted_users                                                         465019
cast_total_facebook_likes                                                32392
actor_3_name                                                     Mireille Enos
facenumber_in_poster                                                         0
plot_keywords                          chaos|disease|infection|pandemic|zombie
movie_imdb_link              http://www.imdb.com/title/tt0816711/?ref_=fn_t...
num_user_for_reviews                                                       995
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.9e+08
title_year                                                                2013
actor_2_facebook_likes                                                   11000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                    129000
Name: 46, dtype: object
color                                                                    Color
director_name                                                     Bryan Singer
num_critic_for_reviews                                                     539
duration                                                                   149
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   20000
actor_2_name                                                    Peter Dinklage
actor_1_facebook_likes                                                   34000
gross                                                              2.33915e+08
genres                                Action|Adventure|Fantasy|Sci-Fi|Thriller
actor_1_name                                                 Jennifer Lawrence
movie_title                                        X-Men: Days of Future Past 
num_voted_users                                                         514125
cast_total_facebook_likes                                                91434
actor_3_name                                                      Hugh Jackman
facenumber_in_poster                                                         7
plot_keywords                dystopia|super strength|supernatural power|tim...
movie_imdb_link              http://www.imdb.com/title/tt1877832/?ref_=fn_t...
num_user_for_reviews                                                       752
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2014
actor_2_facebook_likes                                                   22000
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     82000
Name: 47, dtype: object
color                                                                    Color
director_name                                                      J.J. Abrams
num_critic_for_reviews                                                     590
duration                                                                   132
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     928
actor_2_name                                                   Bruce Greenwood
actor_1_facebook_likes                                                   19000
gross                                                              2.28756e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                              Benedict Cumberbatch
movie_title                                           Star Trek Into Darkness 
num_voted_users                                                         395573
cast_total_facebook_likes                                                21411
actor_3_name                                                       Noel Clarke
facenumber_in_poster                                                         0
plot_keywords                            admiral|captain|manhunt|mission|space
movie_imdb_link              http://www.imdb.com/title/tt1408101/?ref_=fn_t...
num_user_for_reviews                                                      1171
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.9e+08
title_year                                                                2013
actor_2_facebook_likes                                                     981
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     92000
Name: 48, dtype: object
color                                                                    Color
director_name                                                     Bryan Singer
num_critic_for_reviews                                                     338
duration                                                                   114
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     140
actor_2_name                                                      Ewen Bremner
actor_1_facebook_likes                                                     979
gross                                                              6.51719e+07
genres                                                       Adventure|Fantasy
actor_1_name                                                      Eddie Marsan
movie_title                                             Jack the Giant Slayer 
num_voted_users                                                         106416
cast_total_facebook_likes                                                 1766
actor_3_name                                                       Ralph Brown
facenumber_in_poster                                                         1
plot_keywords                      bean|giant|king|no opening credits|princess
movie_imdb_link              http://www.imdb.com/title/tt1351685/?ref_=fn_t...
num_user_for_reviews                                                       205
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.95e+08
title_year                                                                2013
actor_2_facebook_likes                                                     557
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     22000
Name: 49, dtype: object
color                                                                    Color
director_name                                                     Baz Luhrmann
num_critic_for_reviews                                                     490
duration                                                                   143
director_facebook_likes                                                   1000
actor_3_facebook_likes                                                      77
actor_2_name                                                 Elizabeth Debicki
actor_1_facebook_likes                                                   29000
gross                                                              1.44813e+08
genres                                                           Drama|Romance
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                  The Great Gatsby 
num_voted_users                                                         362912
cast_total_facebook_likes                                                29770
actor_3_name                                                      Steve Bisley
facenumber_in_poster                                                         4
plot_keywords                ingratitude|mansion|party|title appears in wri...
movie_imdb_link              http://www.imdb.com/title/tt1343092/?ref_=fn_t...
num_user_for_reviews                                                       753
language                                                               English
country                                                              Australia
content_rating                                                           PG-13
budget                                                                1.05e+08
title_year                                                                2013
actor_2_facebook_likes                                                     509
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                    115000
Name: 50, dtype: object
color                                                                    Color
director_name                                                      Mike Newell
num_critic_for_reviews                                                     306
duration                                                                   116
director_facebook_likes                                                    179
actor_3_facebook_likes                                                     236
actor_2_name                                                     Richard Coyle
actor_1_facebook_likes                                                   15000
gross                                                              9.07556e+07
genres                                        Action|Adventure|Fantasy|Romance
actor_1_name                                                   Jake Gyllenhaal
movie_title                               Prince of Persia: The Sands of Time 
num_voted_users                                                         222403
cast_total_facebook_likes                                                16149
actor_3_name                                                     Reece Ritchie
facenumber_in_poster                                                         2
plot_keywords                               alamut|dagger|king|persia|princess
movie_imdb_link              http://www.imdb.com/title/tt0473075/?ref_=fn_t...
num_user_for_reviews                                                       453
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2010
actor_2_facebook_likes                                                     567
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     23000
Name: 51, dtype: object
color                                                                    Color
director_name                                               Guillermo del Toro
num_critic_for_reviews                                                     575
duration                                                                   131
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     919
actor_2_name                                               Clifton Collins Jr.
actor_1_facebook_likes                                                   16000
gross                                                              1.01785e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                    Charlie Hunnam
movie_title                                                       Pacific Rim 
num_voted_users                                                         381148
cast_total_facebook_likes                                                19166
actor_3_name                                                Larry Joe Campbell
facenumber_in_poster                                                         0
plot_keywords                           giant monster|kaiju|pilot|portal|robot
movie_imdb_link              http://www.imdb.com/title/tt1663662/?ref_=fn_t...
num_user_for_reviews                                                      1106
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.9e+08
title_year                                                                2013
actor_2_facebook_likes                                                     968
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     83000
Name: 52, dtype: object
color                                                                    Color
director_name                                                      Michael Bay
num_critic_for_reviews                                                     428
duration                                                                   154
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     581
actor_2_name                                                    Lester Speight
actor_1_facebook_likes                                                     894
gross                                                              3.52359e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                   Glenn Morshower
movie_title                                    Transformers: Dark of the Moon 
num_voted_users                                                         326180
cast_total_facebook_likes                                                 2593
actor_3_name                                                        Kevin Dunn
facenumber_in_poster                                                         2
plot_keywords                 autobot|decepticon|job interview|moon|spacecraft
movie_imdb_link              http://www.imdb.com/title/tt1399103/?ref_=fn_t...
num_user_for_reviews                                                       899
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.95e+08
title_year                                                                2011
actor_2_facebook_likes                                                     829
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     46000
Name: 53, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     470
duration                                                                   122
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Ray Winstone
actor_1_facebook_likes                                                   11000
gross                                                              3.17011e+08
genres                                                Action|Adventure|Fantasy
actor_1_name                                                     Harrison Ford
movie_title                  Indiana Jones and the Kingdom of the Crystal S...
num_voted_users                                                         333847
cast_total_facebook_likes                                                14959
actor_3_name                                                     Jim Broadbent
facenumber_in_poster                                                         2
plot_keywords                cult figure|femme fatale|indiana jones|unsubti...
movie_imdb_link              http://www.imdb.com/title/tt0367882/?ref_=fn_t...
num_user_for_reviews                                                      2054
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.85e+08
title_year                                                                2008
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                      5000
Name: 54, dtype: object
color                                                                    Color
director_name                                                       Peter Sohn
num_critic_for_reviews                                                     298
duration                                                                    93
director_facebook_likes                                                    113
actor_3_facebook_likes                                                     113
actor_2_name                                                       Jack McGraw
actor_1_facebook_likes                                                     275
gross                                                               1.2307e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                      A.J. Buckley
movie_title                                                 The Good Dinosaur 
num_voted_users                                                          62836
cast_total_facebook_likes                                                  696
actor_3_name                                                        Peter Sohn
facenumber_in_poster                                                         0
plot_keywords                         apatosaurus|asteroid|dinosaur|fear|river
movie_imdb_link              http://www.imdb.com/title/tt1979388/?ref_=fn_t...
num_user_for_reviews                                                       345
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2015
actor_2_facebook_likes                                                     150
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     20000
Name: 55, dtype: object
color                                                                    Color
director_name                                                     Mark Andrews
num_critic_for_reviews                                                     488
duration                                                                    93
director_facebook_likes                                                     56
actor_3_facebook_likes                                                     838
actor_2_name                                                 John Ratzenberger
actor_1_facebook_likes                                                    2000
gross                                                              2.37282e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                   Kelly Macdonald
movie_title                                                             Brave 
num_voted_users                                                         273556
cast_total_facebook_likes                                                 5005
actor_3_name                                                     Julie Walters
facenumber_in_poster                                                         0
plot_keywords                archery|coming of age|female warrior|princess|...
movie_imdb_link              http://www.imdb.com/title/tt1217209/?ref_=fn_t...
num_user_for_reviews                                                       428
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.85e+08
title_year                                                                2012
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     39000
Name: 56, dtype: object
color                                                                    Color
director_name                                                       Justin Lin
num_critic_for_reviews                                                     322
duration                                                                   122
director_facebook_likes                                                    681
actor_3_facebook_likes                                                     105
actor_2_name                                                  Melissa Roxburgh
actor_1_facebook_likes                                                     998
gross                                                              1.30469e+08
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                    Sofia Boutella
movie_title                                                  Star Trek Beyond 
num_voted_users                                                          53607
cast_total_facebook_likes                                                 1327
actor_3_name                                                      Lydia Wilson
facenumber_in_poster                                                         4
plot_keywords                   hatred|sequel|space opera|star trek|third part
movie_imdb_link              http://www.imdb.com/title/tt2660888/?ref_=fn_t...
num_user_for_reviews                                                       432
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.85e+08
title_year                                                                2016
actor_2_facebook_likes                                                     119
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     30000
Name: 57, dtype: object
color                                                                    Color
director_name                                                   Andrew Stanton
num_critic_for_reviews                                                     421
duration                                                                    98
director_facebook_likes                                                    475
actor_3_facebook_likes                                                     522
actor_2_name                                                      Fred Willard
actor_1_facebook_likes                                                    1000
gross                                                              2.23807e+08
genres                                       Adventure|Animation|Family|Sci-Fi
actor_1_name                                                 John Ratzenberger
movie_title                                                            WALL·E 
num_voted_users                                                         718837
cast_total_facebook_likes                                                 2975
actor_3_name                                                       Jeff Garlin
facenumber_in_poster                                                         0
plot_keywords                                   earth|obesity|plant|robot|soil
movie_imdb_link              http://www.imdb.com/title/tt0910970/?ref_=fn_t...
num_user_for_reviews                                                      1043
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 1.8e+08
title_year                                                                2008
actor_2_facebook_likes                                                     729
imdb_score                                                                 8.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 58, dtype: object
color                                                                    Color
director_name                                                     Brett Ratner
num_critic_for_reviews                                                     162
duration                                                                    91
director_facebook_likes                                                    420
actor_3_facebook_likes                                                     173
actor_2_name                                                         Dana Ivey
actor_1_facebook_likes                                                     268
gross                                                              1.40081e+08
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                                            Tzi Ma
movie_title                                                       Rush Hour 3 
num_voted_users                                                         121084
cast_total_facebook_likes                                                 1125
actor_3_name                                                     Noémie Lenoir
facenumber_in_poster                                                         2
plot_keywords                    ambassador|assassination|chinese|french|triad
movie_imdb_link              http://www.imdb.com/title/tt0293564/?ref_=fn_t...
num_user_for_reviews                                                       221
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+08
title_year                                                                2007
actor_2_facebook_likes                                                     268
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 59, dtype: object
color                                                                    Color
director_name                                                  Roland Emmerich
num_critic_for_reviews                                                     367
duration                                                                   158
director_facebook_likes                                                    776
actor_3_facebook_likes                                                     310
actor_2_name                                                        Liam James
actor_1_facebook_likes                                                    1000
gross                                                              1.66112e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                      Oliver Platt
movie_title                                                              2012 
num_voted_users                                                         283418
cast_total_facebook_likes                                                 2144
actor_3_name                                                      Tom McCarthy
facenumber_in_poster                                                         0
plot_keywords                       ark|catastrophe|geologist|president|writer
movie_imdb_link              http://www.imdb.com/title/tt1190080/?ref_=fn_t...
num_user_for_reviews                                                      1055
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2009
actor_2_facebook_likes                                                     468
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 60, dtype: object
color                                                                    Color
director_name                                                  Robert Zemeckis
num_critic_for_reviews                                                     240
duration                                                                    96
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   10000
actor_2_name                                                       Colin Firth
actor_1_facebook_likes                                                   18000
gross                                                               1.3785e+08
genres                                          Animation|Drama|Family|Fantasy
actor_1_name                                                      Robin Wright
movie_title                                                 A Christmas Carol 
num_voted_users                                                          72809
cast_total_facebook_likes                                                48878
actor_3_name                                                       Gary Oldman
facenumber_in_poster                                                         0
plot_keywords                charles dickens|christmas|christmas eve|ghost|...
movie_imdb_link              http://www.imdb.com/title/tt1067106/?ref_=fn_t...
num_user_for_reviews                                                       249
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   2e+08
title_year                                                                2009
actor_2_facebook_likes                                                   14000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 61, dtype: object
color                                                                    Color
director_name                                                   Lana Wachowski
num_critic_for_reviews                                                     384
duration                                                                   127
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   13000
actor_2_name                                                        Mila Kunis
actor_1_facebook_likes                                                   17000
gross                                                              4.73753e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                    Channing Tatum
movie_title                                                 Jupiter Ascending 
num_voted_users                                                         139593
cast_total_facebook_likes                                                47334
actor_3_name                                                    Eddie Redmayne
facenumber_in_poster                                                         1
plot_keywords                box office flop|critically bashed|planet earth...
movie_imdb_link              http://www.imdb.com/title/tt1617661/?ref_=fn_t...
num_user_for_reviews                                                       720
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.76e+08
title_year                                                                2015
actor_2_facebook_likes                                                   15000
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     44000
Name: 62, dtype: object
color                                                                    Color
director_name                                                      David Yates
num_critic_for_reviews                                                     248
duration                                                                   110
director_facebook_likes                                                    282
actor_3_facebook_likes                                                     103
actor_2_name                                               Alexander Skarsgård
actor_1_facebook_likes                                                   11000
gross                                                              1.24052e+08
genres                                          Action|Adventure|Drama|Romance
actor_1_name                                                   Christoph Waltz
movie_title                                              The Legend of Tarzan 
num_voted_users                                                          42372
cast_total_facebook_likes                                                21175
actor_3_name                                                      Casper Crump
facenumber_in_poster                                                         2
plot_keywords                africa|capture|jungle|male objectification|tarzan
movie_imdb_link              http://www.imdb.com/title/tt0918940/?ref_=fn_t...
num_user_for_reviews                                                       239
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.8e+08
title_year                                                                2016
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     29000
Name: 63, dtype: object
color                                                                    Color
director_name                                                   Andrew Adamson
num_critic_for_reviews                                                     284
duration                                                                   150
director_facebook_likes                                                     80
actor_3_facebook_likes                                                      82
actor_2_name                                                        Kiran Shah
actor_1_facebook_likes                                                    1000
gross                                                               2.9171e+08
genres                                                Adventure|Family|Fantasy
actor_1_name                                                     Jim Broadbent
movie_title                  The Chronicles of Narnia: The Lion, the Witch ...
num_voted_users                                                         286506
cast_total_facebook_likes                                                 1317
actor_3_name                                                       Shane Rangi
facenumber_in_poster                                                         5
plot_keywords                          hide and seek|lion|magic|professor|snow
movie_imdb_link              http://www.imdb.com/title/tt0363771/?ref_=fn_t...
num_user_for_reviews                                                      1463
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.8e+08
title_year                                                                2005
actor_2_facebook_likes                                                     190
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 64, dtype: object
color                                                                    Color
director_name                                                     Bryan Singer
num_critic_for_reviews                                                     396
duration                                                                   144
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                Michael Fassbender
actor_1_facebook_likes                                                   34000
gross                                                              1.54985e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                 Jennifer Lawrence
movie_title                                                 X-Men: Apocalypse 
num_voted_users                                                         148379
cast_total_facebook_likes                                                49684
actor_3_name                                                      Tye Sheridan
facenumber_in_poster                                                         6
plot_keywords                  mutant|superhero|superhero team|x men|year 1983
movie_imdb_link              http://www.imdb.com/title/tt3385516/?ref_=fn_t...
num_user_for_reviews                                                       622
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.78e+08
title_year                                                                2016
actor_2_facebook_likes                                                   13000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     54000
Name: 65, dtype: object
color                                                                    Color
director_name                                                Christopher Nolan
num_critic_for_reviews                                                     645
duration                                                                   152
director_facebook_likes                                                  22000
actor_3_facebook_likes                                                   11000
actor_2_name                                                      Heath Ledger
actor_1_facebook_likes                                                   23000
gross                                                              5.33316e+08
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                    Christian Bale
movie_title                                                   The Dark Knight 
num_voted_users                                                        1676169
cast_total_facebook_likes                                                57802
actor_3_name                                                    Morgan Freeman
facenumber_in_poster                                                         0
plot_keywords                based on comic book|dc comics|psychopath|star ...
movie_imdb_link              http://www.imdb.com/title/tt0468569/?ref_=fn_t...
num_user_for_reviews                                                      4667
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.85e+08
title_year                                                                2008
actor_2_facebook_likes                                                   13000
imdb_score                                                                   9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     37000
Name: 66, dtype: object
color                                                                    Color
director_name                                                      Pete Docter
num_critic_for_reviews                                                     408
duration                                                                    96
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     262
actor_2_name                                                      Delroy Lindo
actor_1_facebook_likes                                                    1000
gross                                                               2.9298e+08
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                 John Ratzenberger
movie_title                                                                Up 
num_voted_users                                                         665575
cast_total_facebook_likes                                                 2635
actor_3_name                                                      Jess Harnell
facenumber_in_poster                                                         1
plot_keywords                        balloon|house|promise|retirement|skeleton
movie_imdb_link              http://www.imdb.com/title/tt1049413/?ref_=fn_t...
num_user_for_reviews                                                       704
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.75e+08
title_year                                                                2009
actor_2_facebook_likes                                                     848
imdb_score                                                                 8.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     27000
Name: 67, dtype: object
color                                                                    Color
director_name                                                    Rob Letterman
num_critic_for_reviews                                                     219
duration                                                                    94
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     459
actor_2_name                                                      Rainn Wilson
actor_1_facebook_likes                                                    1000
gross                                                              1.98332e+08
genres                         Action|Adventure|Animation|Comedy|Family|Sci-Fi
actor_1_name                                                       Amy Poehler
movie_title                                               Monsters vs. Aliens 
num_voted_users                                                         114553
cast_total_facebook_likes                                                 2579
actor_3_name                                                   Stephen Colbert
facenumber_in_poster                                                         2
plot_keywords                alien|alien invasion|alien space craft|giant|g...
movie_imdb_link              http://www.imdb.com/title/tt0892782/?ref_=fn_t...
num_user_for_reviews                                                       187
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.75e+08
title_year                                                                2009
actor_2_facebook_likes                                                     973
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 68, dtype: object
color                                                                    Color
director_name                                                      Jon Favreau
num_critic_for_reviews                                                     486
duration                                                                   126
director_facebook_likes                                                   4000
actor_3_facebook_likes                                                    4000
actor_2_name                                                      Jeff Bridges
actor_1_facebook_likes                                                   21000
gross                                                              3.18298e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                 Robert Downey Jr.
movie_title                                                          Iron Man 
num_voted_users                                                         696338
cast_total_facebook_likes                                                39252
actor_3_name                                                       Jon Favreau
facenumber_in_poster                                                         3
plot_keywords                afghanistan|billionaire|inventor|playboy|u.s. ...
movie_imdb_link              http://www.imdb.com/title/tt0371746/?ref_=fn_t...
num_user_for_reviews                                                      1055
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+08
title_year                                                                2008
actor_2_facebook_likes                                                   12000
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 69, dtype: object
color                                                                    Color
director_name                                                  Martin Scorsese
num_critic_for_reviews                                                     682
duration                                                                   126
director_facebook_likes                                                  17000
actor_3_facebook_likes                                                    1000
actor_2_name                                                   Christopher Lee
actor_1_facebook_likes                                                   17000
gross                                                              7.38201e+07
genres                                          Adventure|Drama|Family|Mystery
actor_1_name                                                Chloë Grace Moretz
movie_title                                                              Hugo 
num_voted_users                                                         245333
cast_total_facebook_likes                                                36017
actor_3_name                                                      Ray Winstone
facenumber_in_poster                                                         0
plot_keywords                automaton|mechanical|railway station|steampunk...
movie_imdb_link              http://www.imdb.com/title/tt0970179/?ref_=fn_t...
num_user_for_reviews                                                       678
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.7e+08
title_year                                                                2011
actor_2_facebook_likes                                                   16000
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     42000
Name: 70, dtype: object
color                                                                    Color
director_name                                                 Barry Sonnenfeld
num_critic_for_reviews                                                      85
duration                                                                   106
director_facebook_likes                                                    188
actor_3_facebook_likes                                                     582
actor_2_name                                                       Salma Hayek
actor_1_facebook_likes                                                   10000
gross                                                              1.13745e+08
genres                                            Action|Comedy|Sci-Fi|Western
actor_1_name                                                        Will Smith
movie_title                                                    Wild Wild West 
num_voted_users                                                         129601
cast_total_facebook_likes                                                15870
actor_3_name                                                          Bai Ling
facenumber_in_poster                                                         2
plot_keywords                      buddy movie|general|inventor|steampunk|utah
movie_imdb_link              http://www.imdb.com/title/tt0120891/?ref_=fn_t...
num_user_for_reviews                                                       648
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+08
title_year                                                                1999
actor_2_facebook_likes                                                    4000
imdb_score                                                                 4.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 71, dtype: object
color                                                                    Color
director_name                                                        Rob Cohen
num_critic_for_reviews                                                     264
duration                                                                   112
director_facebook_likes                                                    357
actor_3_facebook_likes                                                     595
actor_2_name                                                    Brendan Fraser
actor_1_facebook_likes                                                    5000
gross                                                              1.02176e+08
genres                                Action|Adventure|Fantasy|Horror|Thriller
actor_1_name                                                            Jet Li
movie_title                             The Mummy: Tomb of the Dragon Emperor 
num_voted_users                                                         117927
cast_total_facebook_likes                                                 9131
actor_3_name                                                      Russell Wong
facenumber_in_poster                                                         2
plot_keywords                              army|china|emperor|mummy|shangri la
movie_imdb_link              http://www.imdb.com/title/tt0859163/?ref_=fn_t...
num_user_for_reviews                                                       501
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.45e+08
title_year                                                                2008
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 72, dtype: object
color                                                                    Color
director_name                                                       David Ayer
num_critic_for_reviews                                                     418
duration                                                                   123
director_facebook_likes                                                    452
actor_3_facebook_likes                                                     329
actor_2_name                                                Robin Atkin Downes
actor_1_facebook_likes                                                   10000
gross                                                              1.61087e+08
genres                                          Action|Adventure|Comedy|Sci-Fi
actor_1_name                                                        Will Smith
movie_title                                                     Suicide Squad 
num_voted_users                                                         118992
cast_total_facebook_likes                                                11287
actor_3_name                                                    Ike Barinholtz
facenumber_in_poster                                                         8
plot_keywords                based on comic book|critically bashed|father d...
movie_imdb_link              http://www.imdb.com/title/tt1386697/?ref_=fn_t...
num_user_for_reviews                                                       971
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.75e+08
title_year                                                                2016
actor_2_facebook_likes                                                     336
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     80000
Name: 73, dtype: object
color                                                                    Color
director_name                                                      Tom Shadyac
num_critic_for_reviews                                                     186
duration                                                                    96
director_facebook_likes                                                    293
actor_3_facebook_likes                                                    7000
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   87000
gross                                                               1.0029e+08
genres                                                   Comedy|Family|Fantasy
actor_1_name                                                     Jimmy Bennett
movie_title                                                     Evan Almighty 
num_voted_users                                                         115099
cast_total_facebook_likes                                               108016
actor_3_name                                                      Steve Carell
facenumber_in_poster                                                         0
plot_keywords                    ark|change|congressman|depiction of god|flood
movie_imdb_link              http://www.imdb.com/title/tt0413099/?ref_=fn_t...
num_user_for_reviews                                                       257
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.75e+08
title_year                                                                2007
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 74, dtype: object
color                                                                    Color
director_name                                                       Doug Liman
num_critic_for_reviews                                                     585
duration                                                                   113
director_facebook_likes                                                    218
actor_3_facebook_likes                                                     509
actor_2_name                                                       Lara Pulver
actor_1_facebook_likes                                                   10000
gross                                                               1.0019e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                        Tom Cruise
movie_title                                                  Edge of Tomorrow 
num_voted_users                                                         431620
cast_total_facebook_likes                                                12652
actor_3_name                                                       Noah Taylor
facenumber_in_poster                                                         1
plot_keywords                alien|combat|dying repeatedly|end of the world...
movie_imdb_link              http://www.imdb.com/title/tt1631867/?ref_=fn_t...
num_user_for_reviews                                                       741
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.78e+08
title_year                                                                2014
actor_2_facebook_likes                                                     854
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     77000
Name: 75, dtype: object
color                                                                    Color
director_name                                                   Kevin Reynolds
num_critic_for_reviews                                                      91
duration                                                                   176
director_facebook_likes                                                     58
actor_3_facebook_likes                                                      60
actor_2_name                                                       Rick Aviles
actor_1_facebook_likes                                                     711
gross                                                              8.82462e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                Jeanne Tripplehorn
movie_title                                                        Waterworld 
num_voted_users                                                         144337
cast_total_facebook_likes                                                 1004
actor_3_name                                                       Zakes Mokae
facenumber_in_poster                                                         0
plot_keywords                                     future|sail|sea|smoker|water
movie_imdb_link              http://www.imdb.com/title/tt0114898/?ref_=fn_t...
num_user_for_reviews                                                       309
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.75e+08
title_year                                                                1995
actor_2_facebook_likes                                                      60
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 76, dtype: object
color                                                                    Color
director_name                                                  Stephen Sommers
num_critic_for_reviews                                                     250
duration                                                                   118
director_facebook_likes                                                    208
actor_3_facebook_likes                                                     570
actor_2_name                                                      Dennis Quaid
actor_1_facebook_likes                                                   23000
gross                                                              1.50168e+08
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                              Joseph Gordon-Levitt
movie_title                                       G.I. Joe: The Rise of Cobra 
num_voted_users                                                         174578
cast_total_facebook_likes                                                26683
actor_3_name                                                        Leo Howard
facenumber_in_poster                                                         4
plot_keywords                                 cobra|gi joe|snake|train|warhead
movie_imdb_link              http://www.imdb.com/title/tt1046173/?ref_=fn_t...
num_user_for_reviews                                                       534
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.75e+08
title_year                                                                2009
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 77, dtype: object
color                                                                    Color
director_name                                                      Pete Docter
num_critic_for_reviews                                                     536
duration                                                                    95
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     384
actor_2_name                                                      Mindy Kaling
actor_1_facebook_likes                                                    1000
gross                                                              3.56454e+08
genres                         Adventure|Animation|Comedy|Drama|Family|Fantasy
actor_1_name                                                       Amy Poehler
movie_title                                                        Inside Out 
num_voted_users                                                         345198
cast_total_facebook_likes                                                 2944
actor_3_name                                                     Phyllis Smith
facenumber_in_poster                                                         1
plot_keywords                            anger|joy|memory|running away|sadness
movie_imdb_link              http://www.imdb.com/title/tt2096673/?ref_=fn_t...
num_user_for_reviews                                                       773
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.75e+08
title_year                                                                2015
actor_2_facebook_likes                                                     767
imdb_score                                                                 8.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                    118000
Name: 78, dtype: object
color                                                                    Color
director_name                                                      Jon Favreau
num_critic_for_reviews                                                     370
duration                                                                   106
director_facebook_likes                                                   4000
actor_3_facebook_likes                                                     591
actor_2_name                                                       Bill Murray
actor_1_facebook_likes                                                   19000
gross                                                              3.62645e+08
genres                                          Adventure|Drama|Family|Fantasy
actor_1_name                                                Scarlett Johansson
movie_title                                                   The Jungle Book 
num_voted_users                                                         106072
cast_total_facebook_likes                                                32921
actor_3_name                                                   Garry Shandling
facenumber_in_poster                                                         0
plot_keywords                                    fire|jungle|remake|tiger|wolf
movie_imdb_link              http://www.imdb.com/title/tt3040964/?ref_=fn_t...
num_user_for_reviews                                                       398
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                1.75e+08
title_year                                                                2016
actor_2_facebook_likes                                                   13000
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     65000
Name: 79, dtype: object
color                                                                    Color
director_name                                                      Jon Favreau
num_critic_for_reviews                                                     453
duration                                                                   124
director_facebook_likes                                                   4000
actor_3_facebook_likes                                                    4000
actor_2_name                                                Scarlett Johansson
actor_1_facebook_likes                                                   21000
gross                                                              3.12057e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                 Robert Downey Jr.
movie_title                                                        Iron Man 2 
num_voted_users                                                         522371
cast_total_facebook_likes                                                48638
actor_3_name                                                       Jon Favreau
facenumber_in_poster                                                         4
plot_keywords                        hammer|military|monaco|revenge|tony stark
movie_imdb_link              http://www.imdb.com/title/tt1228705/?ref_=fn_t...
num_user_for_reviews                                                       723
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2010
actor_2_facebook_likes                                                   19000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 80, dtype: object
color                                                                    Color
director_name                                                   Rupert Sanders
num_critic_for_reviews                                                     416
duration                                                                   132
director_facebook_likes                                                    274
actor_3_facebook_likes                                                   11000
actor_2_name                                                   Kristen Stewart
actor_1_facebook_likes                                                   26000
gross                                                              1.55112e+08
genres                                          Action|Adventure|Drama|Fantasy
actor_1_name                                                   Chris Hemsworth
movie_title                                       Snow White and the Huntsman 
num_voted_users                                                         228554
cast_total_facebook_likes                                                72881
actor_3_name                                                       Sam Claflin
facenumber_in_poster                                                         0
plot_keywords                     evil queen|fairy tale|magic|queen|snow white
movie_imdb_link              http://www.imdb.com/title/tt1735898/?ref_=fn_t...
num_user_for_reviews                                                       710
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+08
title_year                                                                2012
actor_2_facebook_likes                                                   17000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     53000
Name: 81, dtype: object
color                                                                    Color
director_name                                                 Robert Stromberg
num_critic_for_reviews                                                     401
duration                                                                    97
director_facebook_likes                                                    171
actor_3_facebook_likes                                                     846
actor_2_name                                                    Sharlto Copley
actor_1_facebook_likes                                                   11000
gross                                                              2.41407e+08
genres                                 Action|Adventure|Family|Fantasy|Romance
actor_1_name                                               Angelina Jolie Pitt
movie_title                                                        Maleficent 
num_voted_users                                                         252257
cast_total_facebook_likes                                                15516
actor_3_name                                                         Sam Riley
facenumber_in_poster                                                         2
plot_keywords                            curse|dark fantasy|fairy|king|kingdom
movie_imdb_link              http://www.imdb.com/title/tt1587310/?ref_=fn_t...
num_user_for_reviews                                                       634
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.8e+08
title_year                                                                2014
actor_2_facebook_likes                                                    2000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     89000
Name: 82, dtype: object
color                                                                    Color
director_name                                                      Matt Reeves
num_critic_for_reviews                                                     521
duration                                                                   130
director_facebook_likes                                                    198
actor_3_facebook_likes                                                     884
actor_2_name                                                        Judy Greer
actor_1_facebook_likes                                                   10000
gross                                                              2.08544e+08
genres                                           Action|Adventure|Drama|Sci-Fi
actor_1_name                                                       Gary Oldman
movie_title                                    Dawn of the Planet of the Apes 
num_voted_users                                                         317542
cast_total_facebook_likes                                                14363
actor_3_name                                                  Kodi Smit-McPhee
facenumber_in_poster                                                         0
plot_keywords                            ape|dam|leader|post apocalypse|sequel
movie_imdb_link              http://www.imdb.com/title/tt2103281/?ref_=fn_t...
num_user_for_reviews                                                       620
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+08
title_year                                                                2014
actor_2_facebook_likes                                                    2000
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     45000
Name: 83, dtype: object
color                                                                    Color
director_name                                                     Roland Joffé
num_critic_for_reviews                                                      10
duration                                                                   109
director_facebook_likes                                                    596
actor_3_facebook_likes                                                     283
actor_2_name                                                     Alice Englert
actor_1_facebook_likes                                                     622
gross                                                                      NaN
genres                                         Action|Adventure|Romance|Sci-Fi
actor_1_name                                                    Tamsin Egerton
movie_title                                                        The Lovers 
num_voted_users                                                           2138
cast_total_facebook_likes                                                 1982
actor_3_name                                                      Bipasha Basu
facenumber_in_poster                                                         3
plot_keywords                1770s|british india|great barrier reef|india|ring
movie_imdb_link              http://www.imdb.com/title/tt1321869/?ref_=fn_t...
num_user_for_reviews                                                        15
language                                                               English
country                                                                Belgium
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2015
actor_2_facebook_likes                                                     525
imdb_score                                                                 4.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                       677
Name: 84, dtype: object
color                                                                    Color
director_name                                                      Carl Rinsch
num_critic_for_reviews                                                     218
duration                                                                   128
director_facebook_likes                                                     47
actor_3_facebook_likes                                                     982
actor_2_name                                              Cary-Hiroyuki Tagawa
actor_1_facebook_likes                                                   18000
gross                                                              3.82973e+07
genres                                          Action|Adventure|Drama|Fantasy
actor_1_name                                                      Keanu Reeves
movie_title                                                          47 Ronin 
num_voted_users                                                         116994
cast_total_facebook_likes                                                20965
actor_3_name                                                      Jin Akanishi
facenumber_in_poster                                                         2
plot_keywords                  box office flop|ronin|samurai|shogun|tournament
movie_imdb_link              http://www.imdb.com/title/tt1335975/?ref_=fn_t...
num_user_for_reviews                                                       324
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.75e+08
title_year                                                                2013
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     35000
Name: 85, dtype: object
color                                                                    Color
director_name                                                    Anthony Russo
num_critic_for_reviews                                                     576
duration                                                                   136
director_facebook_likes                                                     94
actor_3_facebook_likes                                                    2000
actor_2_name                                                       Chris Evans
actor_1_facebook_likes                                                   19000
gross                                                              2.59747e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                Scarlett Johansson
movie_title                               Captain America: The Winter Soldier 
num_voted_users                                                         496749
cast_total_facebook_likes                                                36188
actor_3_name                                                     Hayley Atwell
facenumber_in_poster                                                         1
plot_keywords                conspiracy|heroism|megalomaniac|super soldier|...
movie_imdb_link              http://www.imdb.com/title/tt1843866/?ref_=fn_t...
num_user_for_reviews                                                       742
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+08
title_year                                                                2014
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     55000
Name: 86, dtype: object
color                                                                    Color
director_name                                                    Mike Mitchell
num_critic_for_reviews                                                     226
duration                                                                    93
director_facebook_likes                                                     31
actor_3_facebook_likes                                                     213
actor_2_name                                                     Kathy Griffin
actor_1_facebook_likes                                                    4000
gross                                                              2.38372e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                          Jon Hamm
movie_title                                               Shrek Forever After 
num_voted_users                                                         138661
cast_total_facebook_likes                                                 4628
actor_3_name                                                    Mary Kay Place
facenumber_in_poster                                                         2
plot_keywords                alternate world|fairy tale parody|female warri...
movie_imdb_link              http://www.imdb.com/title/tt0892791/?ref_=fn_t...
num_user_for_reviews                                                       173
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.65e+08
title_year                                                                2010
actor_2_facebook_likes                                                     225
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 87, dtype: object
color                                                                    Color
director_name                                                        Brad Bird
num_critic_for_reviews                                                     443
duration                                                                   130
director_facebook_likes                                                    663
actor_3_facebook_likes                                                     604
actor_2_name                                                       Chris Bauer
actor_1_facebook_likes                                                    2000
gross                                                              9.34179e+07
genres                                  Action|Adventure|Family|Mystery|Sci-Fi
actor_1_name                                                        Judy Greer
movie_title                                                      Tomorrowland 
num_voted_users                                                         128306
cast_total_facebook_likes                                                 5046
actor_3_name                                                   Thomas Robinson
facenumber_in_poster                                                         2
plot_keywords                boy genius|futuristic city|inventor|teenage gi...
movie_imdb_link              http://www.imdb.com/title/tt1964418/?ref_=fn_t...
num_user_for_reviews                                                       497
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.9e+08
title_year                                                                2015
actor_2_facebook_likes                                                     638
imdb_score                                                                 6.5
aspect_ratio                                                               2.2
movie_facebook_likes                                                     37000
Name: 88, dtype: object
color                                                                    Color
director_name                                                         Don Hall
num_critic_for_reviews                                                     384
duration                                                                   102
director_facebook_likes                                                     38
actor_3_facebook_likes                                                     562
actor_2_name                                                     Daniel Henney
actor_1_facebook_likes                                                     756
gross                                                              2.22488e+08
genres                       Action|Adventure|Animation|Comedy|Drama|Family...
actor_1_name                                                  Damon Wayans Jr.
movie_title                                                        Big Hero 6 
num_voted_users                                                         279093
cast_total_facebook_likes                                                 2963
actor_3_name                                                   Abraham Benrubi
facenumber_in_poster                                                         0
plot_keywords                high tech|martial arts|masked man|robot|superhero
movie_imdb_link              http://www.imdb.com/title/tt2245084/?ref_=fn_t...
num_user_for_reviews                                                       433
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.65e+08
title_year                                                                2014
actor_2_facebook_likes                                                     719
imdb_score                                                                 7.9
aspect_ratio                                                              2.39
movie_facebook_likes                                                     41000
Name: 89, dtype: object
color                                                                    Color
director_name                                                       Rich Moore
num_critic_for_reviews                                                     377
duration                                                                   101
director_facebook_likes                                                     66
actor_3_facebook_likes                                                     833
actor_2_name                                                   Sarah Silverman
actor_1_facebook_likes                                                     975
gross                                                              1.89413e+08
genres                                Adventure|Animation|Comedy|Family|Sci-Fi
actor_1_name                                                     Jack McBrayer
movie_title                                                    Wreck-It Ralph 
num_voted_users                                                         272534
cast_total_facebook_likes                                                 4451
actor_3_name                                                    Joe Lo Truglio
facenumber_in_poster                                                         1
plot_keywords                                   arcade|candy|glitch|king|medal
movie_imdb_link              http://www.imdb.com/title/tt1772341/?ref_=fn_t...
num_user_for_reviews                                                       345
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.65e+08
title_year                                                                2012
actor_2_facebook_likes                                                     931
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     40000
Name: 90, dtype: object
color                                                                    Color
director_name                                                  Robert Zemeckis
num_critic_for_reviews                                                     188
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     267
actor_2_name                                                      Eddie Deezen
actor_1_facebook_likes                                                   15000
gross                                                                   665426
genres                                      Adventure|Animation|Family|Fantasy
actor_1_name                                                         Tom Hanks
movie_title                                                 The Polar Express 
num_voted_users                                                         120798
cast_total_facebook_likes                                                16264
actor_3_name                                                     Peter Scolari
facenumber_in_poster                                                         0
plot_keywords                     boy|christmas|christmas eve|north pole|train
movie_imdb_link              http://www.imdb.com/title/tt0338348/?ref_=fn_t...
num_user_for_reviews                                                       444
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                1.65e+08
title_year                                                                2004
actor_2_facebook_likes                                                     726
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 91, dtype: object
color                                                                    Color
director_name                                                  Roland Emmerich
num_critic_for_reviews                                                     286
duration                                                                   120
director_facebook_likes                                                    776
actor_3_facebook_likes                                                     535
actor_2_name                                                         Sela Ward
actor_1_facebook_likes                                                     890
gross                                                              1.02316e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                     Vivica A. Fox
movie_title                                      Independence Day: Resurgence 
num_voted_users                                                          58137
cast_total_facebook_likes                                                 3233
actor_3_name                                                       Judd Hirsch
facenumber_in_poster                                                         0
plot_keywords                 alien|battle|defense|independence day|mothership
movie_imdb_link              http://www.imdb.com/title/tt1628841/?ref_=fn_t...
num_user_for_reviews                                                       520
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.65e+08
title_year                                                                2016
actor_2_facebook_likes                                                     812
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     67000
Name: 92, dtype: object
color                                                                    Color
director_name                                                     Dean DeBlois
num_critic_for_reviews                                                     288
duration                                                                    98
director_facebook_likes                                                    255
actor_3_facebook_likes                                                     759
actor_2_name                                                   America Ferrera
actor_1_facebook_likes                                                   18000
gross                                                              2.17388e+08
genres                                      Adventure|Animation|Family|Fantasy
actor_1_name                                                     Gerard Butler
movie_title                                          How to Train Your Dragon 
num_voted_users                                                         485430
cast_total_facebook_likes                                                20453
actor_3_name                                                    Craig Ferguson
facenumber_in_poster                                                         0
plot_keywords                            dragon|island|training|viking|village
movie_imdb_link              http://www.imdb.com/title/tt0892769/?ref_=fn_t...
num_user_for_reviews                                                       492
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.65e+08
title_year                                                                2010
actor_2_facebook_likes                                                     953
imdb_score                                                                 8.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     33000
Name: 93, dtype: object
color                                                                    Color
director_name                                                  Jonathan Mostow
num_critic_for_reviews                                                     280
duration                                                                   109
director_facebook_likes                                                     84
actor_3_facebook_likes                                                     191
actor_2_name                                                       M.C. Gainey
actor_1_facebook_likes                                                     648
gross                                                               1.5035e+08
genres                                                           Action|Sci-Fi
actor_1_name                                                        Nick Stahl
movie_title                                Terminator 3: Rise of the Machines 
num_voted_users                                                         305340
cast_total_facebook_likes                                                 1769
actor_3_name                                                   Carolyn Hennesy
facenumber_in_poster                                                         0
plot_keywords                    drifter|exploding truck|future|machine|skynet
movie_imdb_link              http://www.imdb.com/title/tt0181852/?ref_=fn_t...
num_user_for_reviews                                                      1676
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   2e+08
title_year                                                                2003
actor_2_facebook_likes                                                     284
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 94, dtype: object
color                                                                    Color
director_name                                                       James Gunn
num_critic_for_reviews                                                     653
duration                                                                   121
director_facebook_likes                                                    571
actor_3_facebook_likes                                                    3000
actor_2_name                                                        Vin Diesel
actor_1_facebook_likes                                                   14000
gross                                                              3.33131e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                    Bradley Cooper
movie_title                                           Guardians of the Galaxy 
num_voted_users                                                         682155
cast_total_facebook_likes                                                32438
actor_3_name                                                    Djimon Hounsou
facenumber_in_poster                                                         3
plot_keywords                bounty hunter|outer space|raccoon|talking anim...
movie_imdb_link              http://www.imdb.com/title/tt2015381/?ref_=fn_t...
num_user_for_reviews                                                      1097
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+08
title_year                                                                2014
actor_2_facebook_likes                                                   14000
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     96000
Name: 95, dtype: object
color                                                                    Color
director_name                                                Christopher Nolan
num_critic_for_reviews                                                     712
duration                                                                   169
director_facebook_likes                                                  22000
actor_3_facebook_likes                                                    6000
actor_2_name                                                     Anne Hathaway
actor_1_facebook_likes                                                   11000
gross                                                              1.87991e+08
genres                                                  Adventure|Drama|Sci-Fi
actor_1_name                                               Matthew McConaughey
movie_title                                                      Interstellar 
num_voted_users                                                         928227
cast_total_facebook_likes                                                31488
actor_3_name                                                     Mackenzie Foy
facenumber_in_poster                                                         1
plot_keywords                black hole|father daughter relationship|saving...
movie_imdb_link              http://www.imdb.com/title/tt0816692/?ref_=fn_t...
num_user_for_reviews                                                      2725
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.65e+08
title_year                                                                2014
actor_2_facebook_likes                                                   11000
imdb_score                                                                 8.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                    349000
Name: 96, dtype: object
color                                                                    Color
director_name                                                Christopher Nolan
num_critic_for_reviews                                                     642
duration                                                                   148
director_facebook_likes                                                  22000
actor_3_facebook_likes                                                   23000
actor_2_name                                                         Tom Hardy
actor_1_facebook_likes                                                   29000
gross                                                              2.92569e+08
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                         Inception 
num_voted_users                                                        1468200
cast_total_facebook_likes                                                81115
actor_3_name                                              Joseph Gordon-Levitt
facenumber_in_poster                                                         0
plot_keywords                ambiguous ending|corporate espionage|dream|sub...
movie_imdb_link              http://www.imdb.com/title/tt1375666/?ref_=fn_t...
num_user_for_reviews                                                      2803
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+08
title_year                                                                2010
actor_2_facebook_likes                                                   27000
imdb_score                                                                 8.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                    175000
Name: 97, dtype: object
color                                                                    Color
director_name                                                     Hideaki Anno
num_critic_for_reviews                                                       1
duration                                                                   120
director_facebook_likes                                                     28
actor_3_facebook_likes                                                      12
actor_2_name                                                 Shin'ya Tsukamoto
actor_1_facebook_likes                                                     544
gross                                                                      NaN
genres                                    Action|Adventure|Drama|Horror|Sci-Fi
actor_1_name                                                     Mark Chinnery
movie_title                                               Godzilla Resurgence 
num_voted_users                                                            374
cast_total_facebook_likes                                                  699
actor_3_name                                                      Atsuko Maeda
facenumber_in_poster                                                         0
plot_keywords                                    blood|godzilla|monster|sequel
movie_imdb_link              http://www.imdb.com/title/tt4262980/?ref_=fn_t...
num_user_for_reviews                                                        13
language                                                              Japanese
country                                                                  Japan
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2016
actor_2_facebook_likes                                                     106
imdb_score                                                                 8.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 98, dtype: object
color                                                                    Color
director_name                                                    Peter Jackson
num_critic_for_reviews                                                     645
duration                                                                   182
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     773
actor_2_name                                                        Adam Brown
actor_1_facebook_likes                                                    5000
gross                                                              3.03001e+08
genres                                                       Adventure|Fantasy
actor_1_name                                                      Aidan Turner
movie_title                                 The Hobbit: An Unexpected Journey 
num_voted_users                                                         637246
cast_total_facebook_likes                                                 9152
actor_3_name                                                     James Nesbitt
facenumber_in_poster                                                       NaN
plot_keywords                                   dragon|dwarf|hobbit|orc|wizard
movie_imdb_link              http://www.imdb.com/title/tt0903624/?ref_=fn_t...
num_user_for_reviews                                                      1367
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.8e+08
title_year                                                                2012
actor_2_facebook_likes                                                     972
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                    166000
Name: 99, dtype: object
color                                                                    Color
director_name                                                        Rob Cohen
num_critic_for_reviews                                                     187
duration                                                                   106
director_facebook_likes                                                    357
actor_3_facebook_likes                                                    4000
actor_2_name                                                        Vin Diesel
actor_1_facebook_likes                                                   23000
gross                                                              1.44512e+08
genres                                                   Action|Crime|Thriller
actor_1_name                                                       Paul Walker
movie_title                                          The Fast and the Furious 
num_voted_users                                                         272223
cast_total_facebook_likes                                                45327
actor_3_name                                                  Jordana Brewster
facenumber_in_poster                                                         2
plot_keywords                eighteen wheeler|illegal street racing|truck|t...
movie_imdb_link              http://www.imdb.com/title/tt0232500/?ref_=fn_t...
num_user_for_reviews                                                       988
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 3.8e+07
title_year                                                                2001
actor_2_facebook_likes                                                   14000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     14000
Name: 100, dtype: object
color                                                                    Color
director_name                                                    David Fincher
num_critic_for_reviews                                                     362
duration                                                                   166
director_facebook_likes                                                  21000
actor_3_facebook_likes                                                     919
actor_2_name                                                     Jason Flemyng
actor_1_facebook_likes                                                   11000
gross                                                              1.27491e+08
genres                                                   Drama|Fantasy|Romance
actor_1_name                                                         Brad Pitt
movie_title                               The Curious Case of Benjamin Button 
num_voted_users                                                         459346
cast_total_facebook_likes                                                13333
actor_3_name                                                      Julia Ormond
facenumber_in_poster                                                         2
plot_keywords                deformed baby|diary|lingerie slip|older man yo...
movie_imdb_link              http://www.imdb.com/title/tt0421715/?ref_=fn_t...
num_user_for_reviews                                                       822
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2008
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     23000
Name: 101, dtype: object
color                                                                    Color
director_name                                                   Matthew Vaughn
num_critic_for_reviews                                                     500
duration                                                                   132
director_facebook_likes                                                    905
actor_3_facebook_likes                                                    1000
actor_2_name                                                Michael Fassbender
actor_1_facebook_likes                                                   34000
gross                                                              1.46405e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                 Jennifer Lawrence
movie_title                                                X-Men: First Class 
num_voted_users                                                         518537
cast_total_facebook_likes                                                50983
actor_3_name                                                      Oliver Platt
facenumber_in_poster                                                         3
plot_keywords                       cia|cia agent|mutant|nuclear war|professor
movie_imdb_link              http://www.imdb.com/title/tt1270798/?ref_=fn_t...
num_user_for_reviews                                                       698
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+08
title_year                                                                2011
actor_2_facebook_likes                                                   13000
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     54000
Name: 102, dtype: object
color                                                                    Color
director_name                                                 Francis Lawrence
num_critic_for_reviews                                                     389
duration                                                                   137
director_facebook_likes                                                    508
actor_3_facebook_likes                                                   14000
actor_2_name                                            Philip Seymour Hoffman
actor_1_facebook_likes                                                   34000
gross                                                              2.81666e+08
genres                                                        Adventure|Sci-Fi
actor_1_name                                                 Jennifer Lawrence
movie_title                             The Hunger Games: Mockingjay - Part 2 
num_voted_users                                                         166137
cast_total_facebook_likes                                                81385
actor_3_name                                                   Josh Hutcherson
facenumber_in_poster                                                         1
plot_keywords                death of sister|dystopia|execution|rebellion|r...
movie_imdb_link              http://www.imdb.com/title/tt1951266/?ref_=fn_t...
num_user_for_reviews                                                       383
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+08
title_year                                                                2015
actor_2_facebook_likes                                                   22000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     38000
Name: 103, dtype: object
color                                                                    Color
director_name                                                   Jon Turteltaub
num_critic_for_reviews                                                     235
duration                                                                   109
director_facebook_likes                                                    226
actor_3_facebook_likes                                                     370
actor_2_name                                                Omar Benson Miller
actor_1_facebook_likes                                                   12000
gross                                                              6.31438e+07
genres                                         Action|Adventure|Family|Fantasy
actor_1_name                                                      Nicolas Cage
movie_title                                         The Sorcerer's Apprentice 
num_voted_users                                                         124185
cast_total_facebook_likes                                                13388
actor_3_name                                                     Robert Capron
facenumber_in_poster                                                         0
plot_keywords                  chosen one|enchanted object|love|spell|training
movie_imdb_link              http://www.imdb.com/title/tt0963966/?ref_=fn_t...
num_user_for_reviews                                                       238
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2010
actor_2_facebook_likes                                                     418
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 104, dtype: object
color                                                                    Color
director_name                                                Wolfgang Petersen
num_critic_for_reviews                                                     231
duration                                                                    98
director_facebook_likes                                                    249
actor_3_facebook_likes                                                     702
actor_2_name                                                        Mike Vogel
actor_1_facebook_likes                                                   87000
gross                                                              6.06555e+07
genres                                         Action|Adventure|Drama|Thriller
actor_1_name                                                     Jimmy Bennett
movie_title                                                          Poseidon 
num_voted_users                                                          82380
cast_total_facebook_likes                                                92456
actor_3_name                                                    Andre Braugher
facenumber_in_poster                                                         0
plot_keywords                              cruise|escape|ocean|passenger|water
movie_imdb_link              http://www.imdb.com/title/tt0409182/?ref_=fn_t...
num_user_for_reviews                                                       629
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+08
title_year                                                                2006
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 105, dtype: object
color                                                                    Color
director_name                                                      James Bobin
num_critic_for_reviews                                                     218
duration                                                                   113
director_facebook_likes                                                     33
actor_3_facebook_likes                                                   11000
actor_2_name                                                      Alan Rickman
actor_1_facebook_likes                                                   40000
gross                                                              7.68466e+07
genres                                                Adventure|Family|Fantasy
actor_1_name                                                       Johnny Depp
movie_title                                   Alice Through the Looking Glass 
num_voted_users                                                          21352
cast_total_facebook_likes                                                80806
actor_3_name                                                     Anne Hathaway
facenumber_in_poster                                                         1
plot_keywords                       clock|dark fantasy|mad hatter|queen|sequel
movie_imdb_link              http://www.imdb.com/title/tt2567026/?ref_=fn_t...
num_user_for_reviews                                                       131
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.7e+08
title_year                                                                2016
actor_2_facebook_likes                                                   25000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     30000
Name: 106, dtype: object
color                                                                    Color
director_name                                                     Chris Miller
num_critic_for_reviews                                                     227
duration                                                                    93
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     692
actor_2_name                                                         Eric Idle
actor_1_facebook_likes                                                    3000
gross                                                              3.20707e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                 Justin Timberlake
movie_title                                                   Shrek the Third 
num_voted_users                                                         211971
cast_total_facebook_likes                                                 4705
actor_3_name                                                    Rupert Everett
facenumber_in_poster                                                         2
plot_keywords                disney spoof|fairy tale|prince|princess|tough guy
movie_imdb_link              http://www.imdb.com/title/tt0413267/?ref_=fn_t...
num_user_for_reviews                                                       326
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.6e+08
title_year                                                                2007
actor_2_facebook_likes                                                     795
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 107, dtype: object
color                                                                    Color
director_name                                                     Duncan Jones
num_critic_for_reviews                                                     275
duration                                                                   123
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     648
actor_2_name                                                     Callum Rennie
actor_1_facebook_likes                                                    3000
gross                                                               4.6979e+07
genres                                                Action|Adventure|Fantasy
actor_1_name                                                    Dominic Cooper
movie_title                                                          Warcraft 
num_voted_users                                                         111609
cast_total_facebook_likes                                                 5505
actor_3_name                                                        Ruth Negga
facenumber_in_poster                                                         0
plot_keywords                based on video game|fictional language|fiction...
movie_imdb_link              http://www.imdb.com/title/tt0803096/?ref_=fn_t...
num_user_for_reviews                                                       781
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+08
title_year                                                                2016
actor_2_facebook_likes                                                     716
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     89000
Name: 108, dtype: object
color                                                                    Color
director_name                                                      Alan Taylor
num_critic_for_reviews                                                     474
duration                                                                   126
director_facebook_likes                                                    230
actor_3_facebook_likes                                                    2000
actor_2_name                                                     Emilia Clarke
actor_1_facebook_likes                                                   24000
gross                                                               8.9732e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                      J.K. Simmons
movie_title                                                Terminator Genisys 
num_voted_users                                                         188457
cast_total_facebook_likes                                                38873
actor_3_name                                                        Matt Smith
facenumber_in_poster                                                         2
plot_keywords                alternate timeline|cyborg|future|robot|time ma...
movie_imdb_link              http://www.imdb.com/title/tt1340138/?ref_=fn_t...
num_user_for_reviews                                                       867
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.55e+08
title_year                                                                2015
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     82000
Name: 109, dtype: object
color                                                                    Color
director_name                                                    Michael Apted
num_critic_for_reviews                                                     228
duration                                                                   113
director_facebook_likes                                                    150
actor_3_facebook_likes                                                      59
actor_2_name                                                       Shane Rangi
actor_1_facebook_likes                                                     531
gross                                                              1.04384e+08
genres                                                Adventure|Family|Fantasy
actor_1_name                                                      Bruce Spence
movie_title                  The Chronicles of Narnia: The Voyage of the Da...
num_voted_users                                                         106446
cast_total_facebook_likes                                                  764
actor_3_name                                                       Laura Brent
facenumber_in_poster                                                         4
plot_keywords                                  dragon|king|mouse|quest|warrior
movie_imdb_link              http://www.imdb.com/title/tt0980970/?ref_=fn_t...
num_user_for_reviews                                                       227
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.55e+08
title_year                                                                2010
actor_2_facebook_likes                                                      82
imdb_score                                                                 6.3
aspect_ratio                                                              1.78
movie_facebook_likes                                                     11000
Name: 110, dtype: object
color                                                          Black and White
director_name                                                      Michael Bay
num_critic_for_reviews                                                     191
duration                                                                   184
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     691
actor_2_name                                                        Jaime King
actor_1_facebook_likes                                                    3000
gross                                                               1.9854e+08
genres                                        Action|Drama|History|Romance|War
actor_1_name                                                   Jennifer Garner
movie_title                                                      Pearl Harbor 
num_voted_users                                                         254111
cast_total_facebook_likes                                                 5401
actor_3_name                                                              Mako
facenumber_in_poster                                                         0
plot_keywords                air raid|black smoke|japanese military|japanes...
movie_imdb_link              http://www.imdb.com/title/tt0213149/?ref_=fn_t...
num_user_for_reviews                                                      1999
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+08
title_year                                                                2001
actor_2_facebook_likes                                                     961
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 111, dtype: object
color                                                                    Color
director_name                                                      Michael Bay
num_critic_for_reviews                                                     396
duration                                                                   144
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     581
actor_2_name                                                   Michael O'Neill
actor_1_facebook_likes                                                     662
gross                                                               3.1876e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                         Zack Ward
movie_title                                                      Transformers 
num_voted_users                                                         513158
cast_total_facebook_likes                                                 2333
actor_3_name                                                        Kevin Dunn
facenumber_in_poster                                                         0
plot_keywords                alien contact|autobot|decepticon|robot vs. rob...
movie_imdb_link              http://www.imdb.com/title/tt0418279/?ref_=fn_t...
num_user_for_reviews                                                      1782
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2007
actor_2_facebook_likes                                                     599
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                      8000
Name: 112, dtype: object
color                                                                    Color
director_name                                                     Oliver Stone
num_critic_for_reviews                                                     248
duration                                                                   206
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     591
actor_2_name                                               Angelina Jolie Pitt
actor_1_facebook_likes                                                   12000
gross                                                              3.42938e+07
genres                       Action|Adventure|Biography|Drama|History|Roman...
actor_1_name                                                   Anthony Hopkins
movie_title                                                         Alexander 
num_voted_users                                                         138863
cast_total_facebook_likes                                                24598
actor_3_name                                                     Brian Blessed
facenumber_in_poster                                                         3
plot_keywords                    ancient greece|conquest|greek|greek myth|king
movie_imdb_link              http://www.imdb.com/title/tt0346491/?ref_=fn_t...
num_user_for_reviews                                                      1390
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                1.55e+08
title_year                                                                2004
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 113, dtype: object
color                                                                    Color
director_name                                                      David Yates
num_critic_for_reviews                                                     329
duration                                                                   138
director_facebook_likes                                                    282
actor_3_facebook_likes                                                     687
actor_2_name                                                  Daniel Radcliffe
actor_1_facebook_likes                                                   21000
gross                                                              2.92001e+08
genres                                        Adventure|Family|Fantasy|Mystery
actor_1_name                                                  Robert Pattinson
movie_title                         Harry Potter and the Order of the Phoenix 
num_voted_users                                                         355137
cast_total_facebook_likes                                                33433
actor_3_name                                                        Fiona Shaw
facenumber_in_poster                                                         3
plot_keywords                               battle|magic|school|teacher|wizard
movie_imdb_link              http://www.imdb.com/title/tt0373889/?ref_=fn_t...
num_user_for_reviews                                                      1108
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2007
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 114, dtype: object
color                                                                    Color
director_name                                                      Mike Newell
num_critic_for_reviews                                                     295
duration                                                                   157
director_facebook_likes                                                    179
actor_3_facebook_likes                                                   10000
actor_2_name                                                  Daniel Radcliffe
actor_1_facebook_likes                                                   21000
gross                                                              2.89994e+08
genres                                        Adventure|Family|Fantasy|Mystery
actor_1_name                                                  Robert Pattinson
movie_title                               Harry Potter and the Goblet of Fire 
num_voted_users                                                         385670
cast_total_facebook_likes                                                53413
actor_3_name                                                      Rupert Grint
facenumber_in_poster                                                         1
plot_keywords                              fire|goblet|magic|tournament|wizard
movie_imdb_link              http://www.imdb.com/title/tt0330373/?ref_=fn_t...
num_user_for_reviews                                                      1896
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2005
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 115, dtype: object
color                                                                    Color
director_name                                                       Peter Berg
num_critic_for_reviews                                                     318
duration                                                                   102
director_facebook_likes                                                    532
actor_3_facebook_likes                                                     979
actor_2_name                                                   Charlize Theron
actor_1_facebook_likes                                                   10000
gross                                                              2.27946e+08
genres                                                            Action|Drama
actor_1_name                                                        Will Smith
movie_title                                                           Hancock 
num_voted_users                                                         343648
cast_total_facebook_likes                                                21584
actor_3_name                                                      Eddie Marsan
facenumber_in_poster                                                         0
plot_keywords                bully comeuppance|destruction|prison|superhero...
movie_imdb_link              http://www.imdb.com/title/tt0448157/?ref_=fn_t...
num_user_for_reviews                                                       590
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2008
actor_2_facebook_likes                                                    9000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 116, dtype: object
color                                                                    Color
director_name                                                 Francis Lawrence
num_critic_for_reviews                                                     323
duration                                                                   104
director_facebook_likes                                                    508
actor_3_facebook_likes                                                     558
actor_2_name                                                       Alice Braga
actor_1_facebook_likes                                                   10000
gross                                                              2.56386e+08
genres                                                     Drama|Horror|Sci-Fi
actor_1_name                                                        Will Smith
movie_title                                                       I Am Legend 
num_voted_users                                                         530870
cast_total_facebook_likes                                                13076
actor_3_name                                                      Willow Smith
facenumber_in_poster                                                         0
plot_keywords                new york city|pandemic|post apocalypse|surviva...
movie_imdb_link              http://www.imdb.com/title/tt0480249/?ref_=fn_t...
num_user_for_reviews                                                      1413
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2007
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 117, dtype: object
color                                                                    Color
director_name                                                       Tim Burton
num_critic_for_reviews                                                     276
duration                                                                   115
director_facebook_likes                                                  13000
actor_3_facebook_likes                                                     588
actor_2_name                                                   Christopher Lee
actor_1_facebook_likes                                                   40000
gross                                                              2.06456e+08
genres                                         Adventure|Comedy|Family|Fantasy
actor_1_name                                                       Johnny Depp
movie_title                                 Charlie and the Chocolate Factory 
num_voted_users                                                         320284
cast_total_facebook_likes                                                57844
actor_3_name                                                       David Kelly
facenumber_in_poster                                                         3
plot_keywords                chocolate|diminution|miniaturization|physical ...
movie_imdb_link              http://www.imdb.com/title/tt0367594/?ref_=fn_t...
num_user_for_reviews                                                      1361
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2005
actor_2_facebook_likes                                                   16000
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 118, dtype: object
color                                                                    Color
director_name                                                        Brad Bird
num_critic_for_reviews                                                     318
duration                                                                   111
director_facebook_likes                                                    663
actor_3_facebook_likes                                                     954
actor_2_name                                                 John Ratzenberger
actor_1_facebook_likes                                                    1000
gross                                                              2.06435e+08
genres                                         Animation|Comedy|Family|Fantasy
actor_1_name                                                  Janeane Garofalo
movie_title                                                       Ratatouille 
num_voted_users                                                         473887
cast_total_facebook_likes                                                 4764
actor_3_name                                                     Brian Dennehy
facenumber_in_poster                                                         0
plot_keywords                                  chef|food|french|rat|restaurant
movie_imdb_link              http://www.imdb.com/title/tt0382932/?ref_=fn_t...
num_user_for_reviews                                                       626
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 1.5e+08
title_year                                                                2007
actor_2_facebook_likes                                                    1000
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 119, dtype: object
color                                                                    Color
director_name                                                Christopher Nolan
num_critic_for_reviews                                                     478
duration                                                                   128
director_facebook_likes                                                  22000
actor_3_facebook_likes                                                   11000
actor_2_name                                                       Liam Neeson
actor_1_facebook_likes                                                   23000
gross                                                              2.05344e+08
genres                                                        Action|Adventure
actor_1_name                                                    Christian Bale
movie_title                                                     Batman Begins 
num_voted_users                                                         980946
cast_total_facebook_likes                                                59558
actor_3_name                                                    Morgan Freeman
facenumber_in_poster                                                         0
plot_keywords                armored car|gangster|gotham|mixed martial arts...
movie_imdb_link              http://www.imdb.com/title/tt0372784/?ref_=fn_t...
num_user_for_reviews                                                      2685
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2005
actor_2_facebook_likes                                                   14000
imdb_score                                                                 8.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 120, dtype: object
color                                                                    Color
director_name                                                     Eric Darnell
num_critic_for_reviews                                                     167
duration                                                                    89
director_facebook_likes                                                     35
actor_3_facebook_likes                                                     436
actor_2_name                                                Jada Pinkett Smith
actor_1_facebook_likes                                                    1000
gross                                                              1.79983e+08
genres                                Action|Adventure|Animation|Comedy|Family
actor_1_name                                                        Bernie Mac
movie_title                                       Madagascar: Escape 2 Africa 
num_voted_users                                                         146019
cast_total_facebook_likes                                                 3285
actor_3_name                                            Cedric the Entertainer
facenumber_in_poster                                                         0
plot_keywords                       africa|madagascar|new york city|sequel|zoo
movie_imdb_link              http://www.imdb.com/title/tt0479952/?ref_=fn_t...
num_user_for_reviews                                                       119
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2008
actor_2_facebook_likes                                                     851
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 121, dtype: object
color                                                                    Color
director_name                                                       Shawn Levy
num_critic_for_reviews                                                     185
duration                                                                   105
director_facebook_likes                                                    189
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Rami Malek
actor_1_facebook_likes                                                   49000
gross                                                              1.77244e+08
genres                                         Adventure|Comedy|Family|Fantasy
actor_1_name                                                    Robin Williams
movie_title                    Night at the Museum: Battle of the Smithsonian 
num_voted_users                                                         130272
cast_total_facebook_likes                                                54039
actor_3_name                                                      Steve Coogan
facenumber_in_poster                                                         2
plot_keywords                hdtv|motorcycle|museum|security guard|tyrannos...
movie_imdb_link              http://www.imdb.com/title/tt1078912/?ref_=fn_t...
num_user_for_reviews                                                       209
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2009
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 122, dtype: object
color                                                                    Color
director_name                                                       Gavin Hood
num_critic_for_reviews                                                     350
duration                                                                   119
director_facebook_likes                                                    151
actor_3_facebook_likes                                                    2000
actor_2_name                                                     Ryan Reynolds
actor_1_facebook_likes                                                   20000
gross                                                              1.79883e+08
genres                                Action|Adventure|Fantasy|Sci-Fi|Thriller
actor_1_name                                                      Hugh Jackman
movie_title                                          X-Men Origins: Wolverine 
num_voted_users                                                         361924
cast_total_facebook_likes                                                40054
actor_3_name                                                  Dominic Monaghan
facenumber_in_poster                                                         0
plot_keywords                army|civil war|claw fight|commando|wolverine t...
movie_imdb_link              http://www.imdb.com/title/tt0458525/?ref_=fn_t...
num_user_for_reviews                                                       641
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2009
actor_2_facebook_likes                                                   16000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 123, dtype: object
color                                                                    Color
director_name                                                   Lana Wachowski
num_critic_for_reviews                                                     245
duration                                                                   129
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     233
actor_2_name                                                       Collin Chou
actor_1_facebook_likes                                                     309
gross                                                               1.3926e+08
genres                                                           Action|Sci-Fi
actor_1_name                                                       Essie Davis
movie_title                                            The Matrix Revolutions 
num_voted_users                                                         364948
cast_total_facebook_likes                                                 1062
actor_3_name                                                         Nona Gaye
facenumber_in_poster                                                         0
plot_keywords                                 battle|epic|fight|future|machine
movie_imdb_link              http://www.imdb.com/title/tt0242653/?ref_=fn_t...
num_user_for_reviews                                                      2121
language                                                               English
country                                                              Australia
content_rating                                                               R
budget                                                                 1.5e+08
title_year                                                                2003
actor_2_facebook_likes                                                     269
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 124, dtype: object
color                                                                    Color
director_name                                                       Chris Buck
num_critic_for_reviews                                                     406
duration                                                                   102
director_facebook_likes                                                     69
actor_3_facebook_likes                                                     490
actor_2_name                                                  Maurice LaMarche
actor_1_facebook_likes                                                    1000
gross                                                              4.00737e+08
genres                       Adventure|Animation|Comedy|Family|Fantasy|Musical
actor_1_name                                                          Josh Gad
movie_title                                                            Frozen 
num_voted_users                                                         421658
cast_total_facebook_likes                                                 2582
actor_3_name                                                 Livvy Stubenrauch
facenumber_in_poster                                                         0
plot_keywords                magic|sister love|sister sister relationship|s...
movie_imdb_link              http://www.imdb.com/title/tt2294629/?ref_=fn_t...
num_user_for_reviews                                                       904
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2013
actor_2_facebook_likes                                                     523
imdb_score                                                                 7.6
aspect_ratio                                                              2.24
movie_facebook_likes                                                     58000
Name: 125, dtype: object
color                                                                    Color
director_name                                                   Lana Wachowski
num_critic_for_reviews                                                     275
duration                                                                   138
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      30
actor_2_name                                                  Daniel Bernhardt
actor_1_facebook_likes                                                     234
gross                                                              2.81492e+08
genres                                                           Action|Sci-Fi
actor_1_name                                                     Steve Bastoni
movie_title                                               The Matrix Reloaded 
num_voted_users                                                         421818
cast_total_facebook_likes                                                  534
actor_3_name                                                   Helmut Bakaitis
facenumber_in_poster                                                         0
plot_keywords                car motorcycle chase|one against many|oracle|p...
movie_imdb_link              http://www.imdb.com/title/tt0234215/?ref_=fn_t...
num_user_for_reviews                                                      2789
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+08
title_year                                                                2003
actor_2_facebook_likes                                                     198
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 126, dtype: object
color                                                                    Color
director_name                                                      Alan Taylor
num_critic_for_reviews                                                     486
duration                                                                   112
director_facebook_likes                                                    230
actor_3_facebook_likes                                                   12000
actor_2_name                                                   Natalie Portman
actor_1_facebook_likes                                                   26000
gross                                                               2.0636e+08
genres                                                Action|Adventure|Fantasy
actor_1_name                                                   Chris Hemsworth
movie_title                                              Thor: The Dark World 
num_voted_users                                                         414070
cast_total_facebook_likes                                                59803
actor_3_name                                                   Anthony Hopkins
facenumber_in_poster                                                         3
plot_keywords                                arrest|portal|thor|warrior|weapon
movie_imdb_link              http://www.imdb.com/title/tt1981115/?ref_=fn_t...
num_user_for_reviews                                                       532
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+08
title_year                                                                2013
actor_2_facebook_likes                                                   20000
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     63000
Name: 127, dtype: object
color                                                                    Color
director_name                                                    George Miller
num_critic_for_reviews                                                     739
duration                                                                   120
director_facebook_likes                                                    750
actor_3_facebook_likes                                                     943
actor_2_name                                                   Charlize Theron
actor_1_facebook_likes                                                   27000
gross                                                              1.53629e+08
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                         Tom Hardy
movie_title                                                Mad Max: Fury Road 
num_voted_users                                                         552503
cast_total_facebook_likes                                                40025
actor_3_name                                                       Zoë Kravitz
facenumber_in_poster                                                         0
plot_keywords                australia|desert|escape|on the run|post apocal...
movie_imdb_link              http://www.imdb.com/title/tt1392190/?ref_=fn_t...
num_user_for_reviews                                                      1588
language                                                               English
country                                                              Australia
content_rating                                                               R
budget                                                                 1.5e+08
title_year                                                                2015
actor_2_facebook_likes                                                    9000
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                    191000
Name: 128, dtype: object
color                                                                    Color
director_name                                                       Ron Howard
num_critic_for_reviews                                                     298
duration                                                                   146
director_facebook_likes                                                   2000
actor_3_facebook_likes                                                     294
actor_2_name                                                      Ayelet Zurer
actor_1_facebook_likes                                                   15000
gross                                                              1.33376e+08
genres                                                        Mystery|Thriller
actor_1_name                                                         Tom Hanks
movie_title                                                   Angels & Demons 
num_voted_users                                                         207839
cast_total_facebook_likes                                                16948
actor_3_name                                               Armin Mueller-Stahl
facenumber_in_poster                                                         2
plot_keywords                conclave|illuminati|murder|reference to bernin...
movie_imdb_link              http://www.imdb.com/title/tt0808151/?ref_=fn_t...
num_user_for_reviews                                                       435
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2009
actor_2_facebook_likes                                                     745
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 129, dtype: object
color                                                                    Color
director_name                                                  Kenneth Branagh
num_critic_for_reviews                                                     516
duration                                                                   115
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   12000
actor_2_name                                                   Natalie Portman
actor_1_facebook_likes                                                   26000
gross                                                              1.81015e+08
genres                                                Action|Adventure|Fantasy
actor_1_name                                                   Chris Hemsworth
movie_title                                                              Thor 
num_voted_users                                                         536314
cast_total_facebook_likes                                                60059
actor_3_name                                                   Anthony Hopkins
facenumber_in_poster                                                         1
plot_keywords                battle|marvel cinematic universe|scientist|tho...
movie_imdb_link              http://www.imdb.com/title/tt0800369/?ref_=fn_t...
num_user_for_reviews                                                       738
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2011
actor_2_facebook_likes                                                   20000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     63000
Name: 130, dtype: object
color                                                                    Color
director_name                                                     Byron Howard
num_critic_for_reviews                                                     225
duration                                                                    96
director_facebook_likes                                                     59
actor_3_facebook_likes                                                     699
actor_2_name                                                    Diedrich Bader
actor_1_facebook_likes                                                   17000
gross                                                              1.14054e+08
genres                                 Adventure|Animation|Comedy|Drama|Family
actor_1_name                                                Chloë Grace Moretz
movie_title                                                              Bolt 
num_voted_users                                                         146766
cast_total_facebook_likes                                                20007
actor_3_name                                                      James Lipton
facenumber_in_poster                                                         0
plot_keywords                         cat|dog|hamster|new york city|superpower
movie_imdb_link              http://www.imdb.com/title/tt0397892/?ref_=fn_t...
num_user_for_reviews                                                       178
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2008
actor_2_facebook_likes                                                     759
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 131, dtype: object
color                                                                    Color
director_name                                                     Hoyt Yeatman
num_critic_for_reviews                                                     145
duration                                                                    88
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     182
actor_2_name                                            Piper Mackenzie Harris
actor_1_facebook_likes                                                     730
gross                                                               1.1942e+08
genres                       Action|Adventure|Animation|Comedy|Family|Fanta...
actor_1_name                                                      Kelli Garner
movie_title                                                           G-Force 
num_voted_users                                                          33042
cast_total_facebook_likes                                                 2217
actor_3_name                                                        Niecy Nash
facenumber_in_poster                                                         0
plot_keywords                fbi director|guinea pig|household appliance|se...
movie_imdb_link              http://www.imdb.com/title/tt0436339/?ref_=fn_t...
num_user_for_reviews                                                        90
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2009
actor_2_facebook_likes                                                     607
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 132, dtype: object
color                                                                    Color
director_name                                               Jonathan Liebesman
num_critic_for_reviews                                                     310
duration                                                                    99
director_facebook_likes                                                    473
actor_3_facebook_likes                                                     502
actor_2_name                                                     Edgar Ramírez
actor_1_facebook_likes                                                   14000
gross                                                              8.36404e+07
genres                                                Action|Adventure|Fantasy
actor_1_name                                                       Liam Neeson
movie_title                                               Wrath of the Titans 
num_voted_users                                                         152826
cast_total_facebook_likes                                                16184
actor_3_name                                                        Lily James
facenumber_in_poster                                                         0
plot_keywords                                 ares|hades|titan|underworld|zeus
movie_imdb_link              http://www.imdb.com/title/tt1646987/?ref_=fn_t...
num_user_for_reviews                                                       253
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2012
actor_2_facebook_likes                                                     897
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     19000
Name: 133, dtype: object
color                                                                    Color
director_name                                                       Tim Burton
num_critic_for_reviews                                                     526
duration                                                                   113
director_facebook_likes                                                  13000
actor_3_facebook_likes                                                   16000
actor_2_name                                                Chloë Grace Moretz
actor_1_facebook_likes                                                   40000
gross                                                              7.97117e+07
genres                                                   Comedy|Fantasy|Horror
actor_1_name                                                       Johnny Depp
movie_title                                                      Dark Shadows 
num_voted_users                                                         199039
cast_total_facebook_likes                                                80849
actor_3_name                                                   Christopher Lee
facenumber_in_poster                                                         7
plot_keywords                camera shot of feet|cartoon on tv|female stock...
movie_imdb_link              http://www.imdb.com/title/tt1077368/?ref_=fn_t...
num_user_for_reviews                                                       479
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2012
actor_2_facebook_likes                                                   17000
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     82000
Name: 134, dtype: object
color                                                                    Color
director_name                                            Christopher McQuarrie
num_critic_for_reviews                                                     465
duration                                                                   131
director_facebook_likes                                                    188
actor_3_facebook_likes                                                     641
actor_2_name                                                     Jeremy Renner
actor_1_facebook_likes                                                   10000
gross                                                              1.95001e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                        Tom Cruise
movie_title                                Mission: Impossible - Rogue Nation 
num_voted_users                                                         232187
cast_total_facebook_likes                                                21840
actor_3_name                                                       Sean Harris
facenumber_in_poster                                                         0
plot_keywords                  capture|computer hacker|mission|rogue agent|spy
movie_imdb_link              http://www.imdb.com/title/tt2381249/?ref_=fn_t...
num_user_for_reviews                                                       440
language                                                               English
country                                                                  China
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2015
actor_2_facebook_likes                                                   10000
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     47000
Name: 135, dtype: object
color                                                                    Color
director_name                                                     Joe Johnston
num_critic_for_reviews                                                     357
duration                                                                   119
director_facebook_likes                                                    394
actor_3_facebook_likes                                                     162
actor_2_name                                                    Simon Merrells
actor_1_facebook_likes                                                   12000
gross                                                              6.19375e+07
genres                                           Drama|Fantasy|Horror|Thriller
actor_1_name                                                   Anthony Hopkins
movie_title                                                       The Wolfman 
num_voted_users                                                          89442
cast_total_facebook_likes                                                13071
actor_3_name                                                         Art Malik
facenumber_in_poster                                                         0
plot_keywords                   asylum|death|full moon|transformation|werewolf
movie_imdb_link              http://www.imdb.com/title/tt0780653/?ref_=fn_t...
num_user_for_reviews                                                       432
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+08
title_year                                                                2010
actor_2_facebook_likes                                                     490
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 136, dtype: object
color                                                                    Color
director_name                                                      David Yates
num_critic_for_reviews                                                     248
duration                                                                   110
director_facebook_likes                                                    282
actor_3_facebook_likes                                                     103
actor_2_name                                               Alexander Skarsgård
actor_1_facebook_likes                                                   11000
gross                                                              1.24052e+08
genres                                          Action|Adventure|Drama|Romance
actor_1_name                                                   Christoph Waltz
movie_title                                              The Legend of Tarzan 
num_voted_users                                                          42372
cast_total_facebook_likes                                                21175
actor_3_name                                                      Casper Crump
facenumber_in_poster                                                         2
plot_keywords                africa|capture|jungle|male objectification|tarzan
movie_imdb_link              http://www.imdb.com/title/tt0918940/?ref_=fn_t...
num_user_for_reviews                                                       239
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.8e+08
title_year                                                                2016
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     29000
Name: 137, dtype: object
color                                                                    Color
director_name                                                    Steve Hickner
num_critic_for_reviews                                                     194
duration                                                                    91
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     826
actor_2_name                                                     Oprah Winfrey
actor_1_facebook_likes                                                    2000
gross                                                              1.26597e+08
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                 Matthew Broderick
movie_title                                                         Bee Movie 
num_voted_users                                                         105902
cast_total_facebook_likes                                                 6576
actor_3_name                                                          Rip Torn
facenumber_in_poster                                                         0
plot_keywords                bee|dream sequence|egg|scatological humor|squa...
movie_imdb_link              http://www.imdb.com/title/tt0389790/?ref_=fn_t...
num_user_for_reviews                                                       206
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2007
actor_2_facebook_likes                                                     852
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 138, dtype: object
color                                                                    Color
director_name                                              Jennifer Yuh Nelson
num_critic_for_reviews                                                     284
duration                                                                    90
director_facebook_likes                                                     90
actor_3_facebook_likes                                                      15
actor_2_name                                                       Gary Oldman
actor_1_facebook_likes                                                   11000
gross                                                               1.6523e+08
genres                                Action|Adventure|Animation|Comedy|Family
actor_1_name                                               Angelina Jolie Pitt
movie_title                                                   Kung Fu Panda 2 
num_voted_users                                                         182718
cast_total_facebook_likes                                                21015
actor_3_name                                                         Mike Bell
facenumber_in_poster                                                         0
plot_keywords                              china|kung fu|panda|peacock|tigress
movie_imdb_link              http://www.imdb.com/title/tt1302011/?ref_=fn_t...
num_user_for_reviews                                                       209
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2011
actor_2_facebook_likes                                                   10000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     20000
Name: 139, dtype: object
color                                                                    Color
director_name                                               M. Night Shyamalan
num_critic_for_reviews                                                     280
duration                                                                   103
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     346
actor_2_name                                                       Noah Ringer
actor_1_facebook_likes                                                    1000
gross                                                              1.31565e+08
genres                                         Action|Adventure|Family|Fantasy
actor_1_name                                                 Seychelle Gabriel
movie_title                                                The Last Airbender 
num_voted_users                                                         118951
cast_total_facebook_likes                                                 2857
actor_3_name                                                      Aasif Mandvi
facenumber_in_poster                                                         0
plot_keywords                                  avatar|fire|kingdom|tribe|water
movie_imdb_link              http://www.imdb.com/title/tt0938283/?ref_=fn_t...
num_user_for_reviews                                                      1382
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2010
actor_2_facebook_likes                                                     756
imdb_score                                                                 4.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 140, dtype: object
color                                                                    Color
director_name                                                      J.J. Abrams
num_critic_for_reviews                                                     310
duration                                                                   124
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     979
actor_2_name                                                        Tom Cruise
actor_1_facebook_likes                                                   22000
gross                                                              1.33382e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                            Philip Seymour Hoffman
movie_title                                           Mission: Impossible III 
num_voted_users                                                         256695
cast_total_facebook_likes                                                34817
actor_3_name                                                      Eddie Marsan
facenumber_in_poster                                                         0
plot_keywords                arms dealer|fictional government agency|missio...
movie_imdb_link              http://www.imdb.com/title/tt0317919/?ref_=fn_t...
num_user_for_reviews                                                       871
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2006
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 141, dtype: object
color                                                                    Color
director_name                                                  Roland Emmerich
num_critic_for_reviews                                                     339
duration                                                                   131
director_facebook_likes                                                    776
actor_3_facebook_likes                                                     256
actor_2_name                                                        Jake Weber
actor_1_facebook_likes                                                   17000
gross                                                              7.31038e+07
genres                                                   Action|Drama|Thriller
actor_1_name                                                    Channing Tatum
movie_title                                                  White House Down 
num_voted_users                                                         164238
cast_total_facebook_likes                                                18204
actor_3_name                                                       Matt Craven
facenumber_in_poster                                                         2
plot_keywords                black u.s. president|president|secret service|...
movie_imdb_link              http://www.imdb.com/title/tt2334879/?ref_=fn_t...
num_user_for_reviews                                                       434
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2013
actor_2_facebook_likes                                                     551
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     33000
Name: 142, dtype: object
color                                                                    Color
director_name                                                      Simon Wells
num_critic_for_reviews                                                     132
duration                                                                    88
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     433
actor_2_name                                                        Dan Fogler
actor_1_facebook_likes                                                     921
gross                                                              2.13793e+07
genres                         Action|Adventure|Animation|Comedy|Family|Sci-Fi
actor_1_name                                                 Elisabeth Harnois
movie_title                                                   Mars Needs Moms 
num_voted_users                                                          17590
cast_total_facebook_likes                                                 2652
actor_3_name                                                 Tom Everett Scott
facenumber_in_poster                                                         0
plot_keywords                                  boy|martian|rescue|robot|sexism
movie_imdb_link              http://www.imdb.com/title/tt1305591/?ref_=fn_t...
num_user_for_reviews                                                       112
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2011
actor_2_facebook_likes                                                     562
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 143, dtype: object
color                                                                    Color
director_name                                                     David Bowers
num_critic_for_reviews                                                     135
duration                                                                    85
director_facebook_likes                                                     42
actor_3_facebook_likes                                                     586
actor_2_name                                                      Kate Winslet
actor_1_facebook_likes                                                   20000
gross                                                              6.44593e+07
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                      Hugh Jackman
movie_title                                                      Flushed Away 
num_voted_users                                                          85086
cast_total_facebook_likes                                                35161
actor_3_name                                                      David Suchet
facenumber_in_poster                                                         0
plot_keywords                                         boat|frog|rat|sewer|toad
movie_imdb_link              http://www.imdb.com/title/tt0424095/?ref_=fn_t...
num_user_for_reviews                                                       122
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                1.49e+08
title_year                                                                2006
actor_2_facebook_likes                                                   14000
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 144, dtype: object
color                                                                    Color
director_name                                                       Joe Wright
num_critic_for_reviews                                                     256
duration                                                                   111
director_facebook_likes                                                    456
actor_3_facebook_likes                                                     394
actor_2_name                                                   Cara Delevingne
actor_1_facebook_likes                                                   20000
gross                                                              3.49648e+07
genres                                                Adventure|Family|Fantasy
actor_1_name                                                      Hugh Jackman
movie_title                                                               Pan 
num_voted_users                                                          39956
cast_total_facebook_likes                                                21393
actor_3_name                                                      Nonso Anozie
facenumber_in_poster                                                         4
plot_keywords                1940s|child hero|fantasy world|orphan|referenc...
movie_imdb_link              http://www.imdb.com/title/tt3332064/?ref_=fn_t...
num_user_for_reviews                                                       186
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2015
actor_2_facebook_likes                                                     548
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     24000
Name: 145, dtype: object
color                                                                    Color
director_name                                                      Rob Minkoff
num_critic_for_reviews                                                     196
duration                                                                    92
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     517
actor_2_name                                                     Zach Callison
actor_1_facebook_likes                                                    3000
gross                                                              1.11506e+08
genres                                Adventure|Animation|Comedy|Family|Sci-Fi
actor_1_name                                                        Ty Burrell
movie_title                                             Mr. Peabody & Sherman 
num_voted_users                                                          47900
cast_total_facebook_likes                                                 5810
actor_3_name                                                        Karan Brar
facenumber_in_poster                                                         2
plot_keywords                dog|father son relationship|inventor|talking d...
movie_imdb_link              http://www.imdb.com/title/tt0864835/?ref_=fn_t...
num_user_for_reviews                                                       130
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.45e+08
title_year                                                                2014
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 146, dtype: object
color                                                                    Color
director_name                                                Wolfgang Petersen
num_critic_for_reviews                                                     220
duration                                                                   196
director_facebook_likes                                                    249
actor_3_facebook_likes                                                     844
actor_2_name                                                     Orlando Bloom
actor_1_facebook_likes                                                   11000
gross                                                              1.33228e+08
genres                                                               Adventure
actor_1_name                                                         Brad Pitt
movie_title                                                              Troy 
num_voted_users                                                         381672
cast_total_facebook_likes                                                17944
actor_3_name                                                     Julian Glover
facenumber_in_poster                                                         2
plot_keywords                               greek|mythology|prince|trojan|troy
movie_imdb_link              http://www.imdb.com/title/tt0332452/?ref_=fn_t...
num_user_for_reviews                                                      1694
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.75e+08
title_year                                                                2004
actor_2_facebook_likes                                                    5000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 147, dtype: object
color                                                                    Color
director_name                                                     Eric Darnell
num_critic_for_reviews                                                     211
duration                                                                    93
director_facebook_likes                                                     35
actor_3_facebook_likes                                                     436
actor_2_name                                                      Martin Short
actor_1_facebook_likes                                                     851
gross                                                              2.16367e+08
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                Jada Pinkett Smith
movie_title                                Madagascar 3: Europe's Most Wanted 
num_voted_users                                                         119213
cast_total_facebook_likes                                                 2444
actor_3_name                                            Cedric the Entertainer
facenumber_in_poster                                                         0
plot_keywords                 animal|circus|island name in title|lemur|penguin
movie_imdb_link              http://www.imdb.com/title/tt1277953/?ref_=fn_t...
num_user_for_reviews                                                       154
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.45e+08
title_year                                                                2012
actor_2_facebook_likes                                                     770
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                     17000
Name: 148, dtype: object
color                                                          Black and White
director_name                                                     Lee Tamahori
num_critic_for_reviews                                                     264
duration                                                                   133
director_facebook_likes                                                     93
actor_3_facebook_likes                                                     746
actor_2_name                                                      Colin Salmon
actor_1_facebook_likes                                                     769
gross                                                              1.60201e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                     Toby Stephens
movie_title                                                   Die Another Day 
num_voted_users                                                         169914
cast_total_facebook_likes                                                 2538
actor_3_name                                                         Rick Yune
facenumber_in_poster                                                         0
plot_keywords                        catfight|clinic|colonel|diamond|patricide
movie_imdb_link              http://www.imdb.com/title/tt0246460/?ref_=fn_t...
num_user_for_reviews                                                      1185
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                1.42e+08
title_year                                                                2002
actor_2_facebook_likes                                                     766
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 149, dtype: object
color                                                                    Color
director_name                                                        Paul Feig
num_critic_for_reviews                                                     464
duration                                                                   116
director_facebook_likes                                                    176
actor_3_facebook_likes                                                     322
actor_2_name                                                     Kate McKinnon
actor_1_facebook_likes                                                     783
gross                                                                1.181e+08
genres                                            Action|Comedy|Fantasy|Sci-Fi
actor_1_name                                                     Ed Begley Jr.
movie_title                                                      Ghostbusters 
num_voted_users                                                          69757
cast_total_facebook_likes                                                 2097
actor_3_name                                                        Zach Woods
facenumber_in_poster                                                         4
plot_keywords                ghost|ghostbuster|ghostbusters|male objectific...
movie_imdb_link              http://www.imdb.com/title/tt1289401/?ref_=fn_t...
num_user_for_reviews                                                      1211
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.44e+08
title_year                                                                2016
actor_2_facebook_likes                                                     370
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     62000
Name: 150, dtype: object
color                                                                    Color
director_name                                                      Michael Bay
num_critic_for_reviews                                                     167
duration                                                                   153
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     537
actor_2_name                                                     Steve Buscemi
actor_1_facebook_likes                                                   13000
gross                                                              2.01573e+08
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                      Bruce Willis
movie_title                                                        Armageddon 
num_voted_users                                                         322395
cast_total_facebook_likes                                                26029
actor_3_name                                                       Will Patton
facenumber_in_poster                                                         0
plot_keywords                    asteroid|astronaut|bomb|meteorite|outer space
movie_imdb_link              http://www.imdb.com/title/tt0120591/?ref_=fn_t...
num_user_for_reviews                                                      1171
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+08
title_year                                                                1998
actor_2_facebook_likes                                                   12000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 151, dtype: object
color                                                                    Color
director_name                                                 Barry Sonnenfeld
num_critic_for_reviews                                                     208
duration                                                                    88
director_facebook_likes                                                    188
actor_3_facebook_likes                                                     826
actor_2_name                                                    Rosario Dawson
actor_1_facebook_likes                                                   10000
gross                                                              1.90419e+08
genres                       Action|Adventure|Comedy|Family|Fantasy|Mystery...
actor_1_name                                                        Will Smith
movie_title                                                   Men in Black II 
num_voted_users                                                         270207
cast_total_facebook_likes                                                14823
actor_3_name                                                          Rip Torn
facenumber_in_poster                                                         2
plot_keywords                         alien|lingerie|lingerie model|m.i.b.|pug
movie_imdb_link              http://www.imdb.com/title/tt0120912/?ref_=fn_t...
num_user_for_reviews                                                       606
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+08
title_year                                                                2002
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                      2000
Name: 152, dtype: object
color                                                                    Color
director_name                                                  Robert Zemeckis
num_critic_for_reviews                                                     287
duration                                                                   115
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     964
actor_2_name                                                   Anthony Hopkins
actor_1_facebook_likes                                                   18000
gross                                                               8.2162e+07
genres                                      Action|Adventure|Animation|Fantasy
actor_1_name                                                      Robin Wright
movie_title                                                           Beowulf 
num_voted_users                                                         142440
cast_total_facebook_likes                                                31523
actor_3_name                                                   Sebastian Roché
facenumber_in_poster                                                         1
plot_keywords                               creature|demon|king|reward|warrior
movie_imdb_link              http://www.imdb.com/title/tt0442933/?ref_=fn_t...
num_user_for_reviews                                                       505
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2007
actor_2_facebook_likes                                                   12000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                      3000
Name: 153, dtype: object
color                                                                    Color
director_name                                               Alessandro Carloni
num_critic_for_reviews                                                     210
duration                                                                    95
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     967
actor_2_name                                               Angelina Jolie Pitt
actor_1_facebook_likes                                                   24000
gross                                                              1.43523e+08
genres                                Action|Adventure|Animation|Comedy|Family
actor_1_name                                                      J.K. Simmons
movie_title                                                   Kung Fu Panda 3 
num_voted_users                                                          64322
cast_total_facebook_likes                                                36095
actor_3_name                                                      Wayne Knight
facenumber_in_poster                                                         0
plot_keywords                                  china|kung fu|panda|pig|village
movie_imdb_link              http://www.imdb.com/title/tt2267968/?ref_=fn_t...
num_user_for_reviews                                                       145
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.45e+08
title_year                                                                2016
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     24000
Name: 154, dtype: object
color                                                                    Color
director_name                                                        Brad Bird
num_critic_for_reviews                                                     432
duration                                                                   133
director_facebook_likes                                                    663
actor_3_facebook_likes                                                     690
actor_2_name                                                     Jeremy Renner
actor_1_facebook_likes                                                   10000
gross                                                              2.09365e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                        Tom Cruise
movie_title                              Mission: Impossible - Ghost Protocol 
num_voted_users                                                         365104
cast_total_facebook_likes                                                21768
actor_3_name                                                   Michael Nyqvist
facenumber_in_poster                                                         3
plot_keywords                dubai|kremlin|race against time|russian|terrorist
movie_imdb_link              http://www.imdb.com/title/tt1229238/?ref_=fn_t...
num_user_for_reviews                                                       512
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.45e+08
title_year                                                                2011
actor_2_facebook_likes                                                   10000
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     35000
Name: 155, dtype: object
color                                                                    Color
director_name                                                     Peter Ramsey
num_critic_for_reviews                                                     256
duration                                                                    97
director_facebook_likes                                                     52
actor_3_facebook_likes                                                     161
actor_2_name                                                    Kamil McFadden
actor_1_facebook_likes                                                   20000
gross                                                              1.03401e+08
genres                                      Adventure|Animation|Family|Fantasy
actor_1_name                                                      Hugh Jackman
movie_title                                             Rise of the Guardians 
num_voted_users                                                         123553
cast_total_facebook_likes                                                20645
actor_3_name                                                   Khamani Griffin
facenumber_in_poster                                                         0
plot_keywords                belief|box office hit|children|new york city|t...
movie_imdb_link              http://www.imdb.com/title/tt1446192/?ref_=fn_t...
num_user_for_reviews                                                       174
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.45e+08
title_year                                                                2012
actor_2_facebook_likes                                                     315
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     25000
Name: 156, dtype: object
color                                                                    Color
director_name                                                     Dean Parisot
num_critic_for_reviews                                                     135
duration                                                                    90
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     233
actor_2_name                                                     Richard Burgi
actor_1_facebook_likes                                                     957
gross                                                              1.10333e+08
genres                                                            Comedy|Crime
actor_1_name                                              John Michael Higgins
movie_title                                            Fun with Dick and Jane 
num_voted_users                                                         110788
cast_total_facebook_likes                                                 1997
actor_3_name                                                      David Herman
facenumber_in_poster                                                         1
plot_keywords                       animal abuse|ceo|heist|suburb|unemployment
movie_imdb_link              http://www.imdb.com/title/tt0369441/?ref_=fn_t...
num_user_for_reviews                                                       258
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2005
actor_2_facebook_likes                                                     550
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 157, dtype: object
color                                                                    Color
director_name                                                     Edward Zwick
num_critic_for_reviews                                                     190
duration                                                                   154
director_facebook_likes                                                    380
actor_3_facebook_likes                                                     445
actor_2_name                                                      Tony Goldwyn
actor_1_facebook_likes                                                   10000
gross                                                              1.11111e+08
genres                                                Action|Drama|History|War
actor_1_name                                                        Tom Cruise
movie_title                                                  The Last Samurai 
num_voted_users                                                         317166
cast_total_facebook_likes                                                11945
actor_3_name                                                     Chad Lindberg
facenumber_in_poster                                                         1
plot_keywords                              captain|emperor|honor|japan|samurai
movie_imdb_link              http://www.imdb.com/title/tt0325710/?ref_=fn_t...
num_user_for_reviews                                                       928
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+08
title_year                                                                2003
actor_2_facebook_likes                                                     956
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 158, dtype: object
color                                                                    Color
director_name                                                     Ridley Scott
num_critic_for_reviews                                                     314
duration                                                                   150
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     748
actor_2_name                                                    María Valverde
actor_1_facebook_likes                                                   23000
gross                                                               6.5007e+07
genres                                                  Action|Adventure|Drama
actor_1_name                                                    Christian Bale
movie_title                                            Exodus: Gods and Kings 
num_voted_users                                                         128682
cast_total_facebook_likes                                                26490
actor_3_name                                                    Ben Mendelsohn
facenumber_in_poster                                                         0
plot_keywords                                egypt|exodus|moses|pharaoh|plague
movie_imdb_link              http://www.imdb.com/title/tt1528100/?ref_=fn_t...
num_user_for_reviews                                                       657
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.4e+08
title_year                                                                2014
actor_2_facebook_likes                                                     893
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     51000
Name: 159, dtype: object
color                                                                    Color
director_name                                                      J.J. Abrams
num_critic_for_reviews                                                     518
duration                                                                   127
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     981
actor_2_name                                                     Leonard Nimoy
actor_1_facebook_likes                                                   26000
gross                                                              2.57704e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                   Chris Hemsworth
movie_title                                                         Star Trek 
num_voted_users                                                         504419
cast_total_facebook_likes                                                39284
actor_3_name                                                   Bruce Greenwood
facenumber_in_poster                                                         0
plot_keywords                box office hit|future|lifted by the throat|sta...
movie_imdb_link              http://www.imdb.com/title/tt0796366/?ref_=fn_t...
num_user_for_reviews                                                      1559
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2009
actor_2_facebook_likes                                                   12000
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     19000
Name: 160, dtype: object
color                                                                    Color
director_name                                                        Sam Raimi
num_critic_for_reviews                                                     291
duration                                                                   121
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    4000
actor_2_name                                                      James Franco
actor_1_facebook_likes                                                   24000
gross                                                              4.03706e+08
genres                                        Action|Adventure|Fantasy|Romance
actor_1_name                                                      J.K. Simmons
movie_title                                                        Spider-Man 
num_voted_users                                                         544665
cast_total_facebook_likes                                                40484
actor_3_name                                                     Kirsten Dunst
facenumber_in_poster                                                         0
plot_keywords                          evil|goblin|spider|spider man|superhero
movie_imdb_link              http://www.imdb.com/title/tt0145487/?ref_=fn_t...
num_user_for_reviews                                                      2012
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.39e+08
title_year                                                                2002
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                      5000
Name: 161, dtype: object
color                                                                    Color
director_name                                                     Dean DeBlois
num_critic_for_reviews                                                     292
duration                                                                   102
director_facebook_likes                                                    255
actor_3_facebook_likes                                                     953
actor_2_name                                                    Djimon Hounsou
actor_1_facebook_likes                                                   18000
gross                                                              1.76997e+08
genres                        Action|Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                     Gerard Butler
movie_title                                        How to Train Your Dragon 2 
num_voted_users                                                         221128
cast_total_facebook_likes                                                23378
actor_3_name                                                   America Ferrera
facenumber_in_poster                                                         5
plot_keywords                dragon|father son relationship|husband wife re...
movie_imdb_link              http://www.imdb.com/title/tt1646971/?ref_=fn_t...
num_user_for_reviews                                                       343
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.45e+08
title_year                                                                2014
actor_2_facebook_likes                                                    3000
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     46000
Name: 162, dtype: object
color                                                                    Color
director_name                                                      Alex Proyas
num_critic_for_reviews                                                     184
duration                                                                   126
director_facebook_likes                                                    295
actor_3_facebook_likes                                                     284
actor_2_name                                                       Elodie Yung
actor_1_facebook_likes                                                   18000
gross                                                              3.11411e+07
genres                                                Action|Adventure|Fantasy
actor_1_name                                                     Gerard Butler
movie_title                                                     Gods of Egypt 
num_voted_users                                                          51892
cast_total_facebook_likes                                                19769
actor_3_name                                                       Bryan Brown
facenumber_in_poster                                                         4
plot_keywords                ancient egypt|egypt|egyptian|egyptian god|egyp...
movie_imdb_link              http://www.imdb.com/title/tt2404233/?ref_=fn_t...
num_user_for_reviews                                                       273
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+08
title_year                                                                2016
actor_2_facebook_likes                                                     934
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     24000
Name: 163, dtype: object
color                                                                    Color
director_name                                                        Rob Cohen
num_critic_for_reviews                                                     145
duration                                                                   121
director_facebook_likes                                                    357
actor_3_facebook_likes                                                     653
actor_2_name                                                        Joe Morton
actor_1_facebook_likes                                                     820
gross                                                              3.17044e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                       Sam Shepard
movie_title                                                           Stealth 
num_voted_users                                                          45455
cast_total_facebook_likes                                                 2705
actor_3_name                                                  Richard Roxburgh
facenumber_in_poster                                                         0
plot_keywords                artificial intelligence|box office flop|fighte...
movie_imdb_link              http://www.imdb.com/title/tt0382992/?ref_=fn_t...
num_user_for_reviews                                                       388
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.35e+08
title_year                                                                2005
actor_2_facebook_likes                                                     780
imdb_score                                                                   5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 164, dtype: object
color                                                                    Color
director_name                                                      Zack Snyder
num_critic_for_reviews                                                     451
duration                                                                   215
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     413
actor_2_name                                                      Billy Crudup
actor_1_facebook_likes                                                     986
gross                                                              1.07503e+08
genres                                             Action|Drama|Mystery|Sci-Fi
actor_1_name                                                       Matt Frewer
movie_title                                                          Watchmen 
num_voted_users                                                         392474
cast_total_facebook_likes                                                 2530
actor_3_name                                                  Stephen McHattie
facenumber_in_poster                                                         1
plot_keywords                conspiracy|cynicism|false promise of the ameri...
movie_imdb_link              http://www.imdb.com/title/tt0409459/?ref_=fn_t...
num_user_for_reviews                                                      1229
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+08
title_year                                                                2009
actor_2_facebook_likes                                                     745
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 165, dtype: object
color                                                                    Color
director_name                                                   Richard Donner
num_critic_for_reviews                                                     141
duration                                                                   127
director_facebook_likes                                                    503
actor_3_facebook_likes                                                      91
actor_2_name                                                        Rene Russo
actor_1_facebook_likes                                                    5000
gross                                                              1.29735e+08
genres                                                   Action|Crime|Thriller
actor_1_name                                                            Jet Li
movie_title                                                   Lethal Weapon 4 
num_voted_users                                                         127497
cast_total_facebook_likes                                                 6171
actor_3_name                                                      Darlene Love
facenumber_in_poster                                                         2
plot_keywords                kung fu|lapd|martial arts|private investigator...
movie_imdb_link              http://www.imdb.com/title/tt0122151/?ref_=fn_t...
num_user_for_reviews                                                       287
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+08
title_year                                                                1998
actor_2_facebook_likes                                                     808
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 166, dtype: object
color                                                                    Color
director_name                                                          Ang Lee
num_critic_for_reviews                                                     267
duration                                                                   138
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     258
actor_2_name                                                        Regi Davis
actor_1_facebook_likes                                                     820
gross                                                              1.32123e+08
genres                                                           Action|Sci-Fi
actor_1_name                                                      Kevin Rankin
movie_title                                                              Hulk 
num_voted_users                                                         212106
cast_total_facebook_likes                                                 1814
actor_3_name                                                      Celia Weston
facenumber_in_poster                                                         0
plot_keywords                1980s|c 130 hercules|monster|panzer|san franci...
movie_imdb_link              http://www.imdb.com/title/tt0286716/?ref_=fn_t...
num_user_for_reviews                                                      1445
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.37e+08
title_year                                                                2003
actor_2_facebook_likes                                                     300
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 167, dtype: object
color                                                                    Color
director_name                                                       Jon M. Chu
num_critic_for_reviews                                                     351
duration                                                                   122
director_facebook_likes                                                    209
actor_3_facebook_likes                                                     934
actor_2_name                                                    Dwayne Johnson
actor_1_facebook_likes                                                   17000
gross                                                              1.22512e+08
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                    Channing Tatum
movie_title                                             G.I. Joe: Retaliation 
num_voted_users                                                         146352
cast_total_facebook_likes                                                31958
actor_3_name                                                       Elodie Yung
facenumber_in_poster                                                         6
plot_keywords                      general|gi joe|martial arts|ninja|president
movie_imdb_link              http://www.imdb.com/title/tt1583421/?ref_=fn_t...
num_user_for_reviews                                                       288
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+08
title_year                                                                2013
actor_2_facebook_likes                                                   12000
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     42000
Name: 168, dtype: object
color                                                                    Color
director_name                                                     Breck Eisner
num_critic_for_reviews                                                     163
duration                                                                   124
director_facebook_likes                                                     42
actor_3_facebook_likes                                                     848
actor_2_name                                                      Rainn Wilson
actor_1_facebook_likes                                                   11000
gross                                                              6.86425e+07
genres                                        Action|Adventure|Comedy|Thriller
actor_1_name                                               Matthew McConaughey
movie_title                                                            Sahara 
num_voted_users                                                          77673
cast_total_facebook_likes                                                13073
actor_3_name                                                      Delroy Lindo
facenumber_in_poster                                                         3
plot_keywords                             beach|civil war|desert|dictator|ship
movie_imdb_link              http://www.imdb.com/title/tt0318649/?ref_=fn_t...
num_user_for_reviews                                                       463
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.3e+08
title_year                                                                2005
actor_2_facebook_likes                                                     973
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 169, dtype: object
color                                                                    Color
director_name                                               Hironobu Sakaguchi
num_critic_for_reviews                                                     166
duration                                                                   106
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     422
actor_2_name                                                       Ming-Na Wen
actor_1_facebook_likes                                                   12000
gross                                                              3.21318e+07
genres                       Action|Adventure|Animation|Fantasy|Romance|Sci-Fi
actor_1_name                                                     Steve Buscemi
movie_title                                 Final Fantasy: The Spirits Within 
num_voted_users                                                          72259
cast_total_facebook_likes                                                15015
actor_3_name                                                      Jean Simmons
facenumber_in_poster                                                         1
plot_keywords                     general|military|scientist|soldier|year 2065
movie_imdb_link              http://www.imdb.com/title/tt0173840/?ref_=fn_t...
num_user_for_reviews                                                       788
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.37e+08
title_year                                                                2001
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 170, dtype: object
color                                                                    Color
director_name                                                     Joe Johnston
num_critic_for_reviews                                                     510
duration                                                                   124
director_facebook_likes                                                    394
actor_3_facebook_likes                                                    2000
actor_2_name                                                    Dominic Cooper
actor_1_facebook_likes                                                   11000
gross                                                              1.76637e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                       Chris Evans
movie_title                                Captain America: The First Avenger 
num_voted_users                                                         508818
cast_total_facebook_likes                                                19761
actor_3_name                                                     Hayley Atwell
facenumber_in_poster                                                         0
plot_keywords                arctic|captain america|scientist|tesseract|war...
movie_imdb_link              http://www.imdb.com/title/tt0458339/?ref_=fn_t...
num_user_for_reviews                                                       679
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+08
title_year                                                                2011
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     46000
Name: 171, dtype: object
color                                                                    Color
director_name                                                    Michael Apted
num_critic_for_reviews                                                     197
duration                                                                   128
director_facebook_likes                                                    150
actor_3_facebook_likes                                                     244
actor_2_name                                            Maria Grazia Cucinotta
actor_1_facebook_likes                                                     766
gross                                                              1.26931e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                      Colin Salmon
movie_title                                           The World Is Not Enough 
num_voted_users                                                         157519
cast_total_facebook_likes                                                 2037
actor_3_name                                                  Desmond Llewelyn
facenumber_in_poster                                                         2
plot_keywords                           british|oil|scientist|terrorist|tycoon
movie_imdb_link              http://www.imdb.com/title/tt0143145/?ref_=fn_t...
num_user_for_reviews                                                       683
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                1.35e+08
title_year                                                                1999
actor_2_facebook_likes                                                     536
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 172, dtype: object
color                                                                    Color
director_name                                                       Peter Weir
num_critic_for_reviews                                                     244
duration                                                                   138
director_facebook_likes                                                    608
actor_3_facebook_likes                                                     168
actor_2_name                                                       Lee Ingleby
actor_1_facebook_likes                                                     613
gross                                                              9.39264e+07
genres                                      Action|Adventure|Drama|History|War
actor_1_name                                                      James D'Arcy
movie_title                   Master and Commander: The Far Side of the World 
num_voted_users                                                         168207
cast_total_facebook_likes                                                 1205
actor_3_name                                                   David Threlfall
facenumber_in_poster                                                         1
plot_keywords                    1800s|napoleonic wars|pursuit|royal navy|ship
movie_imdb_link              http://www.imdb.com/title/tt0311113/?ref_=fn_t...
num_user_for_reviews                                                       684
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2003
actor_2_facebook_likes                                                     172
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 173, dtype: object
color                                                                    Color
director_name                                                      Bill Condon
num_critic_for_reviews                                                     322
duration                                                                   115
director_facebook_likes                                                    386
actor_3_facebook_likes                                                   12000
actor_2_name                                                   Kristen Stewart
actor_1_facebook_likes                                                   21000
gross                                                              2.92299e+08
genres                                         Adventure|Drama|Fantasy|Romance
actor_1_name                                                  Robert Pattinson
movie_title                         The Twilight Saga: Breaking Dawn - Part 2 
num_voted_users                                                         185394
cast_total_facebook_likes                                                59177
actor_3_name                                                    Taylor Lautner
facenumber_in_poster                                                         3
plot_keywords                      battle|friend|super strength|vampire|vision
movie_imdb_link              http://www.imdb.com/title/tt1673434/?ref_=fn_t...
num_user_for_reviews                                                       329
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+08
title_year                                                                2012
actor_2_facebook_likes                                                   17000
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     65000
Name: 174, dtype: object
color                                                                    Color
director_name                                                    George Miller
num_critic_for_reviews                                                     156
duration                                                                   100
director_facebook_likes                                                    750
actor_3_facebook_likes                                                     988
actor_2_name                                                         Brad Pitt
actor_1_facebook_likes                                                   49000
gross                                                              6.39923e+07
genres                                         Animation|Comedy|Family|Musical
actor_1_name                                                    Robin Williams
movie_title                                                      Happy Feet 2 
num_voted_users                                                          32399
cast_total_facebook_likes                                                62644
actor_3_name                                                            Common
facenumber_in_poster                                                         0
plot_keywords                               3d|antarctica|krill|penguin|sequel
movie_imdb_link              http://www.imdb.com/title/tt1402488/?ref_=fn_t...
num_user_for_reviews                                                        79
language                                                               English
country                                                              Australia
content_rating                                                              PG
budget                                                                1.35e+08
title_year                                                                2011
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 175, dtype: object
color                                                                    Color
director_name                                                  Louis Leterrier
num_critic_for_reviews                                                     354
duration                                                                   135
director_facebook_likes                                                    255
actor_3_facebook_likes                                                     882
actor_2_name                                                      Peter Mensah
actor_1_facebook_likes                                                    3000
gross                                                              1.34518e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                        Ty Burrell
movie_title                                               The Incredible Hulk 
num_voted_users                                                         326286
cast_total_facebook_likes                                                 5811
actor_3_name                                                      William Hurt
facenumber_in_poster                                                         0
plot_keywords                antidote|cure|hulk|marvel cinematic universe|o...
movie_imdb_link              http://www.imdb.com/title/tt0800080/?ref_=fn_t...
num_user_for_reviews                                                       643
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2008
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 176, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      21
duration                                                                    60
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     184
actor_2_name                                             Philip Michael Thomas
actor_1_facebook_likes                                                     982
gross                                                                      NaN
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                       Don Johnson
movie_title                                            Miami Vice             
num_voted_users                                                          16769
cast_total_facebook_likes                                                 1687
actor_3_name                                                        John Diehl
facenumber_in_poster                                                         2
plot_keywords                        cult tv|detective|drugs|police|undercover
movie_imdb_link              http://www.imdb.com/title/tt0086759/?ref_=fn_t...
num_user_for_reviews                                                        74
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                 1.5e+06
title_year                                                                 NaN
actor_2_facebook_likes                                                     321
imdb_score                                                                 7.5
aspect_ratio                                                              1.33
movie_facebook_likes                                                         0
Name: 177, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     252
duration                                                                   117
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     358
actor_2_name                                                   Penelope Wilton
actor_1_facebook_likes                                                     535
gross                                                              5.27923e+07
genres                                                Adventure|Family|Fantasy
actor_1_name                                                      Mark Rylance
movie_title                                                           The BFG 
num_voted_users                                                          12572
cast_total_facebook_likes                                                 1950
actor_3_name                                                        Rafe Spall
facenumber_in_poster                                                         0
plot_keywords                 cannibal|evil brother|giant|london england|queen
movie_imdb_link              http://www.imdb.com/title/tt3691740/?ref_=fn_t...
num_user_for_reviews                                                       106
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 1.4e+08
title_year                                                                2016
actor_2_facebook_likes                                                     400
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     27000
Name: 178, dtype: object
color                                                                    Color
director_name                                            Alejandro G. Iñárritu
num_critic_for_reviews                                                     556
duration                                                                   156
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     733
actor_2_name                                                         Tom Hardy
actor_1_facebook_likes                                                   29000
gross                                                              1.83636e+08
genres                                        Adventure|Drama|Thriller|Western
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                      The Revenant 
num_voted_users                                                         406020
cast_total_facebook_likes                                                57108
actor_3_name                                                        Lukas Haas
facenumber_in_poster                                                         0
plot_keywords                bear attack|cauterizing a wound|native america...
movie_imdb_link              http://www.imdb.com/title/tt1663202/?ref_=fn_t...
num_user_for_reviews                                                      1188
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.35e+08
title_year                                                                2015
actor_2_facebook_likes                                                   27000
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                    190000
Name: 179, dtype: object
color                                                                    Color
director_name                                                      David Soren
num_critic_for_reviews                                                     166
duration                                                                    96
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     463
actor_2_name                                                        Snoop Dogg
actor_1_facebook_likes                                                   16000
gross                                                              8.30249e+07
genres                                 Adventure|Animation|Comedy|Family|Sport
actor_1_name                                                     Ryan Reynolds
movie_title                                                             Turbo 
num_voted_users                                                          62424
cast_total_facebook_likes                                                17416
actor_3_name                                                      Ben Schwartz
facenumber_in_poster                                                         0
plot_keywords                      accident|freak accident|race|snail|underdog
movie_imdb_link              http://www.imdb.com/title/tt1860353/?ref_=fn_t...
num_user_for_reviews                                                        90
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.35e+08
title_year                                                                2013
actor_2_facebook_likes                                                     881
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 180, dtype: object
color                                                                    Color
director_name                                                   Gore Verbinski
num_critic_for_reviews                                                     362
duration                                                                   107
director_facebook_likes                                                    563
actor_3_facebook_likes                                                     939
actor_2_name                                                      Ray Winstone
actor_1_facebook_likes                                                   40000
gross                                                              1.23207e+08
genres                               Adventure|Animation|Comedy|Family|Western
actor_1_name                                                       Johnny Depp
movie_title                                                             Rango 
num_voted_users                                                         183208
cast_total_facebook_likes                                                43291
actor_3_name                                                      Stephen Root
facenumber_in_poster                                                         0
plot_keywords                      chameleon|lizard|sheriff|water|western town
movie_imdb_link              http://www.imdb.com/title/tt1192628/?ref_=fn_t...
num_user_for_reviews                                                       337
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.35e+08
title_year                                                                2011
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     26000
Name: 181, dtype: object
color                                                                    Color
director_name                                                     Eric Darnell
num_critic_for_reviews                                                     153
duration                                                                    92
director_facebook_likes                                                     35
actor_3_facebook_likes                                                     179
actor_2_name                                                    Annet Mahendru
actor_1_facebook_likes                                                   19000
gross                                                              8.33489e+07
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                              Benedict Cumberbatch
movie_title                                            Penguins of Madagascar 
num_voted_users                                                          60230
cast_total_facebook_likes                                                19963
actor_3_name                                                      Andy Richter
facenumber_in_poster                                                         0
plot_keywords                little girl|park|spy|statue of liberty|televis...
movie_imdb_link              http://www.imdb.com/title/tt1911658/?ref_=fn_t...
num_user_for_reviews                                                       118
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.32e+08
title_year                                                                2014
actor_2_facebook_likes                                                     411
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 182, dtype: object
color                                                                    Color
director_name                                                  Paul Greengrass
num_critic_for_reviews                                                     329
duration                                                                   115
director_facebook_likes                                                    521
actor_3_facebook_likes                                                     883
actor_2_name                                                     Edgar Ramírez
actor_1_facebook_likes                                                   13000
gross                                                              2.27137e+08
genres                                                 Action|Mystery|Thriller
actor_1_name                                                        Matt Damon
movie_title                                              The Bourne Ultimatum 
num_voted_users                                                         491077
cast_total_facebook_likes                                                17369
actor_3_name                                                     Albert Finney
facenumber_in_poster                                                         0
plot_keywords                       action hero|cia|dark past|flashback|memory
movie_imdb_link              http://www.imdb.com/title/tt0440963/?ref_=fn_t...
num_user_for_reviews                                                       820
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+08
title_year                                                                2007
actor_2_facebook_likes                                                     897
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 183, dtype: object
color                                                                    Color
director_name                                                     Mark Osborne
num_critic_for_reviews                                                     266
duration                                                                    92
director_facebook_likes                                                     54
actor_3_facebook_likes                                                     562
actor_2_name                                                      Wayne Knight
actor_1_facebook_likes                                                   11000
gross                                                              2.15395e+08
genres                                Action|Adventure|Animation|Comedy|Family
actor_1_name                                               Angelina Jolie Pitt
movie_title                                                     Kung Fu Panda 
num_voted_users                                                         307029
cast_total_facebook_likes                                                12754
actor_3_name                                                        Dan Fogler
facenumber_in_poster                                                         0
plot_keywords                 kung fu|kung fu master|master|panda|snow leopard
movie_imdb_link              http://www.imdb.com/title/tt0441773/?ref_=fn_t...
num_user_for_reviews                                                       360
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.3e+08
title_year                                                                2008
actor_2_facebook_likes                                                     967
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                      6000
Name: 184, dtype: object
color                                                                    Color
director_name                                                      Peyton Reed
num_critic_for_reviews                                                     517
duration                                                                   117
director_facebook_likes                                                    235
actor_3_facebook_likes                                                     680
actor_2_name                                                     Hayley Atwell
actor_1_facebook_likes                                                    2000
gross                                                              1.80192e+08
genres                                          Action|Adventure|Comedy|Sci-Fi
actor_1_name                                                        Judy Greer
movie_title                                                           Ant-Man 
num_voted_users                                                         313866
cast_total_facebook_likes                                                 5730
actor_3_name                                                              T.I.
facenumber_in_poster                                                         6
plot_keywords                 ant|chinatown san francisco|heist|sabotage|vault
movie_imdb_link              http://www.imdb.com/title/tt0478970/?ref_=fn_t...
num_user_for_reviews                                                       549
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+08
title_year                                                                2015
actor_2_facebook_likes                                                    2000
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     61000
Name: 185, dtype: object
color                                                                    Color
director_name                                                 Francis Lawrence
num_critic_for_reviews                                                     502
duration                                                                   146
director_facebook_likes                                                    508
actor_3_facebook_likes                                                     523
actor_2_name                                                   Josh Hutcherson
actor_1_facebook_likes                                                   34000
gross                                                              4.24646e+08
genres                                               Adventure|Sci-Fi|Thriller
actor_1_name                                                 Jennifer Lawrence
movie_title                                   The Hunger Games: Catching Fire 
num_voted_users                                                         498397
cast_total_facebook_likes                                                49355
actor_3_name                                             Sandra Ellis Lafferty
facenumber_in_poster                                                         1
plot_keywords                          president|snow|television|tour|uprising
movie_imdb_link              http://www.imdb.com/title/tt1951264/?ref_=fn_t...
num_user_for_reviews                                                       706
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+08
title_year                                                                2013
actor_2_facebook_likes                                                   14000
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     82000
Name: 186, dtype: object
color                                                                    Color
director_name                                                      Bill Condon
num_critic_for_reviews                                                     322
duration                                                                   115
director_facebook_likes                                                    386
actor_3_facebook_likes                                                   12000
actor_2_name                                                   Kristen Stewart
actor_1_facebook_likes                                                   21000
gross                                                              2.92299e+08
genres                                         Adventure|Drama|Fantasy|Romance
actor_1_name                                                  Robert Pattinson
movie_title                         The Twilight Saga: Breaking Dawn - Part 2 
num_voted_users                                                         185394
cast_total_facebook_likes                                                59177
actor_3_name                                                    Taylor Lautner
facenumber_in_poster                                                         3
plot_keywords                      battle|friend|super strength|vampire|vision
movie_imdb_link              http://www.imdb.com/title/tt1673434/?ref_=fn_t...
num_user_for_reviews                                                       329
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+08
title_year                                                                2012
actor_2_facebook_likes                                                   17000
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     65000
Name: 187, dtype: object
color                                                                    Color
director_name                                                      Tim Johnson
num_critic_for_reviews                                                     165
duration                                                                    94
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     183
actor_2_name                                                        Matt Jones
actor_1_facebook_likes                                                   17000
gross                                                              1.77344e+08
genres                        Adventure|Animation|Comedy|Family|Fantasy|Sci-Fi
actor_1_name                                                       Jim Parsons
movie_title                                                              Home 
num_voted_users                                                          70121
cast_total_facebook_likes                                                17883
actor_3_name                                                    April Winchell
facenumber_in_poster                                                         0
plot_keywords                alien friendship|alien invasion|australia|flyi...
movie_imdb_link              http://www.imdb.com/title/tt2224026/?ref_=fn_t...
num_user_for_reviews                                                       214
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.35e+08
title_year                                                                2015
actor_2_facebook_likes                                                     523
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     26000
Name: 188, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     401
duration                                                                   116
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     807
actor_2_name                                                   Lisa Ann Walter
actor_1_facebook_likes                                                   10000
gross                                                              2.34277e+08
genres                                               Adventure|Sci-Fi|Thriller
actor_1_name                                                        Tom Cruise
movie_title                                                 War of the Worlds 
num_voted_users                                                         334345
cast_total_facebook_likes                                                12758
actor_3_name                                                     Rick Gonzalez
facenumber_in_poster                                                         0
plot_keywords                                alien|fight|storm|survival|tripod
movie_imdb_link              http://www.imdb.com/title/tt0407304/?ref_=fn_t...
num_user_for_reviews                                                      2741
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.32e+08
title_year                                                                2005
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 189, dtype: object
color                                                                    Color
director_name                                                      Michael Bay
num_critic_for_reviews                                                      94
duration                                                                   147
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     877
actor_2_name                                                     Henry Rollins
actor_1_facebook_likes                                                   10000
gross                                                              1.38397e+08
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                                        Will Smith
movie_title                                                       Bad Boys II 
num_voted_users                                                         178126
cast_total_facebook_likes                                                12954
actor_3_name                                                       Jordi Mollà
facenumber_in_poster                                                         1
plot_keywords                                  cuba|dea|drugs|money|undercover
movie_imdb_link              http://www.imdb.com/title/tt0172156/?ref_=fn_t...
num_user_for_reviews                                                       511
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+08
title_year                                                                2003
actor_2_facebook_likes                                                     898
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 190, dtype: object
color                                                                    Color
director_name                                                     Chris Miller
num_critic_for_reviews                                                     246
duration                                                                    90
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     397
actor_2_name                                                   Constance Marie
actor_1_facebook_likes                                                    4000
gross                                                              1.49235e+08
genres                        Action|Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                       Salma Hayek
movie_title                                                     Puss in Boots 
num_voted_users                                                         114287
cast_total_facebook_likes                                                 5046
actor_3_name                                                       Amy Sedaris
facenumber_in_poster                                                         0
plot_keywords                                   betrayal|egg|friend|goose|hero
movie_imdb_link              http://www.imdb.com/title/tt0448694/?ref_=fn_t...
num_user_for_reviews                                                       137
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.3e+08
title_year                                                                2011
actor_2_facebook_likes                                                     442
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 191, dtype: object
color                                                                    Color
director_name                                                    Phillip Noyce
num_critic_for_reviews                                                     330
duration                                                                   101
director_facebook_likes                                                    176
actor_3_facebook_likes                                                     282
actor_2_name                                                    Andre Braugher
actor_1_facebook_likes                                                   11000
gross                                                              1.18311e+08
genres                                           Action|Crime|Mystery|Thriller
actor_1_name                                               Angelina Jolie Pitt
movie_title                                                              Salt 
num_voted_users                                                         245621
cast_total_facebook_likes                                                12406
actor_3_name                                                      August Diehl
facenumber_in_poster                                                         1
plot_keywords                cia|on the run|russian|russian spy|strong fema...
movie_imdb_link              http://www.imdb.com/title/tt0944835/?ref_=fn_t...
num_user_for_reviews                                                       514
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+08
title_year                                                                2010
actor_2_facebook_likes                                                     702
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     23000
Name: 192, dtype: object
color                                                                    Color
director_name                                                 Darren Aronofsky
num_critic_for_reviews                                                     434
duration                                                                   138
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    8000
actor_2_name                                                       Emma Watson
actor_1_facebook_likes                                                   12000
gross                                                              1.01161e+08
genres                                                  Action|Adventure|Drama
actor_1_name                                                   Anthony Hopkins
movie_title                                                              Noah 
num_voted_users                                                         200022
cast_total_facebook_likes                                                32355
actor_3_name                                                      Logan Lerman
facenumber_in_poster                                                         2
plot_keywords                          ark|flood|noah's ark|water|wrath of god
movie_imdb_link              http://www.imdb.com/title/tt1959490/?ref_=fn_t...
num_user_for_reviews                                                      1240
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+08
title_year                                                                2014
actor_2_facebook_likes                                                    9000
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     71000
Name: 193, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     440
duration                                                                   107
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     845
actor_2_name                                                   Mackenzie Crook
actor_1_facebook_likes                                                    2000
gross                                                               7.7564e+07
genres                                         Action|Adventure|Family|Mystery
actor_1_name                                                        Toby Jones
movie_title                                          The Adventures of Tintin 
num_voted_users                                                         177383
cast_total_facebook_likes                                                 4631
actor_3_name                                                       Tony Curran
facenumber_in_poster                                                         1
plot_keywords                             captain|morocco|ship|tintin|treasure
movie_imdb_link              http://www.imdb.com/title/tt0983193/?ref_=fn_t...
num_user_for_reviews                                                       447
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.35e+08
title_year                                                                2011
actor_2_facebook_likes                                                     871
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     44000
Name: 194, dtype: object
color                                                                    Color
director_name                                                   Alfonso Cuarón
num_critic_for_reviews                                                     274
duration                                                                   142
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   10000
actor_2_name                                                       Gary Oldman
actor_1_facebook_likes                                                   11000
gross                                                              2.49359e+08
genres                                        Adventure|Family|Fantasy|Mystery
actor_1_name                                                  Daniel Radcliffe
movie_title                          Harry Potter and the Prisoner of Azkaban 
num_voted_users                                                         382255
cast_total_facebook_likes                                                33284
actor_3_name                                                      Rupert Grint
facenumber_in_poster                                                         3
plot_keywords                        magic|muggle|serial killer|traitor|wizard
movie_imdb_link              http://www.imdb.com/title/tt0304141/?ref_=fn_t...
num_user_for_reviews                                                      1504
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 1.3e+08
title_year                                                                2004
actor_2_facebook_likes                                                   10000
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 195, dtype: object
color                                                                    Color
director_name                                                     Baz Luhrmann
num_critic_for_reviews                                                     245
duration                                                                   165
director_facebook_likes                                                   1000
actor_3_facebook_likes                                                     165
actor_2_name                                                       Bryan Brown
actor_1_facebook_likes                                                     309
gross                                                              4.95517e+07
genres                                             Adventure|Drama|Romance|War
actor_1_name                                                       Essie Davis
movie_title                                                         Australia 
num_voted_users                                                         102338
cast_total_facebook_likes                                                  921
actor_3_name                                                       Eddie Baroo
facenumber_in_poster                                                         0
plot_keywords                          australia|cattle|darwin|drover|japanese
movie_imdb_link              http://www.imdb.com/title/tt0455824/?ref_=fn_t...
num_user_for_reviews                                                       450
language                                                               English
country                                                              Australia
content_rating                                                           PG-13
budget                                                                 1.3e+08
title_year                                                                2008
actor_2_facebook_likes                                                     284
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 196, dtype: object
color                                                                    Color
director_name                                               M. Night Shyamalan
num_critic_for_reviews                                                     349
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     894
actor_2_name                                                       Zoë Kravitz
actor_1_facebook_likes                                                   10000
gross                                                              6.05221e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                        Will Smith
movie_title                                                       After Earth 
num_voted_users                                                         158720
cast_total_facebook_likes                                                14168
actor_3_name                                                   Glenn Morshower
facenumber_in_poster                                                         0
plot_keywords                box office flop|father son team|fear|race agai...
movie_imdb_link              http://www.imdb.com/title/tt1815862/?ref_=fn_t...
num_user_for_reviews                                                       744
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+08
title_year                                                                2013
actor_2_facebook_likes                                                     943
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     37000
Name: 197, dtype: object
color                                                                    Color
director_name                                                    Eric Leighton
num_critic_for_reviews                                                     145
duration                                                                    82
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     388
actor_2_name                                                      D.B. Sweeney
actor_1_facebook_likes                                                    1000
gross                                                              1.37748e+08
genres                                     Adventure|Animation|Family|Thriller
actor_1_name                                                     Alfre Woodard
movie_title                                                          Dinosaur 
num_voted_users                                                          38438
cast_total_facebook_likes                                                 2945
actor_3_name                                                       Della Reese
facenumber_in_poster                                                         1
plot_keywords                       egg|iguanodon|lemur|meteor|nesting grounds
movie_imdb_link              http://www.imdb.com/title/tt0130623/?ref_=fn_t...
num_user_for_reviews                                                       241
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                               1.275e+08
title_year                                                                2000
actor_2_facebook_likes                                                     558
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 198, dtype: object
color                                                                    Color
director_name                                                       Matt Birch
num_critic_for_reviews                                                       1
duration                                                                   NaN
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     159
actor_2_name                                                       Dave Legeno
actor_1_facebook_likes                                                   10000
gross                                                                      NaN
genres                                                          Action|Fantasy
actor_1_name                                                      Rupert Grint
movie_title                     Harry Potter and the Deathly Hallows: Part II 
num_voted_users                                                            381
cast_total_facebook_likes                                                11036
actor_3_name                                                      Ralph Ineson
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1680310/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2011
actor_2_facebook_likes                                                     570
imdb_score                                                                 7.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                        40
Name: 199, dtype: object
color                                                                    Color
director_name                                                       Shawn Levy
num_critic_for_reviews                                                     154
duration                                                                    98
director_facebook_likes                                                    189
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Rami Malek
actor_1_facebook_likes                                                   49000
gross                                                              1.13734e+08
genres                                         Adventure|Comedy|Family|Fantasy
actor_1_name                                                    Robin Williams
movie_title                           Night at the Museum: Secret of the Tomb 
num_voted_users                                                          67223
cast_total_facebook_likes                                                53587
actor_3_name                                                      Steve Coogan
facenumber_in_poster                                                         7
plot_keywords                museum|museum of natural history manhattan new...
movie_imdb_link              http://www.imdb.com/title/tt2692250/?ref_=fn_t...
num_user_for_reviews                                                       126
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.27e+08
title_year                                                                2014
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 200, dtype: object
color                                                                    Color
director_name                                                      Tom McGrath
num_critic_for_reviews                                                     233
duration                                                                    95
director_facebook_likes                                                     96
actor_3_facebook_likes                                                    8000
actor_2_name                                                         Brad Pitt
actor_1_facebook_likes                                                   24000
gross                                                              1.48338e+08
genres                                   Action|Animation|Comedy|Family|Sci-Fi
actor_1_name                                                      J.K. Simmons
movie_title                                                          Megamind 
num_voted_users                                                         172754
cast_total_facebook_likes                                                46120
actor_3_name                                                      Will Ferrell
facenumber_in_poster                                                         3
plot_keywords                              battle|city|planet|prison|superhero
movie_imdb_link              http://www.imdb.com/title/tt1001526/?ref_=fn_t...
num_user_for_reviews                                                       187
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.3e+08
title_year                                                                2010
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 201, dtype: object
color                                                                    Color
director_name                                                   Chris Columbus
num_critic_for_reviews                                                     258
duration                                                                   159
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     645
actor_2_name                                                        Fiona Shaw
actor_1_facebook_likes                                                   11000
gross                                                              3.17558e+08
genres                                                Adventure|Family|Fantasy
actor_1_name                                                  Daniel Radcliffe
movie_title                             Harry Potter and the Sorcerer's Stone 
num_voted_users                                                         444683
cast_total_facebook_likes                                                13191
actor_3_name                                                      Verne Troyer
facenumber_in_poster                                                         4
plot_keywords                based on novel|birthday|evil wizard|quidditch|...
movie_imdb_link              http://www.imdb.com/title/tt0241527/?ref_=fn_t...
num_user_for_reviews                                                      1571
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                1.25e+08
title_year                                                                2001
actor_2_facebook_likes                                                     687
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 202, dtype: object
color                                                                    Color
director_name                                                 Robert Schwentke
num_critic_for_reviews                                                     208
duration                                                                    96
director_facebook_likes                                                    124
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Jeff Bridges
actor_1_facebook_likes                                                   16000
gross                                                              3.35924e+07
genres                                                   Action|Comedy|Fantasy
actor_1_name                                                     Ryan Reynolds
movie_title                                                          R.I.P.D. 
num_voted_users                                                          91640
cast_total_facebook_likes                                                31549
actor_3_name                                                 Stephanie Szostak
facenumber_in_poster                                                         2
plot_keywords                           drug dealer|gold|partner|police|undead
movie_imdb_link              http://www.imdb.com/title/tt0790736/?ref_=fn_t...
num_user_for_reviews                                                       210
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+08
title_year                                                                2013
actor_2_facebook_likes                                                   12000
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     20000
Name: 203, dtype: object
color                                                                    Color
director_name                                                     Hideaki Anno
num_critic_for_reviews                                                       1
duration                                                                   120
director_facebook_likes                                                     28
actor_3_facebook_likes                                                      12
actor_2_name                                                 Shin'ya Tsukamoto
actor_1_facebook_likes                                                     544
gross                                                                      NaN
genres                                    Action|Adventure|Drama|Horror|Sci-Fi
actor_1_name                                                     Mark Chinnery
movie_title                                               Godzilla Resurgence 
num_voted_users                                                            374
cast_total_facebook_likes                                                  699
actor_3_name                                                      Atsuko Maeda
facenumber_in_poster                                                         0
plot_keywords                                    blood|godzilla|monster|sequel
movie_imdb_link              http://www.imdb.com/title/tt4262980/?ref_=fn_t...
num_user_for_reviews                                                        13
language                                                              Japanese
country                                                                  Japan
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2016
actor_2_facebook_likes                                                     106
imdb_score                                                                 8.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 204, dtype: object
color                                                                    Color
director_name                                                   Gore Verbinski
num_critic_for_reviews                                                     271
duration                                                                   143
director_facebook_likes                                                    563
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Orlando Bloom
actor_1_facebook_likes                                                   40000
gross                                                              3.05389e+08
genres                                                Action|Adventure|Fantasy
actor_1_name                                                       Johnny Depp
movie_title                  Pirates of the Caribbean: The Curse of the Bla...
num_voted_users                                                         809474
cast_total_facebook_likes                                                48184
actor_3_name                                                    Jack Davenport
facenumber_in_poster                                                         3
plot_keywords                           caribbean|curse|governor|pirate|undead
movie_imdb_link              http://www.imdb.com/title/tt0325980/?ref_=fn_t...
num_user_for_reviews                                                      2113
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+08
title_year                                                                2003
actor_2_facebook_likes                                                    5000
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 205, dtype: object
color                                                                    Color
director_name                                                       Matt Birch
num_critic_for_reviews                                                       4
duration                                                                   NaN
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Toby Jones
actor_1_facebook_likes                                                   10000
gross                                                                      NaN
genres                                                                 Fantasy
actor_1_name                                                      Rupert Grint
movie_title                      Harry Potter and the Deathly Hallows: Part I 
num_voted_users                                                            252
cast_total_facebook_likes                                                14719
actor_3_name                                                      Alfred Enoch
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1571403/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                        25
Name: 206, dtype: object
color                                                                    Color
director_name                                                 Francis Lawrence
num_critic_for_reviews                                                     403
duration                                                                   123
director_facebook_likes                                                    508
actor_3_facebook_likes                                                   14000
actor_2_name                                            Philip Seymour Hoffman
actor_1_facebook_likes                                                   34000
gross                                                              3.37104e+08
genres                                               Adventure|Sci-Fi|Thriller
actor_1_name                                                 Jennifer Lawrence
movie_title                             The Hunger Games: Mockingjay - Part 1 
num_voted_users                                                         305008
cast_total_facebook_likes                                                81385
actor_3_name                                                   Josh Hutcherson
facenumber_in_poster                                                         1
plot_keywords                based on young adult novel|manipulation|rebell...
movie_imdb_link              http://www.imdb.com/title/tt1951265/?ref_=fn_t...
num_user_for_reviews                                                       591
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+08
title_year                                                                2014
actor_2_facebook_likes                                                   22000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     52000
Name: 207, dtype: object
color                                                                    Color
director_name                                                       Ron Howard
num_critic_for_reviews                                                     294
duration                                                                   174
director_facebook_likes                                                   2000
actor_3_facebook_likes                                                     362
actor_2_name                                                        Seth Gabel
actor_1_facebook_likes                                                   15000
gross                                                              2.17536e+08
genres                                                        Mystery|Thriller
actor_1_name                                                         Tom Hanks
movie_title                                                 The Da Vinci Code 
num_voted_users                                                         314253
cast_total_facebook_likes                                                16008
actor_3_name                                                   Jürgen Prochnow
facenumber_in_poster                                                         2
plot_keywords                based on supposedly true story|holy grail|mary...
movie_imdb_link              http://www.imdb.com/title/tt0382625/?ref_=fn_t...
num_user_for_reviews                                                      1966
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+08
title_year                                                                2006
actor_2_facebook_likes                                                     574
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 208, dtype: object
color                                                                    Color
director_name                                                  Carlos Saldanha
num_critic_for_reviews                                                     159
duration                                                                   101
director_facebook_likes                                                    107
actor_3_facebook_likes                                                      56
actor_2_name                                                       Rachel Crow
actor_1_facebook_likes                                                     688
gross                                                              1.31536e+08
genres                               Adventure|Animation|Comedy|Family|Musical
actor_1_name                                                     Miguel Ferrer
movie_title                                                             Rio 2 
num_voted_users                                                          58498
cast_total_facebook_likes                                                 1031
actor_3_name                                                    Jeffrey Garcia
facenumber_in_poster                                                         0
plot_keywords                amazon|bird|father in law|jungle|no opening cr...
movie_imdb_link              http://www.imdb.com/title/tt2357291/?ref_=fn_t...
num_user_for_reviews                                                        99
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                1.03e+08
title_year                                                                2014
actor_2_facebook_likes                                                     237
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 209, dtype: object
color                                                                    Color
director_name                                                     Bryan Singer
num_critic_for_reviews                                                     289
duration                                                                   134
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     346
actor_2_name                                                     Bruce Davison
actor_1_facebook_likes                                                   20000
gross                                                              2.14949e+08
genres                                Action|Adventure|Fantasy|Sci-Fi|Thriller
actor_1_name                                                      Hugh Jackman
movie_title                                                           X-Men 2 
num_voted_users                                                         405973
cast_total_facebook_likes                                                20952
actor_3_name                                                    Aaron Stanford
facenumber_in_poster                                                         4
plot_keywords                             mutant|prison|professor|school|x men
movie_imdb_link              http://www.imdb.com/title/tt0290334/?ref_=fn_t...
num_user_for_reviews                                                      1055
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                 1.1e+08
title_year                                                                2003
actor_2_facebook_likes                                                     505
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 210, dtype: object
color                                                                    Color
director_name                                                       Justin Lin
num_critic_for_reviews                                                     342
duration                                                                   132
director_facebook_likes                                                    681
actor_3_facebook_likes                                                   12000
actor_2_name                                                        Vin Diesel
actor_1_facebook_likes                                                   23000
gross                                                              2.09805e+08
genres                                                   Action|Crime|Thriller
actor_1_name                                                       Paul Walker
movie_title                                                         Fast Five 
num_voted_users                                                         284792
cast_total_facebook_likes                                                55345
actor_3_name                                                    Dwayne Johnson
facenumber_in_poster                                                         3
plot_keywords                       drug lord|drugs|federal agent|heist|police
movie_imdb_link              http://www.imdb.com/title/tt1596343/?ref_=fn_t...
num_user_for_reviews                                                       366
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+08
title_year                                                                2011
actor_2_facebook_likes                                                   14000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     54000
Name: 211, dtype: object
color                                                                    Color
director_name                                                      Guy Ritchie
num_critic_for_reviews                                                     382
duration                                                                   129
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     154
actor_2_name                                                      Eddie Marsan
actor_1_facebook_likes                                                   21000
gross                                                              1.86831e+08
genres                                 Action|Adventure|Crime|Mystery|Thriller
actor_1_name                                                 Robert Downey Jr.
movie_title                                Sherlock Holmes: A Game of Shadows 
num_voted_users                                                         338635
cast_total_facebook_likes                                                22403
actor_3_name                                                     Paul Anderson
facenumber_in_poster                                                         2
plot_keywords                factory|gypsy|investigation|sherlock holmes|train
movie_imdb_link              http://www.imdb.com/title/tt1515091/?ref_=fn_t...
num_user_for_reviews                                                       412
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+08
title_year                                                                2011
actor_2_facebook_likes                                                     979
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     39000
Name: 212, dtype: object
color                                                                    Color
director_name                                                  Louis Leterrier
num_critic_for_reviews                                                     344
duration                                                                   106
director_facebook_likes                                                    255
actor_3_facebook_likes                                                     850
actor_2_name                                                     Jason Flemyng
actor_1_facebook_likes                                                   14000
gross                                                              1.63192e+08
genres                                                Action|Adventure|Fantasy
actor_1_name                                                       Liam Neeson
movie_title                                               Clash of the Titans 
num_voted_users                                                         229679
cast_total_facebook_likes                                                18003
actor_3_name                                                     Alexa Davalos
facenumber_in_poster                                                         0
plot_keywords                 famous line|hand to hand combat|kraken|rape|zeus
movie_imdb_link              http://www.imdb.com/title/tt0800320/?ref_=fn_t...
num_user_for_reviews                                                       637
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+08
title_year                                                                2010
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 213, dtype: object
color                                                                    Color
director_name                                                   Paul Verhoeven
num_critic_for_reviews                                                     196
duration                                                                   113
director_facebook_likes                                                    719
actor_3_facebook_likes                                                     217
actor_2_name                                                    Rachel Ticotin
actor_1_facebook_likes                                                     605
gross                                                              1.19413e+08
genres                                                           Action|Sci-Fi
actor_1_name                                                         Ronny Cox
movie_title                                                      Total Recall 
num_voted_users                                                         240241
cast_total_facebook_likes                                                 1441
actor_3_name                                                     Marshall Bell
facenumber_in_poster                                                         0
plot_keywords                ambiguous ending|false memory|implanted memory...
movie_imdb_link              http://www.imdb.com/title/tt0100802/?ref_=fn_t...
num_user_for_reviews                                                       391
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                1990
actor_2_facebook_likes                                                     308
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 214, dtype: object
color                                                                    Color
director_name                                                   John McTiernan
num_critic_for_reviews                                                      85
duration                                                                   102
director_facebook_likes                                                    323
actor_3_facebook_likes                                                     241
actor_2_name                                                   Vladimir Kulich
actor_1_facebook_likes                                                     845
gross                                                              3.26948e+07
genres                                                Action|Adventure|History
actor_1_name                                                       Tony Curran
movie_title                                                  The 13th Warrior 
num_voted_users                                                         101411
cast_total_facebook_likes                                                 1815
actor_3_name                                                     Clive Russell
facenumber_in_poster                                                         1
plot_keywords                                arab|battle|combat|viking|warrior
movie_imdb_link              http://www.imdb.com/title/tt0120657/?ref_=fn_t...
num_user_for_reviews                                                       546
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     372
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 215, dtype: object
color                                                                    Color
director_name                                                      Tony Gilroy
num_critic_for_reviews                                                     436
duration                                                                   135
director_facebook_likes                                                    209
actor_3_facebook_likes                                                     602
actor_2_name                                                       Scott Glenn
actor_1_facebook_likes                                                   10000
gross                                                              1.13166e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                     Jeremy Renner
movie_title                                                 The Bourne Legacy 
num_voted_users                                                         229823
cast_total_facebook_likes                                                12175
actor_3_name                                                       Stacy Keach
facenumber_in_poster                                                         0
plot_keywords                                     assassin|cia|drone|pill|wolf
movie_imdb_link              http://www.imdb.com/title/tt1194173/?ref_=fn_t...
num_user_for_reviews                                                       504
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+08
title_year                                                                2012
actor_2_facebook_likes                                                     826
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     31000
Name: 216, dtype: object
color                                                                    Color
director_name                                                  Joel Schumacher
num_critic_for_reviews                                                     183
duration                                                                   125
director_facebook_likes                                                    541
actor_3_facebook_likes                                                     409
actor_2_name                                                     Vivica A. Fox
actor_1_facebook_likes                                                     920
gross                                                              1.07285e+08
genres                                                                  Action
actor_1_name                                                     Michael Gough
movie_title                                                    Batman & Robin 
num_voted_users                                                         189855
cast_total_facebook_likes                                                 2699
actor_3_name                                                       John Glover
facenumber_in_poster                                                         3
plot_keywords                      butler|critically bashed|cure|freeze|gotham
movie_imdb_link              http://www.imdb.com/title/tt0118688/?ref_=fn_t...
num_user_for_reviews                                                      1018
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+08
title_year                                                                1997
actor_2_facebook_likes                                                     890
imdb_score                                                                 3.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 217, dtype: object
color                                                                    Color
director_name                                                       Ron Howard
num_critic_for_reviews                                                     175
duration                                                                   110
director_facebook_likes                                                   2000
actor_3_facebook_likes                                                     636
actor_2_name                                                        T.J. Thyne
actor_1_facebook_likes                                                    1000
gross                                                              2.60031e+08
genres                                                   Comedy|Family|Fantasy
actor_1_name                                                      Clint Howard
movie_title                                    How the Grinch Stole Christmas 
num_voted_users                                                         141414
cast_total_facebook_likes                                                 4146
actor_3_name                                                     Molly Shannon
facenumber_in_poster                                                         0
plot_keywords                box office hit|christmas|materialism|public hu...
movie_imdb_link              http://www.imdb.com/title/tt0170016/?ref_=fn_t...
num_user_for_reviews                                                       482
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.23e+08
title_year                                                                2000
actor_2_facebook_likes                                                     722
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 218, dtype: object
color                                                                    Color
director_name                                                  Roland Emmerich
num_critic_for_reviews                                                     239
duration                                                                   124
director_facebook_likes                                                    776
actor_3_facebook_likes                                                     812
actor_2_name                                                      Dennis Quaid
actor_1_facebook_likes                                                   15000
gross                                                               1.8674e+08
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                   Jake Gyllenhaal
movie_title                                            The Day After Tomorrow 
num_voted_users                                                         333248
cast_total_facebook_likes                                                20553
actor_3_name                                                         Sela Ward
facenumber_in_poster                                                         0
plot_keywords                climate|end of the world|global warming|natura...
movie_imdb_link              http://www.imdb.com/title/tt0319262/?ref_=fn_t...
num_user_for_reviews                                                      1159
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+08
title_year                                                                2004
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     19000
Name: 219, dtype: object
color                                                                    Color
director_name                                                         John Woo
num_critic_for_reviews                                                     237
duration                                                                   123
director_facebook_likes                                                    610
actor_3_facebook_likes                                                     653
actor_2_name                                                     Dougray Scott
actor_1_facebook_likes                                                   10000
gross                                                              2.15397e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                        Tom Cruise
movie_title                                            Mission: Impossible II 
num_voted_users                                                         242188
cast_total_facebook_likes                                                11930
actor_3_name                                                  Richard Roxburgh
facenumber_in_poster                                                         0
plot_keywords                               cure|mission|terrorist|thief|virus
movie_imdb_link              http://www.imdb.com/title/tt0120755/?ref_=fn_t...
num_user_for_reviews                                                      1426
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+08
title_year                                                                2000
actor_2_facebook_likes                                                     794
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 220, dtype: object
color                                                                    Color
director_name                                                Wolfgang Petersen
num_critic_for_reviews                                                     231
duration                                                                   130
director_facebook_likes                                                    249
actor_3_facebook_likes                                                     461
actor_2_name                                       Mary Elizabeth Mastrantonio
actor_1_facebook_likes                                                     784
gross                                                              1.82618e+08
genres                                         Action|Adventure|Drama|Thriller
actor_1_name                                                       Karen Allen
movie_title                                                 The Perfect Storm 
num_voted_users                                                         133076
cast_total_facebook_likes                                                 2684
actor_3_name                                                        Bob Gunton
facenumber_in_poster                                                         0
plot_keywords                                     death|fish|fishing|sea|storm
movie_imdb_link              http://www.imdb.com/title/tt0177971/?ref_=fn_t...
num_user_for_reviews                                                       779
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+08
title_year                                                                2000
actor_2_facebook_likes                                                     638
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 221, dtype: object
color                                                                    Color
director_name                                                        Tim Story
num_critic_for_reviews                                                     262
duration                                                                    92
director_facebook_likes                                                    167
actor_3_facebook_likes                                                     702
actor_2_name                                                     Ioan Gruffudd
actor_1_facebook_likes                                                   11000
gross                                                               1.3192e+08
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                       Chris Evans
movie_title                            Fantastic 4: Rise of the Silver Surfer 
num_voted_users                                                         213275
cast_total_facebook_likes                                                15302
actor_3_name                                                    Andre Braugher
facenumber_in_poster                                                         3
plot_keywords                fantastic four|space|strong female character|s...
movie_imdb_link              http://www.imdb.com/title/tt0486576/?ref_=fn_t...
num_user_for_reviews                                                       436
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.3e+08
title_year                                                                2007
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 222, dtype: object
color                                                                    Color
director_name                                                          Ang Lee
num_critic_for_reviews                                                     552
duration                                                                   127
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     341
actor_2_name                                                        Rafe Spall
actor_1_facebook_likes                                                     774
gross                                                              1.24977e+08
genres                                                 Adventure|Drama|Fantasy
actor_1_name                                                      Suraj Sharma
movie_title                                                        Life of Pi 
num_voted_users                                                         440084
cast_total_facebook_likes                                                 2121
actor_3_name                                                              Tabu
facenumber_in_poster                                                         0
plot_keywords                                 animal|faith|india|journey|tiger
movie_imdb_link              http://www.imdb.com/title/tt0454876/?ref_=fn_t...
num_user_for_reviews                                                       755
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+08
title_year                                                                2012
actor_2_facebook_likes                                                     358
imdb_score                                                                   8
aspect_ratio                                                              1.85
movie_facebook_likes                                                    122000
Name: 223, dtype: object
color                                                                    Color
director_name                                              Mark Steven Johnson
num_critic_for_reviews                                                     276
duration                                                                   123
director_facebook_likes                                                    160
actor_3_facebook_likes                                                     402
actor_2_name                                                         Matt Long
actor_1_facebook_likes                                                   12000
gross                                                              1.15803e+08
genres                                                 Action|Fantasy|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                                       Ghost Rider 
num_voted_users                                                         182661
cast_total_facebook_likes                                                14017
actor_3_name                                                       Peter Fonda
facenumber_in_poster                                                         1
plot_keywords                     blackheart|devil|father|ghost|mephistopheles
movie_imdb_link              http://www.imdb.com/title/tt0259324/?ref_=fn_t...
num_user_for_reviews                                                       681
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+08
title_year                                                                2007
actor_2_facebook_likes                                                     701
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 224, dtype: object
color                                                                    Color
director_name                                                  Paul Greengrass
num_critic_for_reviews                                                     267
duration                                                                   123
director_facebook_likes                                                    521
actor_3_facebook_likes                                                     265
actor_2_name                                                         Riz Ahmed
actor_1_facebook_likes                                                   13000
gross                                                              1.08522e+08
genres                                                         Action|Thriller
actor_1_name                                                        Matt Damon
movie_title                                                      Jason Bourne 
num_voted_users                                                          40123
cast_total_facebook_likes                                                13752
actor_3_name                                                      Ato Essandoh
facenumber_in_poster                                                         0
plot_keywords                     black ops|chase|cia|cia agent|repeated scene
movie_imdb_link              http://www.imdb.com/title/tt4196776/?ref_=fn_t...
num_user_for_reviews                                                       297
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.2e+08
title_year                                                                2016
actor_2_facebook_likes                                                     365
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     31000
Name: 225, dtype: object
color                                                                    Color
director_name                                                              McG
num_critic_for_reviews                                                     102
duration                                                                   107
director_facebook_likes                                                    368
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Bernie Mac
actor_1_facebook_likes                                                    2000
gross                                                              1.00686e+08
genres                                           Action|Adventure|Comedy|Crime
actor_1_name                                                        Demi Moore
movie_title                                   Charlie's Angels: Full Throttle 
num_voted_users                                                         100821
cast_total_facebook_likes                                                 4046
actor_3_name                                                    Justin Theroux
facenumber_in_poster                                                         0
plot_keywords                fbi|murder|ring|witness protection|witness pro...
movie_imdb_link              http://www.imdb.com/title/tt0305357/?ref_=fn_t...
num_user_for_reviews                                                       554
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+08
title_year                                                                2003
actor_2_facebook_likes                                                    1000
imdb_score                                                                 4.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 226, dtype: object
color                                                                    Color
director_name                                                     Ridley Scott
num_critic_for_reviews                                                     775
duration                                                                   124
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     641
actor_2_name                                                   Charlize Theron
actor_1_facebook_likes                                                   13000
gross                                                              1.26465e+08
genres                                                Adventure|Mystery|Sci-Fi
actor_1_name                                                Michael Fassbender
movie_title                                                        Prometheus 
num_voted_users                                                         456260
cast_total_facebook_likes                                                24098
actor_3_name                                                       Sean Harris
facenumber_in_poster                                                         0
plot_keywords                cave painting|medical scanner|planet|pregnant ...
movie_imdb_link              http://www.imdb.com/title/tt1446714/?ref_=fn_t...
num_user_for_reviews                                                      2326
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+08
title_year                                                                2012
actor_2_facebook_likes                                                    9000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     97000
Name: 227, dtype: object
color                                                                    Color
director_name                                                      Rob Minkoff
num_critic_for_reviews                                                      71
duration                                                                    77
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     537
actor_2_name                                                      Brad Garrett
actor_1_facebook_likes                                                     886
gross                                                              6.47361e+07
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                       Nathan Lane
movie_title                                                   Stuart Little 2 
num_voted_users                                                          36471
cast_total_facebook_likes                                                 2682
actor_3_name                                                  Melanie Griffith
facenumber_in_poster                                                         0
plot_keywords                anthropomorphic mouse|falcon|marshmallow|secon...
movie_imdb_link              http://www.imdb.com/title/tt0243585/?ref_=fn_t...
num_user_for_reviews                                                        69
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+08
title_year                                                                2002
actor_2_facebook_likes                                                     799
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       459
Name: 228, dtype: object
color                                                                    Color
director_name                                                   Neill Blomkamp
num_critic_for_reviews                                                     476
duration                                                                   109
director_facebook_likes                                                    662
actor_3_facebook_likes                                                    1000
actor_2_name                                                    Sharlto Copley
actor_1_facebook_likes                                                   13000
gross                                                              9.30501e+07
genres                                            Action|Drama|Sci-Fi|Thriller
actor_1_name                                                        Matt Damon
movie_title                                                           Elysium 
num_voted_users                                                         338087
cast_total_facebook_likes                                                17689
actor_3_name                                                       Alice Braga
facenumber_in_poster                                                         0
plot_keywords                christ figure|class differences|messiah|saviou...
movie_imdb_link              http://www.imdb.com/title/tt1535108/?ref_=fn_t...
num_user_for_reviews                                                       814
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.15e+08
title_year                                                                2013
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     61000
Name: 229, dtype: object
color                                                                    Color
director_name                                                      David Twohy
num_critic_for_reviews                                                     207
duration                                                                   134
director_facebook_likes                                                    123
actor_3_facebook_likes                                                     567
actor_2_name                                                     Alexa Davalos
actor_1_facebook_likes                                                   14000
gross                                                              5.76375e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                        Vin Diesel
movie_title                                         The Chronicles of Riddick 
num_voted_users                                                         183909
cast_total_facebook_likes                                                17159
actor_3_name                                                     Christina Cox
facenumber_in_poster                                                         0
plot_keywords                  bounty hunter|escape|necromonger|planet|warrior
movie_imdb_link              http://www.imdb.com/title/tt0296572/?ref_=fn_t...
num_user_for_reviews                                                       666
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.05e+08
title_year                                                                2004
actor_2_facebook_likes                                                     850
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 230, dtype: object
color                                                                    Color
director_name                                                     José Padilha
num_critic_for_reviews                                                     492
duration                                                                   117
director_facebook_likes                                                    294
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Abbie Cornish
actor_1_facebook_likes                                                   10000
gross                                                               5.8607e+07
genres                                            Action|Crime|Sci-Fi|Thriller
actor_1_name                                                       Gary Oldman
movie_title                                                           RoboCop 
num_voted_users                                                         182899
cast_total_facebook_likes                                                14161
actor_3_name                                                     Jennifer Ehle
facenumber_in_poster                                                         0
plot_keywords                  law enforcement|police|robocop|robot|technology
movie_imdb_link              http://www.imdb.com/title/tt1234721/?ref_=fn_t...
num_user_for_reviews                                                       630
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2014
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     60000
Name: 231, dtype: object
color                                                                    Color
director_name                                                   Lana Wachowski
num_critic_for_reviews                                                     284
duration                                                                   135
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      87
actor_2_name                                                        Kick Gurry
actor_1_facebook_likes                                                     690
gross                                                              4.39293e+07
genres                                                     Action|Family|Sport
actor_1_name                                                      Scott Porter
movie_title                                                       Speed Racer 
num_voted_users                                                          57873
cast_total_facebook_likes                                                  902
actor_3_name                                                     Nicholas Elia
facenumber_in_poster                                                         0
plot_keywords                based on anime|based on cartoon|gadget car|rac...
movie_imdb_link              http://www.imdb.com/title/tt0811080/?ref_=fn_t...
num_user_for_reviews                                                       414
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+08
title_year                                                                2008
actor_2_facebook_likes                                                     107
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 232, dtype: object
color                                                                    Color
director_name                                                  James L. Brooks
num_critic_for_reviews                                                     168
duration                                                                   121
director_facebook_likes                                                    274
actor_3_facebook_likes                                                     157
actor_2_name                                              Domenick Lombardozzi
actor_1_facebook_likes                                                     273
gross                                                              3.02126e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Shelley Conn
movie_title                                                   How Do You Know 
num_voted_users                                                          35066
cast_total_facebook_likes                                                  993
actor_3_name                                                    Teyonah Parris
facenumber_in_poster                                                         4
plot_keywords                embarrassment|falling in love|love|love triang...
movie_imdb_link              http://www.imdb.com/title/tt1341188/?ref_=fn_t...
num_user_for_reviews                                                       196
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+08
title_year                                                                2010
actor_2_facebook_likes                                                     216
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 233, dtype: object
color                                                                    Color
director_name                                                    James Mangold
num_critic_for_reviews                                                     283
duration                                                                   117
director_facebook_likes                                                    446
actor_3_facebook_likes                                                     877
actor_2_name                                                       Marc Blucas
actor_1_facebook_likes                                                   10000
gross                                                              7.64187e+07
genres                                                   Action|Comedy|Romance
actor_1_name                                                        Tom Cruise
movie_title                                                    Knight and Day 
num_voted_users                                                         148280
cast_total_facebook_likes                                                12731
actor_3_name                                                       Jordi Mollà
facenumber_in_poster                                                         0
plot_keywords                                chase|fbi|garage|spy|surveillance
movie_imdb_link              http://www.imdb.com/title/tt1013743/?ref_=fn_t...
num_user_for_reviews                                                       348
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.17e+08
title_year                                                                2010
actor_2_facebook_likes                                                     973
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 234, dtype: object
color                                                                    Color
director_name                                                  Joseph Kosinski
num_critic_for_reviews                                                     539
duration                                                                   124
director_facebook_likes                                                    364
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Tom Cruise
actor_1_facebook_likes                                                   11000
gross                                                              8.90217e+07
genres                                         Action|Adventure|Mystery|Sci-Fi
actor_1_name                                                    Morgan Freeman
movie_title                                                          Oblivion 
num_voted_users                                                         387436
cast_total_facebook_likes                                                22004
actor_3_name                                                          Zoë Bell
facenumber_in_poster                                                         0
plot_keywords                cabin in the woods|drone|flying through a thun...
movie_imdb_link              http://www.imdb.com/title/tt1483013/?ref_=fn_t...
num_user_for_reviews                                                       892
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+08
title_year                                                                2013
actor_2_facebook_likes                                                   10000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     71000
Name: 235, dtype: object
color                                                                    Color
director_name                                                     George Lucas
num_critic_for_reviews                                                     359
duration                                                                   140
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    4000
actor_2_name                                                   Christopher Lee
actor_1_facebook_likes                                                   20000
gross                                                              3.80263e+08
genres                                         Action|Adventure|Fantasy|Sci-Fi
actor_1_name                                                   Natalie Portman
movie_title                      Star Wars: Episode III - Revenge of the Sith 
num_voted_users                                                         520104
cast_total_facebook_likes                                                44042
actor_3_name                                                Hayden Christensen
facenumber_in_poster                                                         4
plot_keywords                elongated cry of no|friends become enemies|kic...
movie_imdb_link              http://www.imdb.com/title/tt0121766/?ref_=fn_t...
num_user_for_reviews                                                      3286
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.13e+08
title_year                                                                2005
actor_2_facebook_likes                                                   16000
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 236, dtype: object
color                                                                    Color
director_name                                                     George Lucas
num_critic_for_reviews                                                     284
duration                                                                   142
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    4000
actor_2_name                                                   Christopher Lee
actor_1_facebook_likes                                                   20000
gross                                                              3.10676e+08
genres                                         Action|Adventure|Fantasy|Sci-Fi
actor_1_name                                                   Natalie Portman
movie_title                      Star Wars: Episode II - Attack of the Clones 
num_voted_users                                                         464310
cast_total_facebook_likes                                                42990
actor_3_name                                                Hayden Christensen
facenumber_in_poster                                                         3
plot_keywords                martial arts|murdered before giving protagonis...
movie_imdb_link              http://www.imdb.com/title/tt0121765/?ref_=fn_t...
num_user_for_reviews                                                      3516
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.15e+08
title_year                                                                2002
actor_2_facebook_likes                                                   16000
imdb_score                                                                 6.7
aspect_ratio                                                              1.78
movie_facebook_likes                                                         0
Name: 237, dtype: object
color                                                                    Color
director_name                                                      Pete Docter
num_critic_for_reviews                                                     250
duration                                                                    92
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     773
actor_2_name                                                 John Ratzenberger
actor_1_facebook_likes                                                   12000
gross                                                              2.89907e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                     Steve Buscemi
movie_title                                                    Monsters, Inc. 
num_voted_users                                                         585659
cast_total_facebook_likes                                                15013
actor_3_name                                                      James Coburn
facenumber_in_poster                                                         0
plot_keywords                          friend|little girl|monster|rival|scream
movie_imdb_link              http://www.imdb.com/title/tt0198781/?ref_=fn_t...
num_user_for_reviews                                                       593
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                1.15e+08
title_year                                                                2001
actor_2_facebook_likes                                                    1000
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 238, dtype: object
color                                                                    Color
director_name                                                    James Mangold
num_critic_for_reviews                                                     440
duration                                                                   138
director_facebook_likes                                                    446
actor_3_facebook_likes                                                     929
actor_2_name                                                       Tao Okamoto
actor_1_facebook_likes                                                   20000
gross                                                              1.32551e+08
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                      Hugh Jackman
movie_title                                                     The Wolverine 
num_voted_users                                                         328067
cast_total_facebook_likes                                                23755
actor_3_name                                                    Rila Fukushima
facenumber_in_poster                                                         1
plot_keywords                healing power|marvel comics|mecha|regeneration...
movie_imdb_link              http://www.imdb.com/title/tt1430132/?ref_=fn_t...
num_user_for_reviews                                                       533
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+08
title_year                                                                2013
actor_2_facebook_likes                                                     992
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     68000
Name: 239, dtype: object
color                                                                    Color
director_name                                                     George Lucas
num_critic_for_reviews                                                     320
duration                                                                   136
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                       Liam Neeson
actor_1_facebook_likes                                                   20000
gross                                                              4.74545e+08
genres                                         Action|Adventure|Fantasy|Sci-Fi
actor_1_name                                                   Natalie Portman
movie_title                         Star Wars: Episode I - The Phantom Menace 
num_voted_users                                                         534658
cast_total_facebook_likes                                                37723
actor_3_name                                                     Ian McDiarmid
facenumber_in_poster                                                         1
plot_keywords                alien|character says i have a bad feeling abou...
movie_imdb_link              http://www.imdb.com/title/tt0120915/?ref_=fn_t...
num_user_for_reviews                                                      3597
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.15e+08
title_year                                                                1999
actor_2_facebook_likes                                                   14000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 240, dtype: object
color                                                                    Color
director_name                                                    Kirk De Micco
num_critic_for_reviews                                                     257
duration                                                                    98
director_facebook_likes                                                     16
actor_3_facebook_likes                                                   12000
actor_2_name                                                        Emma Stone
actor_1_facebook_likes                                                   16000
gross                                                              1.87166e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                     Ryan Reynolds
movie_title                                                        The Croods 
num_voted_users                                                         150618
cast_total_facebook_likes                                                43286
actor_3_name                                                      Nicolas Cage
facenumber_in_poster                                                         3
plot_keywords                      cave|caveman|journey|strict father|survival
movie_imdb_link              http://www.imdb.com/title/tt0481499/?ref_=fn_t...
num_user_for_reviews                                                       195
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.35e+08
title_year                                                                2013
actor_2_facebook_likes                                                   15000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     28000
Name: 241, dtype: object
color                                                                    Color
director_name                                               Frédéric Forestier
num_critic_for_reviews                                                      33
duration                                                                   116
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     141
actor_2_name                                                   Santiago Segura
actor_1_facebook_likes                                                     936
gross                                                                      NaN
genres                                         Adventure|Comedy|Family|Fantasy
actor_1_name                                                       Alain Delon
movie_title                                      Asterix at the Olympic Games 
num_voted_users                                                          20567
cast_total_facebook_likes                                                 1609
actor_3_name                                                   Vanessa Hessler
facenumber_in_poster                                                         1
plot_keywords                1st century b.c.|lightsaber|local blockbuster|...
movie_imdb_link              http://www.imdb.com/title/tt0463872/?ref_=fn_t...
num_user_for_reviews                                                        36
language                                                                French
country                                                                 France
content_rating                                                             NaN
budget                                                                 7.8e+07
title_year                                                                2008
actor_2_facebook_likes                                                     276
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       291
Name: 242, dtype: object
color                                                                    Color
director_name                                                         John Woo
num_critic_for_reviews                                                     152
duration                                                                   153
director_facebook_likes                                                    610
actor_3_facebook_likes                                                     617
actor_2_name                                                      Roger Willie
actor_1_facebook_likes                                                   12000
gross                                                              4.09118e+07
genres                                                        Action|Drama|War
actor_1_name                                                      Nicolas Cage
movie_title                                                       Windtalkers 
num_voted_users                                                          55994
cast_total_facebook_likes                                                15046
actor_3_name                                                     Noah Emmerich
facenumber_in_poster                                                         0
plot_keywords                  code|duty|steel helmet|u.s. marine|u.s. soldier
movie_imdb_link              http://www.imdb.com/title/tt0245562/?ref_=fn_t...
num_user_for_reviews                                                       454
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.15e+08
title_year                                                                2002
actor_2_facebook_likes                                                     836
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 243, dtype: object
color                                                                    Color
director_name                                            Cedric Nicolas-Troyan
num_critic_for_reviews                                                     231
duration                                                                   120
director_facebook_likes                                                     19
actor_3_facebook_likes                                                    9000
actor_2_name                                                       Sam Claflin
actor_1_facebook_likes                                                   26000
gross                                                               4.7952e+07
genres                                          Action|Adventure|Drama|Fantasy
actor_1_name                                                   Chris Hemsworth
movie_title                                        The Huntsman: Winter's War 
num_voted_users                                                          37750
cast_total_facebook_likes                                                46719
actor_3_name                                                   Charlize Theron
facenumber_in_poster                                                         2
plot_keywords                based on fairy tale|dark fantasy|fairy tale|se...
movie_imdb_link              http://www.imdb.com/title/tt2381991/?ref_=fn_t...
num_user_for_reviews                                                       134
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.15e+08
title_year                                                                2016
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 244, dtype: object
color                                                                    Color
director_name                                               Jonathan Liebesman
num_critic_for_reviews                                                     348
duration                                                                   101
director_facebook_likes                                                    473
actor_3_facebook_likes                                                     429
actor_2_name                                                    Danny Woodburn
actor_1_facebook_likes                                                     833
gross                                                              1.90871e+08
genres                                          Action|Adventure|Comedy|Sci-Fi
actor_1_name                                                       Noel Fisher
movie_title                                      Teenage Mutant Ninja Turtles 
num_voted_users                                                         167085
cast_total_facebook_likes                                                 2690
actor_3_name                                                     Jeremy Howard
facenumber_in_poster                                                         0
plot_keywords                             18 wheeler|mutant|ninja|sewer|turtle
movie_imdb_link              http://www.imdb.com/title/tt1291150/?ref_=fn_t...
num_user_for_reviews                                                       491
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+08
title_year                                                                2014
actor_2_facebook_likes                                                     809
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     62000
Name: 245, dtype: object
color                                                                    Color
director_name                                                   Alfonso Cuarón
num_critic_for_reviews                                                     738
duration                                                                    91
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      13
actor_2_name                                                     Basher Savage
actor_1_facebook_likes                                                      39
gross                                                              2.74085e+08
genres                                         Adventure|Drama|Sci-Fi|Thriller
actor_1_name                                                    Phaldut Sharma
movie_title                                                           Gravity 
num_voted_users                                                         582917
cast_total_facebook_likes                                                   87
actor_3_name                                                        Amy Warren
facenumber_in_poster                                                         0
plot_keywords                box office hit|long take|sole survivor|space|s...
movie_imdb_link              http://www.imdb.com/title/tt1454468/?ref_=fn_t...
num_user_for_reviews                                                      1885
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2013
actor_2_facebook_likes                                                      23
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                    147000
Name: 246, dtype: object
color                                                                    Color
director_name                                                  Roger Donaldson
num_critic_for_reviews                                                      93
duration                                                                   108
director_facebook_likes                                                     79
actor_3_facebook_likes                                                     268
actor_2_name                                                      Grant Heslov
actor_1_facebook_likes                                                     650
gross                                                              6.71557e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                 Jamie Renée Smith
movie_title                                                      Dante's Peak 
num_voted_users                                                          62271
cast_total_facebook_likes                                                 1569
actor_3_name                                                            Tzi Ma
facenumber_in_poster                                                         1
plot_keywords                                    ash|escape|lava|mayor|volcano
movie_imdb_link              http://www.imdb.com/title/tt0118928/?ref_=fn_t...
num_user_for_reviews                                                       277
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.16e+08
title_year                                                                1997
actor_2_facebook_likes                                                     293
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 247, dtype: object
color                                                                    Color
director_name                                                       Dave Green
num_critic_for_reviews                                                     181
duration                                                                   112
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     799
actor_2_name                                                       Noel Fisher
actor_1_facebook_likes                                                    5000
gross                                                              8.16387e+07
genres                                          Action|Adventure|Comedy|Sci-Fi
actor_1_name                                                     Stephen Amell
movie_title                  Teenage Mutant Ninja Turtles: Out of the Shadows 
num_voted_users                                                          17533
cast_total_facebook_likes                                                 8306
actor_3_name                                                      Brad Garrett
facenumber_in_poster                                                       NaN
plot_keywords                based on comic book|brother brother relationsh...
movie_imdb_link              http://www.imdb.com/title/tt3949660/?ref_=fn_t...
num_user_for_reviews                                                       115
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.35e+08
title_year                                                                2016
actor_2_facebook_likes                                                     833
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 248, dtype: object
color                                                                    Color
director_name                                                       Josh Trank
num_critic_for_reviews                                                     369
duration                                                                   100
director_facebook_likes                                                    128
actor_3_facebook_likes                                                      78
actor_2_name                                                     Reg E. Cathey
actor_1_facebook_likes                                                     596
gross                                                              5.61142e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                  Tim Blake Nelson
movie_title                                                    Fantastic Four 
num_voted_users                                                         110486
cast_total_facebook_likes                                                 1261
actor_3_name                                                     Tim Heidecker
facenumber_in_poster                                                         3
plot_keywords                box office flop|critically bashed|portal|telep...
movie_imdb_link              http://www.imdb.com/title/tt1502712/?ref_=fn_t...
num_user_for_reviews                                                       695
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+08
title_year                                                                2015
actor_2_facebook_likes                                                     360
imdb_score                                                                 4.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     41000
Name: 249, dtype: object
color                                                                    Color
director_name                                                       Shawn Levy
num_critic_for_reviews                                                     179
duration                                                                   108
director_facebook_likes                                                    189
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Rami Malek
actor_1_facebook_likes                                                   49000
gross                                                              2.50863e+08
genres                                  Action|Adventure|Comedy|Family|Fantasy
actor_1_name                                                    Robin Williams
movie_title                                               Night at the Museum 
num_voted_users                                                         234480
cast_total_facebook_likes                                                55486
actor_3_name                                                      Steve Coogan
facenumber_in_poster                                                         2
plot_keywords                chaos|museum|museum of natural history|night w...
movie_imdb_link              http://www.imdb.com/title/tt0477347/?ref_=fn_t...
num_user_for_reviews                                                       444
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.1e+08
title_year                                                                2006
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      3000
Name: 250, dtype: object
color                                                                    Color
director_name                                                      Brad Peyton
num_critic_for_reviews                                                     358
duration                                                                   114
director_facebook_likes                                                     62
actor_3_facebook_likes                                                     884
actor_2_name                                                     Ioan Gruffudd
actor_1_facebook_likes                                                   12000
gross                                                              1.55182e+08
genres                                         Action|Adventure|Drama|Thriller
actor_1_name                                                    Dwayne Johnson
movie_title                                                       San Andreas 
num_voted_users                                                         147497
cast_total_facebook_likes                                                16718
actor_3_name                                                    Archie Panjabi
facenumber_in_poster                                                         0
plot_keywords                disaster movie|earthquake|journey|natural disa...
movie_imdb_link              http://www.imdb.com/title/tt2126355/?ref_=fn_t...
num_user_for_reviews                                                       499
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+08
title_year                                                                2015
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     52000
Name: 251, dtype: object
color                                                                    Color
director_name                                               Roger Spottiswoode
num_critic_for_reviews                                                     160
duration                                                                   119
director_facebook_likes                                                     55
actor_3_facebook_likes                                                     387
actor_2_name                                                      Colin Salmon
actor_1_facebook_likes                                                     811
gross                                                              1.25332e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                Vincent Schiavelli
movie_title                                               Tomorrow Never Dies 
num_voted_users                                                         149680
cast_total_facebook_likes                                                 2958
actor_3_name                                                     Joe Don Baker
facenumber_in_poster                                                         3
plot_keywords                ex boyfriend ex girlfriend relationship|media ...
movie_imdb_link              http://www.imdb.com/title/tt0120347/?ref_=fn_t...
num_user_for_reviews                                                       328
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.1e+08
title_year                                                                1997
actor_2_facebook_likes                                                     766
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 252, dtype: object
color                                                                    Color
director_name                                                  Roland Emmerich
num_critic_for_reviews                                                     192
duration                                                                   142
director_facebook_likes                                                    776
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Adam Baldwin
actor_1_facebook_likes                                                   13000
gross                                                               1.1333e+08
genres                                                Action|Drama|History|War
actor_1_name                                                      Heath Ledger
movie_title                                                       The Patriot 
num_voted_users                                                         207613
cast_total_facebook_likes                                                19454
actor_3_name                                                     Tom Wilkinson
facenumber_in_poster                                                         1
plot_keywords                 american revolution|british|french|hero|standoff
movie_imdb_link              http://www.imdb.com/title/tt0187393/?ref_=fn_t...
num_user_for_reviews                                                      1144
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+08
title_year                                                                2000
actor_2_facebook_likes                                                    2000
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                      4000
Name: 253, dtype: object
color                                                                    Color
director_name                                                Steven Soderbergh
num_critic_for_reviews                                                     198
duration                                                                   125
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     350
actor_2_name                                                     Julia Roberts
actor_1_facebook_likes                                                   11000
gross                                                              1.25532e+08
genres                                                          Crime|Thriller
actor_1_name                                                         Brad Pitt
movie_title                                                    Ocean's Twelve 
num_voted_users                                                         284852
cast_total_facebook_likes                                                19359
actor_3_name                                                        Mini Anden
facenumber_in_poster                                                         0
plot_keywords                father daughter relationship|heist|pretending ...
movie_imdb_link              http://www.imdb.com/title/tt0349903/?ref_=fn_t...
num_user_for_reviews                                                       627
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+08
title_year                                                                2004
actor_2_facebook_likes                                                    8000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 254, dtype: object
color                                                                    Color
director_name                                                       Doug Liman
num_critic_for_reviews                                                     233
duration                                                                   126
director_facebook_likes                                                    218
actor_3_facebook_likes                                                     322
actor_2_name                                               Angelina Jolie Pitt
actor_1_facebook_likes                                                   11000
gross                                                              1.86336e+08
genres                                    Action|Comedy|Crime|Romance|Thriller
actor_1_name                                                         Brad Pitt
movie_title                                                  Mr. & Mrs. Smith 
num_voted_users                                                         348861
cast_total_facebook_likes                                                22722
actor_3_name                                                   Stephanie March
facenumber_in_poster                                                         2
plot_keywords                     assassin|marriage|secret agent|suburb|target
movie_imdb_link              http://www.imdb.com/title/tt0356910/?ref_=fn_t...
num_user_for_reviews                                                       798
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+08
title_year                                                                2005
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 255, dtype: object
color                                                                    Color
director_name                                                 Robert Schwentke
num_critic_for_reviews                                                     263
duration                                                                   119
director_facebook_likes                                                    124
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Theo James
actor_1_facebook_likes                                                   14000
gross                                                              1.29996e+08
genres                                               Adventure|Sci-Fi|Thriller
actor_1_name                                                      Kate Winslet
movie_title                                                         Insurgent 
num_voted_users                                                         154621
cast_total_facebook_likes                                                22622
actor_3_name                                                      Mekhi Phifer
facenumber_in_poster                                                         0
plot_keywords                action heroine|falling from height|mind contro...
movie_imdb_link              http://www.imdb.com/title/tt2908446/?ref_=fn_t...
num_user_for_reviews                                                       258
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+08
title_year                                                                2015
actor_2_facebook_likes                                                    5000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     27000
Name: 256, dtype: object
color                                                          Black and White
director_name                                                  Martin Scorsese
num_critic_for_reviews                                                     267
duration                                                                   170
director_facebook_likes                                                  17000
actor_3_facebook_likes                                                     827
actor_2_name                                                        Adam Scott
actor_1_facebook_likes                                                   29000
gross                                                              1.02609e+08
genres                                                         Biography|Drama
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                       The Aviator 
num_voted_users                                                         264318
cast_total_facebook_likes                                                34582
actor_3_name                                                    Frances Conroy
facenumber_in_poster                                                         0
plot_keywords                    1920s|aviation|fight|spruce goose|test flight
movie_imdb_link              http://www.imdb.com/title/tt0338751/?ref_=fn_t...
num_user_for_reviews                                                       799
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+08
title_year                                                                2004
actor_2_facebook_likes                                                    3000
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 257, dtype: object
color                                                                    Color
director_name                                                    Rob Letterman
num_critic_for_reviews                                                     184
duration                                                                    85
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     116
actor_2_name                                                    Catherine Tate
actor_1_facebook_likes                                                     480
gross                                                              4.27763e+07
genres                                         Adventure|Comedy|Family|Fantasy
actor_1_name                                                      James Corden
movie_title                                                Gulliver's Travels 
num_voted_users                                                          53160
cast_total_facebook_likes                                                 1173
actor_3_name                                                    Olly Alexander
facenumber_in_poster                                                         1
plot_keywords                bermuda triangle|box office hit|shipwrecked|tr...
movie_imdb_link              http://www.imdb.com/title/tt1320261/?ref_=fn_t...
num_user_for_reviews                                                       121
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.12e+08
title_year                                                                2010
actor_2_facebook_likes                                                     392
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 258, dtype: object
color                                                                    Color
director_name                                                    Michel Gondry
num_critic_for_reviews                                                     447
duration                                                                   119
director_facebook_likes                                                   1000
actor_3_facebook_likes                                                     741
actor_2_name                                                     Tom Wilkinson
actor_1_facebook_likes                                                   11000
gross                                                                9.878e+07
genres                                     Action|Comedy|Crime|Sci-Fi|Thriller
actor_1_name                                                   Christoph Waltz
movie_title                                                  The Green Hornet 
num_voted_users                                                         136019
cast_total_facebook_likes                                                13391
actor_3_name                                                   Chad L. Coleman
facenumber_in_poster                                                         0
plot_keywords                             heir|kung fu|party|playboy|superhero
movie_imdb_link              http://www.imdb.com/title/tt0990407/?ref_=fn_t...
num_user_for_reviews                                                       443
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+08
title_year                                                                2011
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     14000
Name: 259, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      29
duration                                                                    60
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     432
actor_2_name                                                     Dirk Benedict
actor_1_facebook_likes                                                     669
gross                                                                      NaN
genres                                                  Action|Adventure|Crime
actor_1_name                                                    George Peppard
movie_title                                            The A-Team             
num_voted_users                                                          25402
cast_total_facebook_likes                                                 1655
actor_3_name                                                    Dwight Schultz
facenumber_in_poster                                                         4
plot_keywords                1980s|cult tv|famous opening theme|good versus...
movie_imdb_link              http://www.imdb.com/title/tt0084967/?ref_=fn_t...
num_user_for_reviews                                                        97
language                                                               English
country                                                                    USA
content_rating                                                           TV-PG
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     554
imdb_score                                                                 7.6
aspect_ratio                                                                 4
movie_facebook_likes                                                         0
Name: 260, dtype: object
color                                                                    Color
director_name                                                       Noam Murro
num_critic_for_reviews                                                     366
duration                                                                   102
director_facebook_likes                                                    263
actor_3_facebook_likes                                                    1000
actor_2_name                                                Sullivan Stapleton
actor_1_facebook_likes                                                    6000
gross                                                              1.06369e+08
genres                                                Action|Drama|Fantasy|War
actor_1_name                                                         Eva Green
movie_title                                            300: Rise of an Empire 
num_voted_users                                                         225273
cast_total_facebook_likes                                                10583
actor_3_name                                                      Peter Mensah
facenumber_in_poster                                                         0
plot_keywords                     army|commander|female rear nudity|greek|navy
movie_imdb_link              http://www.imdb.com/title/tt1253863/?ref_=fn_t...
num_user_for_reviews                                                       523
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+08
title_year                                                                2014
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     71000
Name: 261, dtype: object
color                                                                    Color
director_name                                                     Raja Gosnell
num_critic_for_reviews                                                     172
duration                                                                   103
director_facebook_likes                                                     67
actor_3_facebook_likes                                                     111
actor_2_name                                                          Tim Gunn
actor_1_facebook_likes                                                     383
gross                                                              1.42614e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                   Mahadeo Shivraj
movie_title                                                        The Smurfs 
num_voted_users                                                          66593
cast_total_facebook_likes                                                  692
actor_3_name                                                  Madison McKinley
facenumber_in_poster                                                         3
plot_keywords                blue|new york|new york city|no opening credits...
movie_imdb_link              http://www.imdb.com/title/tt0472181/?ref_=fn_t...
num_user_for_reviews                                                       153
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.1e+08
title_year                                                                2011
actor_2_facebook_likes                                                     113
imdb_score                                                                 5.5
aspect_ratio                                                              1.78
movie_facebook_likes                                                     31000
Name: 262, dtype: object
color                                                                    Color
director_name                                                        Will Finn
num_critic_for_reviews                                                     104
duration                                                                    76
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     421
actor_2_name                                                     Roseanne Barr
actor_1_facebook_likes                                                   12000
gross                                                              5.00264e+07
genres                                   Animation|Comedy|Family|Music|Western
actor_1_name                                                     Steve Buscemi
movie_title                                                 Home on the Range 
num_voted_users                                                          13581
cast_total_facebook_likes                                                13607
actor_3_name                                                       G.W. Bailey
facenumber_in_poster                                                         0
plot_keywords                               cattle|cow|dairy farm|farm|rustler
movie_imdb_link              http://www.imdb.com/title/tt0299172/?ref_=fn_t...
num_user_for_reviews                                                        88
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.1e+08
title_year                                                                2004
actor_2_facebook_likes                                                     513
imdb_score                                                                 5.4
aspect_ratio                                                              1.78
movie_facebook_likes                                                       304
Name: 263, dtype: object
color                                                                    Color
director_name                                                 Robert Schwentke
num_critic_for_reviews                                                     181
duration                                                                   120
director_facebook_likes                                                    124
actor_3_facebook_likes                                                     943
actor_2_name                                                        Theo James
actor_1_facebook_likes                                                    6000
gross                                                              6.60022e+07
genres                                Action|Adventure|Mystery|Sci-Fi|Thriller
actor_1_name                                                       Naomi Watts
movie_title                                                         Allegiant 
num_voted_users                                                          44296
cast_total_facebook_likes                                                12452
actor_3_name                                                       Zoë Kravitz
facenumber_in_poster                                                         3
plot_keywords                based on young adult novel|dystopia|genetic ex...
movie_imdb_link              http://www.imdb.com/title/tt3410834/?ref_=fn_t...
num_user_for_reviews                                                       144
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+08
title_year                                                                2016
actor_2_facebook_likes                                                    5000
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 264, dtype: object
color                                                                    Color
director_name                                                       Shawn Levy
num_critic_for_reviews                                                     327
duration                                                                   127
director_facebook_likes                                                    189
actor_3_facebook_likes                                                     544
actor_2_name                                              Torey Michael Adkins
actor_1_facebook_likes                                                   20000
gross                                                              8.54633e+07
genres                                               Action|Drama|Sci-Fi|Sport
actor_1_name                                                      Hugh Jackman
movie_title                                                        Real Steel 
num_voted_users                                                         254841
cast_total_facebook_likes                                                22254
actor_3_name                                                        Olga Fonda
facenumber_in_poster                                                         1
plot_keywords                     arena|boxing|boxing movie|robot|robot battle
movie_imdb_link              http://www.imdb.com/title/tt0433035/?ref_=fn_t...
num_user_for_reviews                                                       426
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+08
title_year                                                                2011
actor_2_facebook_likes                                                     929
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     36000
Name: 265, dtype: object
color                                                                    Color
director_name                                                     Raja Gosnell
num_critic_for_reviews                                                     125
duration                                                                   105
director_facebook_likes                                                     67
actor_3_facebook_likes                                                      40
actor_2_name                                                      Nancy O'Dell
actor_1_facebook_likes                                                     681
gross                                                              7.10178e+07
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                    Jacob Tremblay
movie_title                                                      The Smurfs 2 
num_voted_users                                                          27257
cast_total_facebook_likes                                                  914
actor_3_name                                                    Vanessa Matsui
facenumber_in_poster                                                         3
plot_keywords                based on cartoon|box office hit|no opening cre...
movie_imdb_link              http://www.imdb.com/title/tt2017020/?ref_=fn_t...
num_user_for_reviews                                                        59
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.05e+08
title_year                                                                2013
actor_2_facebook_likes                                                      71
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 266, dtype: object
color                                                                    Color
director_name                                                      Jan de Bont
num_critic_for_reviews                                                      79
duration                                                                   121
director_facebook_likes                                                    101
actor_3_facebook_likes                                                     202
actor_2_name                                                  Temuera Morrison
actor_1_facebook_likes                                                     673
gross                                                              4.80684e+07
genres                                           Action|Crime|Romance|Thriller
actor_1_name                                                      Jason Patric
movie_title                                           Speed 2: Cruise Control 
num_voted_users                                                          60573
cast_total_facebook_likes                                                 2027
actor_3_name                                                       Lois Chiles
facenumber_in_poster                                                         0
plot_keywords                collision course|computer|cruise|diamonds|ship...
movie_imdb_link              http://www.imdb.com/title/tt0120179/?ref_=fn_t...
num_user_for_reviews                                                       248
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+08
title_year                                                                1997
actor_2_facebook_likes                                                     368
imdb_score                                                                 3.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       894
Name: 267, dtype: object
color                                                                    Color
director_name                                                       Gavin Hood
num_critic_for_reviews                                                     326
duration                                                                   114
director_facebook_likes                                                    151
actor_3_facebook_likes                                                     430
actor_2_name                                                      Moises Arias
actor_1_facebook_likes                                                   11000
gross                                                              6.16568e+07
genres                                                           Action|Sci-Fi
actor_1_name                                                     Harrison Ford
movie_title                                                      Ender's Game 
num_voted_users                                                         184561
cast_total_facebook_likes                                                12908
actor_3_name                                                     Aramis Knight
facenumber_in_poster                                                         4
plot_keywords                    alien|future|manipulation|simulation|training
movie_imdb_link              http://www.imdb.com/title/tt1731141/?ref_=fn_t...
num_user_for_reviews                                                       554
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+08
title_year                                                                2013
actor_2_facebook_likes                                                     635
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                    123000
Name: 268, dtype: object
color                                                                    Color
director_name                                                      Len Wiseman
num_critic_for_reviews                                                     354
duration                                                                   129
director_facebook_likes                                                    235
actor_3_facebook_likes                                                     297
actor_2_name                                                 Jonathan Sadowski
actor_1_facebook_likes                                                   13000
gross                                                              1.34521e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                      Bruce Willis
movie_title                                             Live Free or Die Hard 
num_voted_users                                                         336235
cast_total_facebook_likes                                                13961
actor_3_name                                                   Cyril Raffaelli
facenumber_in_poster                                                         1
plot_keywords                     fbi|hacker|independence day|police|terrorist
movie_imdb_link              http://www.imdb.com/title/tt0337978/?ref_=fn_t...
num_user_for_reviews                                                       782
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+08
title_year                                                                2007
actor_2_facebook_likes                                                     300
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 269, dtype: object
color                                                                    Color
director_name                                                    Peter Jackson
num_critic_for_reviews                                                     297
duration                                                                   171
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     857
actor_2_name                                                     Orlando Bloom
actor_1_facebook_likes                                                   16000
gross                                                              3.13838e+08
genres                                          Action|Adventure|Drama|Fantasy
actor_1_name                                                   Christopher Lee
movie_title                  The Lord of the Rings: The Fellowship of the R...
num_voted_users                                                        1238746
cast_total_facebook_likes                                                22342
actor_3_name                                                        Billy Boyd
facenumber_in_poster                                                         2
plot_keywords                               elf|hobbit|middle earth|quest|ring
movie_imdb_link              http://www.imdb.com/title/tt0120737/?ref_=fn_t...
num_user_for_reviews                                                      5060
language                                                               English
country                                                            New Zealand
content_rating                                                           PG-13
budget                                                                 9.3e+07
title_year                                                                2001
actor_2_facebook_likes                                                    5000
imdb_score                                                                 8.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     21000
Name: 270, dtype: object
color                                                                    Color
director_name                                                     Frank Coraci
num_critic_for_reviews                                                     188
duration                                                                   120
director_facebook_likes                                                    153
actor_3_facebook_likes                                                     447
actor_2_name                                                      Steve Coogan
actor_1_facebook_likes                                                    1000
gross                                                              2.40042e+07
genres                                                 Action|Adventure|Comedy
actor_1_name                                                     Jim Broadbent
movie_title                                       Around the World in 80 Days 
num_voted_users                                                          68720
cast_total_facebook_likes                                                 3175
actor_3_name                                                  Cécile De France
facenumber_in_poster                                                         0
plot_keywords                19th century|around the world|inventor|martial...
movie_imdb_link              http://www.imdb.com/title/tt0327437/?ref_=fn_t...
num_user_for_reviews                                                       191
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.1e+08
title_year                                                                2004
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 271, dtype: object
color                                                          Black and White
director_name                                                     Michael Mann
num_critic_for_reviews                                                     174
duration                                                                   165
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     780
actor_2_name                                                Jada Pinkett Smith
actor_1_facebook_likes                                                   10000
gross                                                               5.8184e+07
genres                                                   Biography|Drama|Sport
actor_1_name                                                        Will Smith
movie_title                                                               Ali 
num_voted_users                                                          79186
cast_total_facebook_likes                                                14196
actor_3_name                                                        Joe Morton
facenumber_in_poster                                                         1
plot_keywords                african american protagonist|african americans...
movie_imdb_link              http://www.imdb.com/title/tt0248667/?ref_=fn_t...
num_user_for_reviews                                                       386
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.07e+08
title_year                                                                2001
actor_2_facebook_likes                                                     851
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 272, dtype: object
color                                                                    Color
director_name                                                         Bo Welch
num_critic_for_reviews                                                     109
duration                                                                    82
director_facebook_likes                                                     34
actor_3_facebook_likes                                                     434
actor_2_name                                                     Kelly Preston
actor_1_facebook_likes                                                     760
gross                                                              1.00447e+08
genres                                         Adventure|Comedy|Family|Fantasy
actor_1_name                                                        Sean Hayes
movie_title                                                The Cat in the Hat 
num_voted_users                                                          36033
cast_total_facebook_likes                                                 2762
actor_3_name                                                   Spencer Breslin
facenumber_in_poster                                                         1
plot_keywords                based on cult comic book|cat|home alone|imagin...
movie_imdb_link              http://www.imdb.com/title/tt0312528/?ref_=fn_t...
num_user_for_reviews                                                       456
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.09e+08
title_year                                                                2003
actor_2_facebook_likes                                                     743
imdb_score                                                                 3.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       946
Name: 273, dtype: object
color                                                                    Color
director_name                                                      Alex Proyas
num_critic_for_reviews                                                     225
duration                                                                   115
director_facebook_likes                                                    295
actor_3_facebook_likes                                                     466
actor_2_name                                                   Bruce Greenwood
actor_1_facebook_likes                                                   10000
gross                                                              1.44795e+08
genres                                          Action|Mystery|Sci-Fi|Thriller
actor_1_name                                                        Will Smith
movie_title                                                          I, Robot 
num_voted_users                                                         387632
cast_total_facebook_likes                                                12068
actor_3_name                                                       Chi McBride
facenumber_in_poster                                                         1
plot_keywords                humanoid robot|man versus machine|prosthetic l...
movie_imdb_link              http://www.imdb.com/title/tt0343818/?ref_=fn_t...
num_user_for_reviews                                                       789
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+08
title_year                                                                2004
actor_2_facebook_likes                                                     981
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 274, dtype: object
color                                                                    Color
director_name                                                     Ridley Scott
num_critic_for_reviews                                                     239
duration                                                                   194
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     195
actor_2_name                                                     Orlando Bloom
actor_1_facebook_likes                                                   14000
gross                                                              4.73967e+07
genres                                      Action|Adventure|Drama|History|War
actor_1_name                                                       Liam Neeson
movie_title                                                 Kingdom of Heaven 
num_voted_users                                                         217373
cast_total_facebook_likes                                                19600
actor_3_name                                                  Philip Glenister
facenumber_in_poster                                                         1
plot_keywords                12th century|crusader|jerusalem|knight|medieva...
movie_imdb_link              http://www.imdb.com/title/tt0320661/?ref_=fn_t...
num_user_for_reviews                                                       942
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+08
title_year                                                                2005
actor_2_facebook_likes                                                    5000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 275, dtype: object
color                                                                    Color
director_name                                                      Rob Minkoff
num_critic_for_reviews                                                     101
duration                                                                    84
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     692
actor_2_name                                                       Nathan Lane
actor_1_facebook_likes                                                     979
gross                                                              1.40015e+08
genres                                         Adventure|Comedy|Family|Fantasy
actor_1_name                                                  Chazz Palminteri
movie_title                                                     Stuart Little 
num_voted_users                                                          94172
cast_total_facebook_likes                                                 3382
actor_3_name                                                     Jeffrey Jones
facenumber_in_poster                                                         0
plot_keywords                    box office hit|cat|first part|mouse|orphanage
movie_imdb_link              http://www.imdb.com/title/tt0164912/?ref_=fn_t...
num_user_for_reviews                                                       179
language                                                               English
country                                                                Germany
content_rating                                                              PG
budget                                                                1.33e+08
title_year                                                                1999
actor_2_facebook_likes                                                     886
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 276, dtype: object
color                                                                    Color
director_name                                                     Ron Clements
num_critic_for_reviews                                                     228
duration                                                                    97
director_facebook_likes                                                     63
actor_3_facebook_likes                                                     525
actor_2_name                                                     Jenifer Lewis
actor_1_facebook_likes                                                     852
gross                                                              1.04374e+08
genres                                Animation|Family|Fantasy|Musical|Romance
actor_1_name                                                     Oprah Winfrey
movie_title                                         The Princess and the Frog 
num_voted_users                                                          89351
cast_total_facebook_likes                                                 2480
actor_3_name                                                   Anika Noni Rose
facenumber_in_poster                                                         0
plot_keywords                        amphibian|dream|frog|frog prince|waitress
movie_imdb_link              http://www.imdb.com/title/tt0780521/?ref_=fn_t...
num_user_for_reviews                                                       214
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                1.05e+08
title_year                                                                2009
actor_2_facebook_likes                                                     578
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                      5000
Name: 277, dtype: object
color                                                                    Color
director_name                                                     Ridley Scott
num_critic_for_reviews                                                     568
duration                                                                   151
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     372
actor_2_name                                                     Donald Glover
actor_1_facebook_likes                                                   13000
gross                                                              2.28431e+08
genres                                                  Adventure|Drama|Sci-Fi
actor_1_name                                                        Matt Damon
movie_title                                                       The Martian 
num_voted_users                                                         472488
cast_total_facebook_likes                                                14831
actor_3_name                                                     Benedict Wong
facenumber_in_poster                                                         1
plot_keywords                astronaut|international cooperation|left for d...
movie_imdb_link              http://www.imdb.com/title/tt3659388/?ref_=fn_t...
num_user_for_reviews                                                      1023
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.08e+08
title_year                                                                2015
actor_2_facebook_likes                                                     801
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                    153000
Name: 278, dtype: object
color                                                                      NaN
director_name                                              Christopher Barnard
num_critic_for_reviews                                                     NaN
duration                                                                    22
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     NaN
actor_2_name                                                               NaN
actor_1_facebook_likes                                                       5
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                       Mathew Buck
movie_title                                           10,000 B.C.             
num_voted_users                                                              6
cast_total_facebook_likes                                                    5
actor_3_name                                                               NaN
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1869849/?ref_=fn_t...
num_user_for_reviews                                                       NaN
language                                                                   NaN
country                                                                    NaN
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     NaN
imdb_score                                                                 7.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 279, dtype: object
color                                                                    Color
director_name                                                      Michael Bay
num_critic_for_reviews                                                     257
duration                                                                   136
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    3000
actor_2_name                                                     Steve Buscemi
actor_1_facebook_likes                                                   19000
gross                                                               3.5799e+07
genres                                Action|Adventure|Romance|Sci-Fi|Thriller
actor_1_name                                                Scarlett Johansson
movie_title                                                        The Island 
num_voted_users                                                         263329
cast_total_facebook_likes                                                34839
actor_3_name                                                    Djimon Hounsou
facenumber_in_poster                                                         1
plot_keywords                          clone|environment|escape|island|lottery
movie_imdb_link              http://www.imdb.com/title/tt0399201/?ref_=fn_t...
num_user_for_reviews                                                       899
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.26e+08
title_year                                                                2005
actor_2_facebook_likes                                                   12000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 280, dtype: object
color                                                                    Color
director_name                                                    Peter Chelsom
num_critic_for_reviews                                                      62
duration                                                                   104
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     591
actor_2_name                                                     Warren Beatty
actor_1_facebook_likes                                                     752
gross                                                              6.71245e+06
genres                                                          Comedy|Romance
actor_1_name                                                        Del Zamora
movie_title                                                    Town & Country 
num_voted_users                                                           4102
cast_total_facebook_likes                                                 3133
actor_3_name                                                   Garry Shandling
facenumber_in_poster                                                         0
plot_keywords                anniversary|architect|cellist|friend|hardware ...
movie_imdb_link              http://www.imdb.com/title/tt0141907/?ref_=fn_t...
num_user_for_reviews                                                        89
language                                                               English
country                                                               New Line
content_rating                                                               R
budget                                                                   9e+07
title_year                                                                2001
actor_2_facebook_likes                                                     631
imdb_score                                                                 4.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                        53
Name: 281, dtype: object
color                                                                    Color
director_name                                                     Dominic Sena
num_critic_for_reviews                                                     175
duration                                                                   127
director_facebook_likes                                                     57
actor_3_facebook_likes                                                    3000
actor_2_name                                               Angelina Jolie Pitt
actor_1_facebook_likes                                                   12000
gross                                                              1.01643e+08
genres                                                   Action|Crime|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                             Gone in Sixty Seconds 
num_voted_users                                                         218341
cast_total_facebook_likes                                                29069
actor_3_name                                                     Robert Duvall
facenumber_in_poster                                                         1
plot_keywords                               auto theft|brother|car|theft|thief
movie_imdb_link              http://www.imdb.com/title/tt0187078/?ref_=fn_t...
num_user_for_reviews                                                       498
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+07
title_year                                                                2000
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 282, dtype: object
color                                                                    Color
director_name                                                     Ridley Scott
num_critic_for_reviews                                                     265
duration                                                                   171
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     695
actor_2_name                                                    Connie Nielsen
actor_1_facebook_likes                                                    3000
gross                                                              1.87671e+08
genres                                                    Action|Drama|Romance
actor_1_name                                                    Djimon Hounsou
movie_title                                                         Gladiator 
num_voted_users                                                         982637
cast_total_facebook_likes                                                 6521
actor_3_name                                                       Oliver Reed
facenumber_in_poster                                                         0
plot_keywords                  battlefield|blood|combat|gladiator|roman empire
movie_imdb_link              http://www.imdb.com/title/tt0172495/?ref_=fn_t...
num_user_for_reviews                                                      2368
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.03e+08
title_year                                                                2000
actor_2_facebook_likes                                                     933
imdb_score                                                                 8.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     21000
Name: 283, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     252
duration                                                                   145
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     533
actor_2_name                                                      Frank Grillo
actor_1_facebook_likes                                                   10000
gross                                                              1.32014e+08
genres                                          Action|Mystery|Sci-Fi|Thriller
actor_1_name                                                        Tom Cruise
movie_title                                                   Minority Report 
num_voted_users                                                         399651
cast_total_facebook_likes                                                12546
actor_3_name                                                   Jessica Capshaw
facenumber_in_poster                                                         0
plot_keywords                 future|murder|neo noir|washington d.c.|year 2054
movie_imdb_link              http://www.imdb.com/title/tt0181689/?ref_=fn_t...
num_user_for_reviews                                                      1331
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.02e+08
title_year                                                                2002
actor_2_facebook_likes                                                     798
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 284, dtype: object
color                                                                    Color
director_name                                                   Chris Columbus
num_critic_for_reviews                                                     232
duration                                                                   174
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    9000
actor_2_name                                                      Rupert Grint
actor_1_facebook_likes                                                   11000
gross                                                              2.61971e+08
genres                                        Adventure|Family|Fantasy|Mystery
actor_1_name                                                  Daniel Radcliffe
movie_title                           Harry Potter and the Chamber of Secrets 
num_voted_users                                                         387616
cast_total_facebook_likes                                                35672
actor_3_name                                                       Emma Watson
facenumber_in_poster                                                         1
plot_keywords                bildungsroman|flying broom|invisibility cloak|...
movie_imdb_link              http://www.imdb.com/title/tt0295297/?ref_=fn_t...
num_user_for_reviews                                                       858
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                   1e+08
title_year                                                                2002
actor_2_facebook_likes                                                   10000
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 285, dtype: object
color                                                          Black and White
director_name                                                  Martin Campbell
num_critic_for_reviews                                                     400
duration                                                                   144
director_facebook_likes                                                    258
actor_3_facebook_likes                                                     834
actor_2_name                                                    Tobias Menzies
actor_1_facebook_likes                                                    6000
gross                                                              1.67007e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                         Eva Green
movie_title                                                     Casino Royale 
num_voted_users                                                         470483
cast_total_facebook_likes                                                 9125
actor_3_name                                                   Ivana Milicevic
facenumber_in_poster                                                         1
plot_keywords                casino|espionage|free running|james bond|terro...
movie_imdb_link              http://www.imdb.com/title/tt0381061/?ref_=fn_t...
num_user_for_reviews                                                      2301
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2006
actor_2_facebook_likes                                                    1000
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 286, dtype: object
color                                                                    Color
director_name                                                       Tim Burton
num_critic_for_reviews                                                     230
duration                                                                   119
director_facebook_likes                                                  13000
actor_3_facebook_likes                                                     567
actor_2_name                                                    Estella Warren
actor_1_facebook_likes                                                    1000
gross                                                              1.80012e+08
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                              Cary-Hiroyuki Tagawa
movie_title                                                Planet of the Apes 
num_voted_users                                                         177725
cast_total_facebook_likes                                                 2776
actor_3_name                                                       Erick Avari
facenumber_in_poster                                                         0
plot_keywords                   astronaut|cage|planet|wilhelm scream|year 2029
movie_imdb_link              http://www.imdb.com/title/tt0133152/?ref_=fn_t...
num_user_for_reviews                                                      1368
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2001
actor_2_facebook_likes                                                     658
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 287, dtype: object
color                                                                    Color
director_name                                                    James Cameron
num_critic_for_reviews                                                     210
duration                                                                   153
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     539
actor_2_name                                                 Jenette Goldstein
actor_1_facebook_likes                                                     780
gross                                                              2.04843e+08
genres                                                           Action|Sci-Fi
actor_1_name                                                        Joe Morton
movie_title                                        Terminator 2: Judgment Day 
num_voted_users                                                         744891
cast_total_facebook_likes                                                 2829
actor_3_name                                               S. Epatha Merkerson
facenumber_in_poster                                                         0
plot_keywords                future|liquid metal|multiple cameos|sexy woman...
movie_imdb_link              http://www.imdb.com/title/tt0103064/?ref_=fn_t...
num_user_for_reviews                                                       983
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.02e+08
title_year                                                                1991
actor_2_facebook_likes                                                     604
imdb_score                                                                 8.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 288, dtype: object
color                                                                    Color
director_name                                                     Michael Mann
num_critic_for_reviews                                                     357
duration                                                                   140
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                    Christian Bale
actor_1_facebook_likes                                                   40000
gross                                                              9.70307e+07
genres                                   Biography|Crime|Drama|History|Romance
actor_1_name                                                       Johnny Depp
movie_title                                                    Public Enemies 
num_voted_users                                                         230931
cast_total_facebook_likes                                                64599
actor_3_name                                                    Stephen Graham
facenumber_in_poster                                                         1
plot_keywords                1930s|bank|celebrity criminal|fbi|public enemy...
movie_imdb_link              http://www.imdb.com/title/tt1152836/?ref_=fn_t...
num_user_for_reviews                                                       585
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+08
title_year                                                                2009
actor_2_facebook_likes                                                   23000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 289, dtype: object
color                                                                    Color
director_name                                                     Ridley Scott
num_critic_for_reviews                                                     300
duration                                                                   176
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     561
actor_2_name                                                          Ruby Dee
actor_1_facebook_likes                                                   18000
gross                                                              1.30128e+08
genres                                                   Biography|Crime|Drama
actor_1_name                                                 Denzel Washington
movie_title                                                 American Gangster 
num_voted_users                                                         324671
cast_total_facebook_likes                                                20354
actor_3_name                                                               RZA
facenumber_in_poster                                                         0
plot_keywords                           death|heroin|popcorn|smuggling|vietnam
movie_imdb_link              http://www.imdb.com/title/tt0765429/?ref_=fn_t...
num_user_for_reviews                                                       458
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+08
title_year                                                                2007
actor_2_facebook_likes                                                     782
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 290, dtype: object
color                                                                    Color
director_name                                                    James Cameron
num_critic_for_reviews                                                      94
duration                                                                   141
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     618
actor_2_name                                                       Tia Carrere
actor_1_facebook_likes                                                    2000
gross                                                              1.46282e+08
genres                                                  Action|Comedy|Thriller
actor_1_name                                                  Jamie Lee Curtis
movie_title                                                         True Lies 
num_voted_users                                                         190439
cast_total_facebook_likes                                                 4528
actor_3_name                                                        Tom Arnold
facenumber_in_poster                                                         0
plot_keywords                espionage|secret agent|secret mission|spy|spy ...
movie_imdb_link              http://www.imdb.com/title/tt0111503/?ref_=fn_t...
num_user_for_reviews                                                       351
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.15e+08
title_year                                                                1994
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 291, dtype: object
color                                                                    Color
director_name                                                       Tony Scott
num_critic_for_reviews                                                     267
duration                                                                   106
director_facebook_likes                                                  12000
actor_3_facebook_likes                                                     385
actor_2_name                                                   Ramon Rodriguez
actor_1_facebook_likes                                                   18000
gross                                                              6.54523e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                        The Taking of Pelham 1 2 3 
num_voted_users                                                         149998
cast_total_facebook_likes                                                19906
actor_3_name                                                   Michael Rispoli
facenumber_in_poster                                                         1
plot_keywords                               hijack|hostage|ransom|subway|train
movie_imdb_link              http://www.imdb.com/title/tt1111422/?ref_=fn_t...
num_user_for_reviews                                                       285
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+08
title_year                                                                2009
actor_2_facebook_likes                                                     464
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 292, dtype: object
color                                                                    Color
director_name                                                       Paul Weitz
num_critic_for_reviews                                                     180
duration                                                                    98
director_facebook_likes                                                     80
actor_3_facebook_likes                                                     708
actor_2_name                                                     Blythe Danner
actor_1_facebook_likes                                                   22000
gross                                                              1.48384e+08
genres                                                          Comedy|Romance
actor_1_name                                                    Robert De Niro
movie_title                                                    Little Fockers 
num_voted_users                                                          85531
cast_total_facebook_likes                                                24082
actor_3_name                                                         Teri Polo
facenumber_in_poster                                                        10
plot_keywords                birthday|critically bashed|male nurse|nurse|su...
movie_imdb_link              http://www.imdb.com/title/tt0970866/?ref_=fn_t...
num_user_for_reviews                                                       152
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2010
actor_2_facebook_likes                                                     713
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 293, dtype: object
color                                                                    Color
director_name                                                       Adam McKay
num_critic_for_reviews                                                     265
duration                                                                   116
director_facebook_likes                                                    285
actor_3_facebook_likes                                                     107
actor_2_name                                                      Will Ferrell
actor_1_facebook_likes                                                   12000
gross                                                               1.1922e+08
genres                                                     Action|Comedy|Crime
actor_1_name                                                    Dwayne Johnson
movie_title                                                    The Other Guys 
num_voted_users                                                         189806
cast_total_facebook_likes                                                20233
actor_3_name                                                       Derek Jeter
facenumber_in_poster                                                         2
plot_keywords                capitalist|detective|investigation|new york ci...
movie_imdb_link              http://www.imdb.com/title/tt1386588/?ref_=fn_t...
num_user_for_reviews                                                       316
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2010
actor_2_facebook_likes                                                    8000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 294, dtype: object
color                                                                    Color
director_name                                                    Chuck Russell
num_critic_for_reviews                                                      81
duration                                                                   115
director_facebook_likes                                                     55
actor_3_facebook_likes                                                     383
actor_2_name                                                      James Coburn
actor_1_facebook_likes                                                    1000
gross                                                              1.01228e+08
genres                                           Action|Drama|Mystery|Thriller
actor_1_name                                                  Vanessa Williams
movie_title                                                            Eraser 
num_voted_users                                                          84424
cast_total_facebook_likes                                                 3454
actor_3_name                                                       Roma Maffia
facenumber_in_poster                                                         1
plot_keywords                assassination attempt|corporate crime|rogue ag...
movie_imdb_link              http://www.imdb.com/title/tt0116213/?ref_=fn_t...
num_user_for_reviews                                                       131
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+08
title_year                                                                1996
actor_2_facebook_likes                                                     773
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 295, dtype: object
color                                                                    Color
director_name                                                Quentin Tarantino
num_critic_for_reviews                                                     765
duration                                                                   165
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     265
actor_2_name                                                   Christoph Waltz
actor_1_facebook_likes                                                   29000
gross                                                              1.62805e+08
genres                                                           Drama|Western
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                  Django Unchained 
num_voted_users                                                         955174
cast_total_facebook_likes                                                40978
actor_3_name                                                      Ato Essandoh
facenumber_in_poster                                                         1
plot_keywords                dynamite|historically inaccurate|ku klux klan|...
movie_imdb_link              http://www.imdb.com/title/tt1853728/?ref_=fn_t...
num_user_for_reviews                                                      1193
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+08
title_year                                                                2012
actor_2_facebook_likes                                                   11000
imdb_score                                                                 8.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                    199000
Name: 296, dtype: object
color                                                                    Color
director_name                                                   Gary Trousdale
num_critic_for_reviews                                                      80
duration                                                                    91
director_facebook_likes                                                     21
actor_3_facebook_likes                                                     542
actor_2_name                                                   Jason Alexander
actor_1_facebook_likes                                                    2000
gross                                                              1.00118e+08
genres                                  Animation|Drama|Family|Musical|Romance
actor_1_name                                                        Demi Moore
movie_title                                       The Hunchback of Notre Dame 
num_voted_users                                                         102933
cast_total_facebook_likes                                                 4842
actor_3_name                                                   Bill Fagerbakke
facenumber_in_poster                                                         0
plot_keywords                   15th century|cathedral|gypsy|paris|victor hugo
movie_imdb_link              http://www.imdb.com/title/tt0116583/?ref_=fn_t...
num_user_for_reviews                                                       230
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   1e+08
title_year                                                                1996
actor_2_facebook_likes                                                     700
imdb_score                                                                 6.9
aspect_ratio                                                              1.78
movie_facebook_likes                                                         0
Name: 297, dtype: object
color                                                                    Color
director_name                                                      Mark Dindal
num_critic_for_reviews                                                     141
duration                                                                    78
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     253
actor_2_name                                                     Wendie Malick
actor_1_facebook_likes                                                     558
gross                                                              8.92966e+07
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                       Eartha Kitt
movie_title                                          The Emperor's New Groove 
num_voted_users                                                         128285
cast_total_facebook_likes                                                 2039
actor_3_name                                                      John Fiedler
facenumber_in_poster                                                         1
plot_keywords                         antidote|disney|emperor|first part|llama
movie_imdb_link              http://www.imdb.com/title/tt0120917/?ref_=fn_t...
num_user_for_reviews                                                       297
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   1e+08
title_year                                                                2000
actor_2_facebook_likes                                                     452
imdb_score                                                                 7.3
aspect_ratio                                                              1.66
movie_facebook_likes                                                         0
Name: 298, dtype: object
color                                                                    Color
director_name                                                       Simon West
num_critic_for_reviews                                                     383
duration                                                                   103
director_facebook_likes                                                    165
actor_3_facebook_likes                                                   13000
actor_2_name                                                Sylvester Stallone
actor_1_facebook_likes                                                   26000
gross                                                              8.50174e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                     Jason Statham
movie_title                                                 The Expendables 2 
num_voted_users                                                         246803
cast_total_facebook_likes                                                57881
actor_3_name                                                      Bruce Willis
facenumber_in_poster                                                         3
plot_keywords                            church|hostage|mine|plutonium|revenge
movie_imdb_link              http://www.imdb.com/title/tt1764651/?ref_=fn_t...
num_user_for_reviews                                                       474
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 9.2e+07
title_year                                                                2012
actor_2_facebook_likes                                                   13000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                    108000
Name: 299, dtype: object
color                                                                    Color
director_name                                                   Jon Turteltaub
num_critic_for_reviews                                                     193
duration                                                                   131
director_facebook_likes                                                    226
actor_3_facebook_likes                                                     341
actor_2_name                                                    Armando Riesco
actor_1_facebook_likes                                                   12000
gross                                                              1.73005e+08
genres                                  Action|Adventure|Comedy|Family|Mystery
actor_1_name                                                      Nicolas Cage
movie_title                                                 National Treasure 
num_voted_users                                                         255447
cast_total_facebook_likes                                                13679
actor_3_name                                                     Annie Parisse
facenumber_in_poster                                                         0
plot_keywords                declaration of independence|secret society|tre...
movie_imdb_link              http://www.imdb.com/title/tt0368891/?ref_=fn_t...
num_user_for_reviews                                                       692
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+08
title_year                                                                2004
actor_2_facebook_likes                                                     625
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 300, dtype: object
color                                                          Black and White
director_name                                                 Stefen Fangmeier
num_critic_for_reviews                                                     170
duration                                                                   104
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     203
actor_2_name                                                       Ed Speleers
actor_1_facebook_likes                                                    3000
gross                                                              7.50302e+07
genres                                         Action|Adventure|Family|Fantasy
actor_1_name                                                    Djimon Hounsou
movie_title                                                            Eragon 
num_voted_users                                                         108076
cast_total_facebook_likes                                                 4487
actor_3_name                                                        Gary Lewis
facenumber_in_poster                                                         0
plot_keywords                dragon|dragon rider|fictional war|sword and fa...
movie_imdb_link              http://www.imdb.com/title/tt0449010/?ref_=fn_t...
num_user_for_reviews                                                      1690
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+08
title_year                                                                2006
actor_2_facebook_likes                                                     762
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 301, dtype: object
color                                                                    Color
director_name                                                      Spike Jonze
num_critic_for_reviews                                                     333
duration                                                                   101
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     279
actor_2_name                                                         Ryan Corr
actor_1_facebook_likes                                                     925
gross                                                              7.72222e+07
genres                                          Adventure|Drama|Family|Fantasy
actor_1_name                                                  Catherine O'Hara
movie_title                                         Where the Wild Things Are 
num_voted_users                                                          87677
cast_total_facebook_likes                                                 1738
actor_3_name                                                       Max Records
facenumber_in_poster                                                         0
plot_keywords                based on children's book|creature|igloo|imagin...
movie_imdb_link              http://www.imdb.com/title/tt0386117/?ref_=fn_t...
num_user_for_reviews                                                       388
language                                                               English
country                                                                Germany
content_rating                                                              PG
budget                                                                   1e+08
title_year                                                                2009
actor_2_facebook_likes                                                     468
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 302, dtype: object
color                                                                    Color
director_name                                                       Joe Wright
num_critic_for_reviews                                                     256
duration                                                                   111
director_facebook_likes                                                    456
actor_3_facebook_likes                                                     394
actor_2_name                                                   Cara Delevingne
actor_1_facebook_likes                                                   20000
gross                                                              3.49648e+07
genres                                                Adventure|Family|Fantasy
actor_1_name                                                      Hugh Jackman
movie_title                                                               Pan 
num_voted_users                                                          39956
cast_total_facebook_likes                                                21393
actor_3_name                                                      Nonso Anozie
facenumber_in_poster                                                         4
plot_keywords                1940s|child hero|fantasy world|orphan|referenc...
movie_imdb_link              http://www.imdb.com/title/tt3332064/?ref_=fn_t...
num_user_for_reviews                                                       186
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2015
actor_2_facebook_likes                                                     548
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     24000
Name: 303, dtype: object
color                                                                    Color
director_name                                                      Chris Wedge
num_critic_for_reviews                                                     203
duration                                                                   102
director_facebook_likes                                                     77
actor_3_facebook_likes                                                     120
actor_2_name                                                       Emma Kenney
actor_1_facebook_likes                                                   14000
gross                                                              1.07515e+08
genres                                      Adventure|Animation|Family|Fantasy
actor_1_name                                                   Josh Hutcherson
movie_title                                                              Epic 
num_voted_users                                                          85833
cast_total_facebook_likes                                                14552
actor_3_name                                                        Troy Evans
facenumber_in_poster                                                         2
plot_keywords                father daughter relationship|forest|miniature ...
movie_imdb_link              http://www.imdb.com/title/tt0848537/?ref_=fn_t...
num_user_for_reviews                                                       113
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+08
title_year                                                                2013
actor_2_facebook_likes                                                     151
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     17000
Name: 304, dtype: object
color                                                                    Color
director_name                                 Florian Henckel von Donnersmarck
num_critic_for_reviews                                                     321
duration                                                                   103
director_facebook_likes                                                    207
actor_3_facebook_likes                                                    3000
actor_2_name                                               Angelina Jolie Pitt
actor_1_facebook_likes                                                   40000
gross                                                              6.76312e+07
genres                                                 Action|Romance|Thriller
actor_1_name                                                       Johnny Depp
movie_title                                                       The Tourist 
num_voted_users                                                         176598
cast_total_facebook_likes                                                55175
actor_3_name                                                      Rufus Sewell
facenumber_in_poster                                                         0
plot_keywords                police surveillance|surveillance van|tailing a...
movie_imdb_link              http://www.imdb.com/title/tt1243957/?ref_=fn_t...
num_user_for_reviews                                                       374
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2010
actor_2_facebook_likes                                                   11000
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     25000
Name: 305, dtype: object
color                                                                    Color
director_name                                                      Peter Hyams
num_critic_for_reviews                                                     174
duration                                                                   121
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     595
actor_2_name                                                     Mark Margolis
actor_1_facebook_likes                                                    1000
gross                                                              6.68621e+07
genres                                           Action|Fantasy|Horror|Mystery
actor_1_name                                                       CCH Pounder
movie_title                                                       End of Days 
num_voted_users                                                          89509
cast_total_facebook_likes                                                 3903
actor_3_name                                                          Udo Kier
facenumber_in_poster                                                         0
plot_keywords                atheist|ex cop|female masturbation|female nudi...
movie_imdb_link              http://www.imdb.com/title/tt0146675/?ref_=fn_t...
num_user_for_reviews                                                       524
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.3e+07
title_year                                                                1999
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 306, dtype: object
color                                                                    Color
director_name                                                     Edward Zwick
num_critic_for_reviews                                                     166
duration                                                                   143
director_facebook_likes                                                    380
actor_3_facebook_likes                                                     452
actor_2_name                                                    Djimon Hounsou
actor_1_facebook_likes                                                   29000
gross                                                              5.73663e+07
genres                                                Adventure|Drama|Thriller
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                     Blood Diamond 
num_voted_users                                                         400292
cast_total_facebook_likes                                                33160
actor_3_name                                                   Stephen Collins
facenumber_in_poster                                                         0
plot_keywords                    diamond|elephant|fisherman|rebel|sierra leone
movie_imdb_link              http://www.imdb.com/title/tt0450259/?ref_=fn_t...
num_user_for_reviews                                                       657
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   1e+08
title_year                                                                2006
actor_2_facebook_likes                                                    3000
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     14000
Name: 307, dtype: object
color                                                                    Color
director_name                                                  Martin Scorsese
num_critic_for_reviews                                                     606
duration                                                                   240
director_facebook_likes                                                  17000
actor_3_facebook_likes                                                    4000
actor_2_name                                               Matthew McConaughey
actor_1_facebook_likes                                                   29000
gross                                                              1.16867e+08
genres                                            Biography|Comedy|Crime|Drama
actor_1_name                                                 Leonardo DiCaprio
movie_title                                           The Wolf of Wall Street 
num_voted_users                                                         780588
cast_total_facebook_likes                                                46057
actor_3_name                                                       Jon Favreau
facenumber_in_poster                                                         3
plot_keywords                based on true story|fellatio|female rear nudit...
movie_imdb_link              http://www.imdb.com/title/tt0993846/?ref_=fn_t...
num_user_for_reviews                                                      1138
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+08
title_year                                                                2013
actor_2_facebook_likes                                                   11000
imdb_score                                                                 8.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                    138000
Name: 308, dtype: object
color                                                                    Color
director_name                                                  Joel Schumacher
num_critic_for_reviews                                                     144
duration                                                                   121
director_facebook_likes                                                    541
actor_3_facebook_likes                                                     680
actor_2_name                                                  Rene Auberjonois
actor_1_facebook_likes                                                     920
gross                                                              1.84031e+08
genres                                                Action|Adventure|Fantasy
actor_1_name                                                     Michael Gough
movie_title                                                    Batman Forever 
num_voted_users                                                         190786
cast_total_facebook_likes                                                 2880
actor_3_name                                                        Debi Mazar
facenumber_in_poster                                                         4
plot_keywords                           love|necktie|partner|rock music|tuxedo
movie_imdb_link              http://www.imdb.com/title/tt0112462/?ref_=fn_t...
num_user_for_reviews                                                       539
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                1995
actor_2_facebook_likes                                                     710
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 309, dtype: object
color                                                                    Color
director_name                                                   Paul Verhoeven
num_critic_for_reviews                                                     192
duration                                                                   129
director_facebook_likes                                                    719
actor_3_facebook_likes                                                     423
actor_2_name                                                   Patrick Muldoon
actor_1_facebook_likes                                                     660
gross                                                              5.47001e+07
genres                                                       Action|Sci-Fi|War
actor_1_name                                                        Jake Busey
movie_title                                                 Starship Troopers 
num_voted_users                                                         221521
cast_total_facebook_likes                                                 2031
actor_3_name                                                      Seth Gilliam
facenumber_in_poster                                                         0
plot_keywords                          alien|federation|future|military|planet
movie_imdb_link              http://www.imdb.com/title/tt0120201/?ref_=fn_t...
num_user_for_reviews                                                      1049
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.05e+08
title_year                                                                1997
actor_2_facebook_likes                                                     475
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 310, dtype: object
color                                                                    Color
director_name                                                       Tom Tykwer
num_critic_for_reviews                                                     511
duration                                                                   172
director_facebook_likes                                                    670
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Jim Sturgess
actor_1_facebook_likes                                                   15000
gross                                                              2.70986e+07
genres                                                            Drama|Sci-Fi
actor_1_name                                                         Tom Hanks
movie_title                                                       Cloud Atlas 
num_voted_users                                                         284825
cast_total_facebook_likes                                                22686
actor_3_name                                                     Jim Broadbent
facenumber_in_poster                                                         5
plot_keywords                composer|future|letter|nonlinear timeline|nurs...
movie_imdb_link              http://www.imdb.com/title/tt1371111/?ref_=fn_t...
num_user_for_reviews                                                       828
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                1.02e+08
title_year                                                                2012
actor_2_facebook_likes                                                    5000
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                    124000
Name: 311, dtype: object
color                                                                    Color
director_name                                                      Zack Snyder
num_critic_for_reviews                                                     188
duration                                                                   101
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     577
actor_2_name                                                  Richard Roxburgh
actor_1_facebook_likes                                                    2000
gross                                                              5.56733e+07
genres                               Action|Adventure|Animation|Family|Fantasy
actor_1_name                                                     Abbie Cornish
movie_title                     Legend of the Guardians: The Owls of Ga'Hoole 
num_voted_users                                                          65785
cast_total_facebook_likes                                                 4286
actor_3_name                                                  Anthony LaPaglia
facenumber_in_poster                                                         1
plot_keywords                                barn owl|escape|owl|ruler|soldier
movie_imdb_link              http://www.imdb.com/title/tt1219342/?ref_=fn_t...
num_user_for_reviews                                                       160
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+07
title_year                                                                2010
actor_2_facebook_likes                                                     653
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 312, dtype: object
color                                                                    Color
director_name                                                            Pitof
num_critic_for_reviews                                                     212
duration                                                                    87
director_facebook_likes                                                     26
actor_3_facebook_likes                                                     566
actor_2_name                                             Christopher Heyerdahl
actor_1_facebook_likes                                                     827
gross                                                              4.01987e+07
genres                                   Action|Crime|Fantasy|Romance|Thriller
actor_1_name                                                    Frances Conroy
movie_title                                                          Catwoman 
num_voted_users                                                          87451
cast_total_facebook_likes                                                 3144
actor_3_name                                                     Alex Borstein
facenumber_in_poster                                                         0
plot_keywords                based on cult comic book|bechdel test passed|c...
movie_imdb_link              http://www.imdb.com/title/tt0327554/?ref_=fn_t...
num_user_for_reviews                                                       660
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2004
actor_2_facebook_likes                                                     825
imdb_score                                                                 3.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 313, dtype: object
color                                                                    Color
director_name                                                     Brett Ratner
num_critic_for_reviews                                                     245
duration                                                                   101
director_facebook_likes                                                    420
actor_3_facebook_likes                                                     467
actor_2_name                                                      Rufus Sewell
actor_1_facebook_likes                                                   12000
gross                                                                7.266e+07
genres                                                        Action|Adventure
actor_1_name                                                    Dwayne Johnson
movie_title                                                          Hercules 
num_voted_users                                                         115687
cast_total_facebook_likes                                                16235
actor_3_name                                               Ingrid Bolsø Berdal
facenumber_in_poster                                                         0
plot_keywords                     army|greek mythology|hercules|king|mercenary
movie_imdb_link              http://www.imdb.com/title/tt1267297/?ref_=fn_t...
num_user_for_reviews                                                       269
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2014
actor_2_facebook_likes                                                    3000
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     21000
Name: 314, dtype: object
color                                                                    Color
director_name                                                     Ron Clements
num_critic_for_reviews                                                     127
duration                                                                    95
director_facebook_likes                                                     63
actor_3_facebook_likes                                                     720
actor_2_name                                                      Martin Short
actor_1_facebook_likes                                                   23000
gross                                                              3.81206e+07
genres                                       Adventure|Animation|Family|Sci-Fi
actor_1_name                                              Joseph Gordon-Levitt
movie_title                                                   Treasure Planet 
num_voted_users                                                          71527
cast_total_facebook_likes                                                26940
actor_3_name                                                   Michael Wincott
facenumber_in_poster                                                         0
plot_keywords                              alien|cyborg|pirate|planet|treasure
movie_imdb_link              http://www.imdb.com/title/tt0133240/?ref_=fn_t...
num_user_for_reviews                                                       217
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.4e+08
title_year                                                                2002
actor_2_facebook_likes                                                     770
imdb_score                                                                 7.1
aspect_ratio                                                               1.5
movie_facebook_likes                                                         0
Name: 315, dtype: object
color                                                                    Color
director_name                                                  Brad Silberling
num_critic_for_reviews                                                     167
duration                                                                   102
director_facebook_likes                                                     52
actor_3_facebook_likes                                                     526
actor_2_name                                                        Anna Friel
actor_1_facebook_likes                                                    8000
gross                                                              4.93921e+07
genres                                                 Adventure|Comedy|Sci-Fi
actor_1_name                                                      Will Ferrell
movie_title                                                  Land of the Lost 
num_voted_users                                                          52029
cast_total_facebook_likes                                                10552
actor_3_name                                                Bobb'e J. Thompson
facenumber_in_poster                                                         1
plot_keywords                human versus dinosaur|lizard|primate|time trav...
movie_imdb_link              http://www.imdb.com/title/tt0457400/?ref_=fn_t...
num_user_for_reviews                                                       224
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2009
actor_2_facebook_likes                                                     735
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 316, dtype: object
color                                                                    Color
director_name                                                   Patrick Hughes
num_critic_for_reviews                                                     320
duration                                                                   131
director_facebook_likes                                                    385
actor_3_facebook_likes                                                   11000
actor_2_name                                                Sylvester Stallone
actor_1_facebook_likes                                                   26000
gross                                                               3.9292e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                     Jason Statham
movie_title                                                 The Expendables 3 
num_voted_users                                                         127258
cast_total_facebook_likes                                                52610
actor_3_name                                                     Harrison Ford
facenumber_in_poster                                                        15
plot_keywords                battle|fight|mission|pg 13 sequel to r rated f...
movie_imdb_link              http://www.imdb.com/title/tt2333784/?ref_=fn_t...
num_user_for_reviews                                                       351
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+07
title_year                                                                2014
actor_2_facebook_likes                                                   13000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     56000
Name: 317, dtype: object
color                                                                    Color
director_name                                                     Ericson Core
num_critic_for_reviews                                                     163
duration                                                                   114
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     848
actor_2_name                                                     Edgar Ramírez
actor_1_facebook_likes                                                    1000
gross                                                              2.87722e+07
genres                                             Action|Crime|Sport|Thriller
actor_1_name                                                      Ray Winstone
movie_title                                                       Point Break 
num_voted_users                                                          33953
cast_total_facebook_likes                                                 3962
actor_3_name                                                      Delroy Lindo
facenumber_in_poster                                                         1
plot_keywords                       athlete|extreme sports|fbi|fbi agent|heist
movie_imdb_link              http://www.imdb.com/title/tt2058673/?ref_=fn_t...
num_user_for_reviews                                                       163
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.05e+08
title_year                                                                2015
actor_2_facebook_likes                                                     897
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     37000
Name: 318, dtype: object
color                                                                    Color
director_name                                                Lawrence Guterman
num_critic_for_reviews                                                      78
duration                                                                    94
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     227
actor_2_name                                                    Traylor Howard
actor_1_facebook_likes                                                     490
gross                                                              1.70106e+07
genres                                                   Comedy|Family|Fantasy
actor_1_name                                                     Jamie Kennedy
movie_title                                                   Son of the Mask 
num_voted_users                                                          40751
cast_total_facebook_likes                                                 1195
actor_3_name                                                         Ben Stein
facenumber_in_poster                                                         0
plot_keywords                           baby|cartoon on tv|cartoonist|dog|mask
movie_imdb_link              http://www.imdb.com/title/tt0362165/?ref_=fn_t...
num_user_for_reviews                                                       239
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 8.4e+07
title_year                                                                2005
actor_2_facebook_likes                                                     294
imdb_score                                                                 2.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       881
Name: 319, dtype: object
color                                                                    Color
director_name                                                       Ron Howard
num_critic_for_reviews                                                     289
duration                                                                   122
director_facebook_likes                                                   2000
actor_3_facebook_likes                                                     571
actor_2_name                                                   Benjamin Walker
actor_1_facebook_likes                                                   26000
gross                                                              2.49856e+07
genres                       Action|Adventure|Biography|Drama|History|Thriller
actor_1_name                                                   Chris Hemsworth
movie_title                                           In the Heart of the Sea 
num_voted_users                                                          71782
cast_total_facebook_likes                                                28328
actor_3_name                                                     Frank Dillane
facenumber_in_poster                                                         0
plot_keywords                        emaciation|ship|starvation|vomiting|whale
movie_imdb_link              http://www.imdb.com/title/tt1390411/?ref_=fn_t...
num_user_for_reviews                                                       161
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2015
actor_2_facebook_likes                                                     911
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     27000
Name: 320, dtype: object
color                                                                    Color
director_name                                                    Ron Underwood
num_critic_for_reviews                                                      66
duration                                                                    95
director_facebook_likes                                                     31
actor_3_facebook_likes                                                     683
actor_2_name                                                       Randy Quaid
actor_1_facebook_likes                                                    3000
gross                                                               4.4111e+06
genres                                                    Action|Comedy|Sci-Fi
actor_1_name                                                    Rosario Dawson
movie_title                                      The Adventures of Pluto Nash 
num_voted_users                                                          20295
cast_total_facebook_likes                                                 6161
actor_3_name                                                        Burt Young
facenumber_in_poster                                                         1
plot_keywords                           casino|future|laser gun|moon|nightclub
movie_imdb_link              http://www.imdb.com/title/tt0180052/?ref_=fn_t...
num_user_for_reviews                                                       164
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2002
actor_2_facebook_likes                                                     695
imdb_score                                                                 3.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       416
Name: 321, dtype: object
color                                                                    Color
director_name                                                  Paul Greengrass
num_critic_for_reviews                                                     266
duration                                                                   115
director_facebook_likes                                                    521
actor_3_facebook_likes                                                      95
actor_2_name                                                         Sean Huze
actor_1_facebook_likes                                                   13000
gross                                                              3.50245e+07
genres                                               Action|Drama|Thriller|War
actor_1_name                                                        Matt Damon
movie_title                                                        Green Zone 
num_voted_users                                                         110364
cast_total_facebook_likes                                                13761
actor_3_name                                                         Igal Naor
facenumber_in_poster                                                         1
plot_keywords                cia|iraq|iraqi|political military conspiracy|w...
movie_imdb_link              http://www.imdb.com/title/tt0947810/?ref_=fn_t...
num_user_for_reviews                                                       261
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                   1e+08
title_year                                                                2010
actor_2_facebook_likes                                                     537
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 322, dtype: object
color                                                                    Color
director_name                                                    Steve Martino
num_critic_for_reviews                                                     208
duration                                                                    88
director_facebook_likes                                                     20
actor_3_facebook_likes                                                      36
actor_2_name                                                  Venus Schultheis
actor_1_facebook_likes                                                     144
gross                                                              1.30175e+08
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                 Francesca Capaldi
movie_title                                                 The Peanuts Movie 
num_voted_users                                                          27918
cast_total_facebook_likes                                                  309
actor_3_name                                                     Bill Melendez
facenumber_in_poster                                                         0
plot_keywords                            dog|girl|imagination|peanuts|red hair
movie_imdb_link              http://www.imdb.com/title/tt2452042/?ref_=fn_t...
num_user_for_reviews                                                       155
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 9.9e+07
title_year                                                                2015
actor_2_facebook_likes                                                      42
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     33000
Name: 323, dtype: object
color                                                                    Color
director_name                                                      David Mamet
num_critic_for_reviews                                                      97
duration                                                                   110
director_facebook_likes                                                    342
actor_3_facebook_likes                                                     393
actor_2_name                                                  Felicity Huffman
actor_1_facebook_likes                                                     623
gross                                                                 1.02e+07
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                       Ben Gazzara
movie_title                                              The Spanish Prisoner 
num_voted_users                                                          18697
cast_total_facebook_likes                                                 1722
actor_3_name                                                    Campbell Scott
facenumber_in_poster                                                         0
plot_keywords                brother sister relationship|extradition|fbi|ja...
movie_imdb_link              http://www.imdb.com/title/tt0120176/?ref_=fn_t...
num_user_for_reviews                                                       263
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+07
title_year                                                                1997
actor_2_facebook_likes                                                     508
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       578
Name: 324, dtype: object
color                                                                    Color
director_name                                                  Stephen Sommers
num_critic_for_reviews                                                     202
duration                                                                   130
director_facebook_likes                                                    208
actor_3_facebook_likes                                                     591
actor_2_name                                                    Brendan Fraser
actor_1_facebook_likes                                                   12000
gross                                                              2.02008e+08
genres                                       Action|Adventure|Fantasy|Thriller
actor_1_name                                                    Dwayne Johnson
movie_title                                                 The Mummy Returns 
num_voted_users                                                         248045
cast_total_facebook_likes                                                15972
actor_3_name                                                Patricia Velasquez
facenumber_in_poster                                                         5
plot_keywords                         ancient egypt|bracelet|king|scorpion|son
movie_imdb_link              http://www.imdb.com/title/tt0209163/?ref_=fn_t...
num_user_for_reviews                                                       890
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 9.8e+07
title_year                                                                2001
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 325, dtype: object
color                                                                    Color
director_name                                                  Martin Scorsese
num_critic_for_reviews                                                     233
duration                                                                   216
director_facebook_likes                                                  17000
actor_3_facebook_likes                                                    1000
actor_2_name                                                       Liam Neeson
actor_1_facebook_likes                                                   29000
gross                                                              7.76796e+07
genres                                                             Crime|Drama
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                 Gangs of New York 
num_voted_users                                                         314033
cast_total_facebook_likes                                                47657
actor_3_name                                                     Jim Broadbent
facenumber_in_poster                                                         3
plot_keywords                 butcher|civil war|gangster|new york city|revenge
movie_imdb_link              http://www.imdb.com/title/tt0217505/?ref_=fn_t...
num_user_for_reviews                                                      1166
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+08
title_year                                                                2002
actor_2_facebook_likes                                                   14000
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 326, dtype: object
color                                                                    Color
director_name                                                      Yimou Zhang
num_critic_for_reviews                                                     136
duration                                                                   146
director_facebook_likes                                                    611
actor_3_facebook_likes                                                      28
actor_2_name                                                             Ni Ni
actor_1_facebook_likes                                                   23000
gross                                                                     9213
genres                                               Drama|History|Romance|War
actor_1_name                                                    Christian Bale
movie_title                                                The Flowers of War 
num_voted_users                                                          38690
cast_total_facebook_likes                                                23240
actor_3_name                                                  Shigeo Kobayashi
facenumber_in_poster                                                         2
plot_keywords                abusive stepfather|attempted rape|food shortag...
movie_imdb_link              http://www.imdb.com/title/tt1410063/?ref_=fn_t...
num_user_for_reviews                                                       130
language                                                              Mandarin
country                                                                  China
content_rating                                                               R
budget                                                                 9.4e+07
title_year                                                                2011
actor_2_facebook_likes                                                     196
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 327, dtype: object
color                                                                    Color
director_name                                                      Ash Brannon
num_critic_for_reviews                                                     154
duration                                                                    85
director_facebook_likes                                                      9
actor_3_facebook_likes                                                     970
actor_2_name                                                   Zooey Deschanel
actor_1_facebook_likes                                                   12000
gross                                                              5.88677e+07
genres                                           Animation|Comedy|Family|Sport
actor_1_name                                                      Jeff Bridges
movie_title                                                         Surf's Up 
num_voted_users                                                          54077
cast_total_facebook_likes                                                25590
actor_3_name                                                         Jon Heder
facenumber_in_poster                                                         0
plot_keywords                       chicken|competition|island|penguin|surfing
movie_imdb_link              http://www.imdb.com/title/tt0423294/?ref_=fn_t...
num_user_for_reviews                                                       112
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+08
title_year                                                                2007
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 328, dtype: object
color                                                                    Color
director_name                                                         Frank Oz
num_critic_for_reviews                                                     169
duration                                                                    93
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     465
actor_2_name                                                 Matthew Broderick
actor_1_facebook_likes                                                   11000
gross                                                              5.94756e+07
genres                                                  Comedy|Sci-Fi|Thriller
actor_1_name                                                        Jon Lovitz
movie_title                                                The Stepford Wives 
num_voted_users                                                          49739
cast_total_facebook_likes                                                13748
actor_3_name                                                        Roger Bart
facenumber_in_poster                                                         1
plot_keywords                 community|connecticut|fem bot|tv producer|writer
movie_imdb_link              http://www.imdb.com/title/tt0327162/?ref_=fn_t...
num_user_for_reviews                                                       407
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+07
title_year                                                                2004
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 329, dtype: object
color                                                                    Color
director_name                                                     Ridley Scott
num_critic_for_reviews                                                     200
duration                                                                   152
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     557
actor_2_name                                                       Sam Shepard
actor_1_facebook_likes                                                    2000
gross                                                              1.08639e+08
genres                                                       Drama|History|War
actor_1_name                                                     Ioan Gruffudd
movie_title                                                   Black Hawk Down 
num_voted_users                                                         292022
cast_total_facebook_likes                                                 4270
actor_3_name                                                      Ewen Bremner
facenumber_in_poster                                                         0
plot_keywords                           army|helicopter|somali|somalia|warlord
movie_imdb_link              http://www.imdb.com/title/tt0265086/?ref_=fn_t...
num_user_for_reviews                                                      1103
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 9.2e+07
title_year                                                                2001
actor_2_facebook_likes                                                     820
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 330, dtype: object
color                                                                    Color
director_name                                                        Jay Roach
num_critic_for_reviews                                                     255
duration                                                                    85
director_facebook_likes                                                    116
actor_3_facebook_likes                                                     329
actor_2_name                                                Thomas Middleditch
actor_1_facebook_likes                                                    8000
gross                                                              8.68972e+07
genres                                                                  Comedy
actor_1_name                                                      Will Ferrell
movie_title                                                      The Campaign 
num_voted_users                                                         106790
cast_total_facebook_likes                                                 9271
actor_3_name                                                  Katherine LaNasa
facenumber_in_poster                                                         0
plot_keywords                campaigning|congressman|north carolina|title a...
movie_imdb_link              http://www.imdb.com/title/tt1790886/?ref_=fn_t...
num_user_for_reviews                                                       177
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 9.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     331
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     18000
Name: 331, dtype: object
color                                                                    Color
director_name                                                       Luc Besson
num_critic_for_reviews                                                     173
duration                                                                   126
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   10000
actor_2_name                                                      Bruce Willis
actor_1_facebook_likes                                                   14000
gross                                                                6.354e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                    Milla Jovovich
movie_title                                                 The Fifth Element 
num_voted_users                                                         343274
cast_total_facebook_likes                                                39319
actor_3_name                                                       Gary Oldman
facenumber_in_poster                                                         2
plot_keywords                1910s|alien|artificially created woman|love|ta...
movie_imdb_link              http://www.imdb.com/title/tt0119116/?ref_=fn_t...
num_user_for_reviews                                                       742
language                                                               English
country                                                                 France
content_rating                                                           PG-13
budget                                                                 9.3e+07
title_year                                                                1997
actor_2_facebook_likes                                                   13000
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 332, dtype: object
color                                                                    Color
director_name                                             Michael Patrick King
num_critic_for_reviews                                                     221
duration                                                                   146
director_facebook_likes                                                    127
actor_3_facebook_likes                                                     722
actor_2_name                                                     Liza Minnelli
actor_1_facebook_likes                                                     962
gross                                                              9.53289e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                        Chris Noth
movie_title                                                Sex and the City 2 
num_voted_users                                                          59581
cast_total_facebook_likes                                                 4555
actor_3_name                                                     Kristin Davis
facenumber_in_poster                                                         4
plot_keywords                abu dhabi|box office hit|muslim|nanny|united a...
movie_imdb_link              http://www.imdb.com/title/tt1261945/?ref_=fn_t...
num_user_for_reviews                                                       293
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+08
title_year                                                                2010
actor_2_facebook_likes                                                     740
imdb_score                                                                 4.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 333, dtype: object
color                                                                    Color
director_name                                                    Bibo Bergeron
num_critic_for_reviews                                                      82
duration                                                                    89
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     442
actor_2_name                                                       Rosie Perez
actor_1_facebook_likes                                                    2000
gross                                                              5.08027e+07
genres                               Adventure|Animation|Comedy|Family|Romance
actor_1_name                                                      Frank Welker
movie_title                                             The Road to El Dorado 
num_voted_users                                                          58300
cast_total_facebook_likes                                                 3372
actor_3_name                                                        Elton John
facenumber_in_poster                                                         1
plot_keywords                adventurer|el dorado|gold|high priest|implied sex
movie_imdb_link              http://www.imdb.com/title/tt0138749/?ref_=fn_t...
num_user_for_reviews                                                       139
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 9.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     919
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 334, dtype: object
color                                                                    Color
director_name                                                    Steve Martino
num_critic_for_reviews                                                     233
duration                                                                    88
director_facebook_likes                                                     20
actor_3_facebook_likes                                                     916
actor_2_name                                                          Josh Gad
actor_1_facebook_likes                                                   22000
gross                                                              1.61317e+08
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                    Peter Dinklage
movie_title                                        Ice Age: Continental Drift 
num_voted_users                                                         145321
cast_total_facebook_likes                                                25354
actor_3_name                                                             Drake
facenumber_in_poster                                                         0
plot_keywords                                  acorn|herd|iceberg|ocean|pirate
movie_imdb_link              http://www.imdb.com/title/tt1667889/?ref_=fn_t...
num_user_for_reviews                                                       139
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 9.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     14000
Name: 335, dtype: object
color                                                                    Color
director_name                                                  Kenneth Branagh
num_critic_for_reviews                                                     343
duration                                                                   105
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     502
actor_2_name                                                      Derek Jacobi
actor_1_facebook_likes                                                    2000
gross                                                              2.01148e+08
genres                                            Drama|Family|Fantasy|Romance
actor_1_name                                                     Hayley Atwell
movie_title                                                        Cinderella 
num_voted_users                                                         103737
cast_total_facebook_likes                                                 4671
actor_3_name                                                        Lily James
facenumber_in_poster                                                         1
plot_keywords                    dress|duke|fairy godmother|fairy tale|pumpkin
movie_imdb_link              http://www.imdb.com/title/tt1661199/?ref_=fn_t...
num_user_for_reviews                                                       322
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 9.5e+07
title_year                                                                2015
actor_2_facebook_likes                                                     520
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     56000
Name: 336, dtype: object
color                                                                    Color
director_name                                                    Peter Jackson
num_critic_for_reviews                                                     308
duration                                                                   135
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     310
actor_2_name                                                       AJ Michalka
actor_1_facebook_likes                                                     873
gross                                                              4.39828e+07
genres                                                  Drama|Fantasy|Thriller
actor_1_name                                                 Michael Imperioli
movie_title                                                  The Lovely Bones 
num_voted_users                                                         125109
cast_total_facebook_likes                                                 2370
actor_3_name                                                      Tom McCarthy
facenumber_in_poster                                                         1
plot_keywords                            1970s|afterlife|heaven|pedophile|rape
movie_imdb_link              http://www.imdb.com/title/tt0380510/?ref_=fn_t...
num_user_for_reviews                                                       593
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     560
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 337, dtype: object
color                                                                    Color
director_name                                                   Andrew Stanton
num_critic_for_reviews                                                     301
duration                                                                   100
director_facebook_likes                                                    475
actor_3_facebook_likes                                                     799
actor_2_name                                                      Stephen Root
actor_1_facebook_likes                                                    1000
gross                                                              3.80839e+08
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                   Alexander Gould
movie_title                                                      Finding Nemo 
num_voted_users                                                         692482
cast_total_facebook_likes                                                 5641
actor_3_name                                                      Brad Garrett
facenumber_in_poster                                                         0
plot_keywords                great barrier reef|protective father|separatio...
movie_imdb_link              http://www.imdb.com/title/tt0266543/?ref_=fn_t...
num_user_for_reviews                                                       866
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 9.4e+07
title_year                                                                2003
actor_2_facebook_likes                                                     939
imdb_score                                                                 8.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 338, dtype: object
color                                                                    Color
director_name                                                    Peter Jackson
num_critic_for_reviews                                                     328
duration                                                                   192
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     416
actor_2_name                                                        Billy Boyd
actor_1_facebook_likes                                                    5000
gross                                                              3.77019e+08
genres                                          Action|Adventure|Drama|Fantasy
actor_1_name                                                     Orlando Bloom
movie_title                     The Lord of the Rings: The Return of the King 
num_voted_users                                                        1215718
cast_total_facebook_likes                                                 6434
actor_3_name                                                      Bernard Hill
facenumber_in_poster                                                         2
plot_keywords                                        battle|epic|king|orc|ring
movie_imdb_link              http://www.imdb.com/title/tt0167260/?ref_=fn_t...
num_user_for_reviews                                                      3189
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 9.4e+07
title_year                                                                2003
actor_2_facebook_likes                                                     857
imdb_score                                                                 8.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 339, dtype: object
color                                                                    Color
director_name                                                    Peter Jackson
num_critic_for_reviews                                                     294
duration                                                                   172
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     857
actor_2_name                                                     Orlando Bloom
actor_1_facebook_likes                                                   16000
gross                                                              3.40479e+08
genres                                          Action|Adventure|Drama|Fantasy
actor_1_name                                                   Christopher Lee
movie_title                             The Lord of the Rings: The Two Towers 
num_voted_users                                                        1100446
cast_total_facebook_likes                                                23052
actor_3_name                                                        Billy Boyd
facenumber_in_poster                                                         1
plot_keywords                        epic|evil wizard|middle earth|ring|wizard
movie_imdb_link              http://www.imdb.com/title/tt0167261/?ref_=fn_t...
num_user_for_reviews                                                      2417
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 9.4e+07
title_year                                                                2002
actor_2_facebook_likes                                                    5000
imdb_score                                                                 8.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 340, dtype: object
color                                                                    Color
director_name                                                    Sergey Bodrov
num_critic_for_reviews                                                     175
duration                                                                   102
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     766
actor_2_name                                                    Djimon Hounsou
actor_1_facebook_likes                                                   12000
gross                                                              1.71769e+07
genres                                                Action|Adventure|Fantasy
actor_1_name                                                      Jeff Bridges
movie_title                                                       Seventh Son 
num_voted_users                                                          54501
cast_total_facebook_likes                                                17098
actor_3_name                                                   Olivia Williams
facenumber_in_poster                                                         4
plot_keywords                apprentice|demon|exorcism|master apprentice re...
movie_imdb_link              http://www.imdb.com/title/tt1121096/?ref_=fn_t...
num_user_for_reviews                                                       154
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 9.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 341, dtype: object
color                                                                    Color
director_name                                                       Simon West
num_critic_for_reviews                                                     199
duration                                                                   100
director_facebook_likes                                                    165
actor_3_facebook_likes                                                     240
actor_2_name                                                       Noah Taylor
actor_1_facebook_likes                                                   11000
gross                                                              1.31144e+08
genres                                       Action|Adventure|Fantasy|Thriller
actor_1_name                                               Angelina Jolie Pitt
movie_title                                           Lara Croft: Tomb Raider 
num_voted_users                                                         157016
cast_total_facebook_likes                                                12150
actor_3_name                                                      Chris Barrie
facenumber_in_poster                                                         1
plot_keywords                illuminati|planetary alignment|time|tomb|tomb ...
movie_imdb_link              http://www.imdb.com/title/tt0146316/?ref_=fn_t...
num_user_for_reviews                                                       824
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.15e+08
title_year                                                                2001
actor_2_facebook_likes                                                     509
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 342, dtype: object
color                                                                    Color
director_name                                                    Wally Pfister
num_critic_for_reviews                                                     355
duration                                                                   119
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     968
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   40000
gross                                                              2.30145e+07
genres                                   Drama|Mystery|Romance|Sci-Fi|Thriller
actor_1_name                                                       Johnny Depp
movie_title                                                     Transcendence 
num_voted_users                                                         172707
cast_total_facebook_likes                                                54031
actor_3_name                                               Clifton Collins Jr.
facenumber_in_poster                                                         1
plot_keywords                artificial intelligence|consciousness|power ou...
movie_imdb_link              http://www.imdb.com/title/tt2209764/?ref_=fn_t...
num_user_for_reviews                                                       462
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2014
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     37000
Name: 343, dtype: object
color                                                                    Color
director_name                                                     Joe Johnston
num_critic_for_reviews                                                     198
duration                                                                    92
director_facebook_likes                                                    394
actor_3_facebook_likes                                                     527
actor_2_name                                                     Trevor Morgan
actor_1_facebook_likes                                                     693
gross                                                              1.81166e+08
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                     Michael Jeter
movie_title                                                 Jurassic Park III 
num_voted_users                                                         219501
cast_total_facebook_likes                                                 2574
actor_3_name                                                 Alessandro Nivola
facenumber_in_poster                                                         0
plot_keywords                dinosaur|island|jurassic park|paleontologist|s...
movie_imdb_link              http://www.imdb.com/title/tt0163025/?ref_=fn_t...
num_user_for_reviews                                                      1236
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 9.3e+07
title_year                                                                2001
actor_2_facebook_likes                                                     595
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 344, dtype: object
color                                                                    Color
director_name                                                     Rupert Wyatt
num_critic_for_reviews                                                     529
duration                                                                   105
director_facebook_likes                                                     81
actor_3_facebook_likes                                                     779
actor_2_name                                                     David Oyelowo
actor_1_facebook_likes                                                   11000
gross                                                              1.76741e+08
genres                                            Action|Drama|Sci-Fi|Thriller
actor_1_name                                                      James Franco
movie_title                                    Rise of the Planet of the Apes 
num_voted_users                                                         403836
cast_total_facebook_likes                                                13118
actor_3_name                                                      Tyler Labine
facenumber_in_poster                                                         0
plot_keywords                alzheimer's disease|ape|chimpanzee|fire|when a...
movie_imdb_link              http://www.imdb.com/title/tt1318514/?ref_=fn_t...
num_user_for_reviews                                                       646
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 9.3e+07
title_year                                                                2011
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     47000
Name: 345, dtype: object
color                                                                    Color
director_name                                                      Mark Waters
num_critic_for_reviews                                                     198
duration                                                                   107
director_facebook_likes                                                     70
actor_3_facebook_likes                                                     330
actor_2_name                                                       Tod Fennell
actor_1_facebook_likes                                                     770
gross                                                              7.11487e+07
genres                                                Adventure|Family|Fantasy
actor_1_name                                                      Martin Short
movie_title                                         The Spiderwick Chronicles 
num_voted_users                                                          68935
cast_total_facebook_likes                                                 1614
actor_3_name                                                    Joan Plowright
facenumber_in_poster                                                         0
plot_keywords                actor playing multiple roles|brownie the creat...
movie_imdb_link              http://www.imdb.com/title/tt0416236/?ref_=fn_t...
num_user_for_reviews                                                       125
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   9e+07
title_year                                                                2008
actor_2_facebook_likes                                                     419
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 346, dtype: object
color                                                                    Color
director_name                                                       John Moore
num_critic_for_reviews                                                     412
duration                                                                   101
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     476
actor_2_name                                                       Cole Hauser
actor_1_facebook_likes                                                   13000
gross                                                              6.73444e+07
genres                                                         Action|Thriller
actor_1_name                                                      Bruce Willis
movie_title                                            A Good Day to Die Hard 
num_voted_users                                                         165618
cast_total_facebook_likes                                                15481
actor_3_name                                               Megalyn Echikunwoke
facenumber_in_poster                                                         2
plot_keywords                               bomb|cia|courthouse|escape|russian
movie_imdb_link              http://www.imdb.com/title/tt1606378/?ref_=fn_t...
num_user_for_reviews                                                       503
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 9.2e+07
title_year                                                                2013
actor_2_facebook_likes                                                     787
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     66000
Name: 347, dtype: object
color                                                                    Color
director_name                                                 John Lee Hancock
num_critic_for_reviews                                                     106
duration                                                                   137
director_facebook_likes                                                    102
actor_3_facebook_likes                                                     877
actor_2_name                                                       Marc Blucas
actor_1_facebook_likes                                                    2000
gross                                                              2.24064e+07
genres                                               Drama|History|War|Western
actor_1_name                                                      Dennis Quaid
movie_title                                                         The Alamo 
num_voted_users                                                          16832
cast_total_facebook_likes                                                 5780
actor_3_name                                                       Jordi Mollà
facenumber_in_poster                                                         0
plot_keywords                                army|dictator|general|texan|texas
movie_imdb_link              http://www.imdb.com/title/tt0318974/?ref_=fn_t...
num_user_for_reviews                                                       267
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.07e+08
title_year                                                                2004
actor_2_facebook_likes                                                     973
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       701
Name: 348, dtype: object
color                                                                    Color
director_name                                                        Brad Bird
num_critic_for_reviews                                                     283
duration                                                                   115
director_facebook_likes                                                    663
actor_3_facebook_likes                                                      55
actor_2_name                                                   Craig T. Nelson
actor_1_facebook_likes                                                    1000
gross                                                              2.61438e+08
genres                                       Action|Adventure|Animation|Family
actor_1_name                                                      Holly Hunter
movie_title                                                   The Incredibles 
num_voted_users                                                         479166
cast_total_facebook_likes                                                 1901
actor_3_name                                                        Lou Romano
facenumber_in_poster                                                         0
plot_keywords                             hero|island|lawsuit|secret|superhero
movie_imdb_link              http://www.imdb.com/title/tt0317705/?ref_=fn_t...
num_user_for_reviews                                                       815
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 9.2e+07
title_year                                                                2004
actor_2_facebook_likes                                                     723
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 349, dtype: object
color                                                                    Color
director_name                                                     Renny Harlin
num_critic_for_reviews                                                      61
duration                                                                   124
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     810
actor_2_name                                                    Frank Langella
actor_1_facebook_likes                                                    1000
gross                                                                  1.1e+07
genres                                                 Action|Adventure|Comedy
actor_1_name                                             Christopher Masterson
movie_title                                                  Cutthroat Island 
num_voted_users                                                          21102
cast_total_facebook_likes                                                 3611
actor_3_name                                                    Matthew Modine
facenumber_in_poster                                                         3
plot_keywords                   latin|pirate|pirate ship|treasure|treasure map
movie_imdb_link              http://www.imdb.com/title/tt0112760/?ref_=fn_t...
num_user_for_reviews                                                       169
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 9.8e+07
title_year                                                                1995
actor_2_facebook_likes                                                     903
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 350, dtype: object
color                                                                    Color
director_name                                                   Chris Columbus
num_critic_for_reviews                                                     217
duration                                                                   118
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                    Rosario Dawson
actor_1_facebook_likes                                                    8000
gross                                                              8.87617e+07
genres                                                Adventure|Family|Fantasy
actor_1_name                                                      Logan Lerman
movie_title                  Percy Jackson & the Olympians: The Lightning T...
num_voted_users                                                         141179
cast_total_facebook_likes                                                14024
actor_3_name                                                      Steve Coogan
facenumber_in_poster                                                         0
plot_keywords                 greek|lightning|lightning bolt|poseidon|teenager
movie_imdb_link              http://www.imdb.com/title/tt0814255/?ref_=fn_t...
num_user_for_reviews                                                       419
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 9.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                      9000
Name: 351, dtype: object
color                                                                    Color
director_name                                                 Barry Sonnenfeld
num_critic_for_reviews                                                     175
duration                                                                    98
director_facebook_likes                                                    188
actor_3_facebook_likes                                                     602
actor_2_name                                                          Rip Torn
actor_1_facebook_likes                                                   10000
gross                                                              2.50148e+08
genres                                  Adventure|Comedy|Family|Mystery|Sci-Fi
actor_1_name                                                        Will Smith
movie_title                                                      Men in Black 
num_voted_users                                                         403014
cast_total_facebook_likes                                                12998
actor_3_name                                                  Linda Fiorentino
facenumber_in_poster                                                         0
plot_keywords                alien|box office hit|flying saucer|laser gun|w...
movie_imdb_link              http://www.imdb.com/title/tt0119654/?ref_=fn_t...
num_user_for_reviews                                                       289
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+07
title_year                                                                1997
actor_2_facebook_likes                                                     826
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 352, dtype: object
color                                                                    Color
director_name                                                    John Lasseter
num_critic_for_reviews                                                     191
duration                                                                    82
director_facebook_likes                                                    487
actor_3_facebook_likes                                                     967
actor_2_name                                                 John Ratzenberger
actor_1_facebook_likes                                                   15000
gross                                                              2.45823e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                         Tom Hanks
movie_title                                                       Toy Story 2 
num_voted_users                                                         385871
cast_total_facebook_likes                                                21275
actor_3_name                                                      Wayne Knight
facenumber_in_poster                                                         2
plot_keywords                                  collector|dog|friend|rescue|toy
movie_imdb_link              http://www.imdb.com/title/tt0120363/?ref_=fn_t...
num_user_for_reviews                                                       515
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   9e+07
title_year                                                                1999
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 353, dtype: object
color                                                                    Color
director_name                                                       Tony Scott
num_critic_for_reviews                                                     316
duration                                                                    98
director_facebook_likes                                                  12000
actor_3_facebook_likes                                                    1000
actor_2_name                                                    Rosario Dawson
actor_1_facebook_likes                                                   18000
gross                                                              8.15575e+07
genres                                                         Action|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                                       Unstoppable 
num_voted_users                                                         149947
cast_total_facebook_likes                                                25780
actor_3_name                                                      Ethan Suplee
facenumber_in_poster                                                         1
plot_keywords                freight train|race against time|runaway train|...
movie_imdb_link              http://www.imdb.com/title/tt0477080/?ref_=fn_t...
num_user_for_reviews                                                       326
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2010
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 354, dtype: object
color                                                                    Color
director_name                                                     Brett Ratner
num_critic_for_reviews                                                     127
duration                                                                    90
director_facebook_likes                                                    420
actor_3_facebook_likes                                                     141
actor_2_name                                                         John Lone
actor_1_facebook_likes                                                     191
gross                                                              2.26138e+08
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                                      Mei Melançon
movie_title                                                       Rush Hour 2 
num_voted_users                                                         160440
cast_total_facebook_likes                                                  664
actor_3_name                                                      Harris Yulin
facenumber_in_poster                                                         2
plot_keywords                               boat|gang|hong kong|triad|vacation
movie_imdb_link              http://www.imdb.com/title/tt0266915/?ref_=fn_t...
num_user_for_reviews                                                       394
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+07
title_year                                                                2001
actor_2_facebook_likes                                                     165
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 355, dtype: object
color                                                                    Color
director_name                                                  Robert Zemeckis
num_critic_for_reviews                                                     185
duration                                                                   130
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     568
actor_2_name                                                    Amber Valletta
actor_1_facebook_likes                                                   11000
gross                                                               1.5537e+08
genres                                   Drama|Fantasy|Horror|Mystery|Thriller
actor_1_name                                                     Harrison Ford
movie_title                                                 What Lies Beneath 
num_voted_users                                                          98403
cast_total_facebook_likes                                                12890
actor_3_name                                                      Miranda Otto
facenumber_in_poster                                                         0
plot_keywords                      ghost|haunted house|research|secret|vermont
movie_imdb_link              http://www.imdb.com/title/tt0161081/?ref_=fn_t...
num_user_for_reviews                                                       683
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2000
actor_2_facebook_likes                                                     627
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 356, dtype: object
color                                                                    Color
director_name                                                        Phil Lord
num_critic_for_reviews                                                     191
duration                                                                    90
director_facebook_likes                                                     97
actor_3_facebook_likes                                                      56
actor_2_name                                                Bobb'e J. Thompson
actor_1_facebook_likes                                                     622
gross                                                               1.2487e+08
genres                                          Animation|Comedy|Family|Sci-Fi
actor_1_name                                                        Will Forte
movie_title                                 Cloudy with a Chance of Meatballs 
num_voted_users                                                         152601
cast_total_facebook_likes                                                 1227
actor_3_name                                                          Al Roker
facenumber_in_poster                                                         1
plot_keywords                            food|giant food|mayor|sardine|weather
movie_imdb_link              http://www.imdb.com/title/tt0844471/?ref_=fn_t...
num_user_for_reviews                                                       156
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+08
title_year                                                                2009
actor_2_facebook_likes                                                     526
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 357, dtype: object
color                                                                    Color
director_name                                                  Carlos Saldanha
num_critic_for_reviews                                                     188
duration                                                                    94
director_facebook_likes                                                    107
actor_3_facebook_likes                                                     117
actor_2_name                                                    Maile Flanagan
actor_1_facebook_likes                                                     835
gross                                                              1.96574e+08
genres                                Action|Adventure|Animation|Comedy|Family
actor_1_name                                                       Denis Leary
movie_title                                    Ice Age: Dawn of the Dinosaurs 
num_voted_users                                                         166791
cast_total_facebook_likes                                                 1258
actor_3_name                                                      Kelly Keaton
facenumber_in_poster                                                         0
plot_keywords                            egg|lost world|rescue|squirrel|weasel
movie_imdb_link              http://www.imdb.com/title/tt1080016/?ref_=fn_t...
num_user_for_reviews                                                       132
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   9e+07
title_year                                                                2009
actor_2_facebook_likes                                                     256
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 358, dtype: object
color                                                                    Color
director_name                                                      Ben Stiller
num_critic_for_reviews                                                     362
duration                                                                   114
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     423
actor_2_name                                                   Adrian Martinez
actor_1_facebook_likes                                                    3000
gross                                                              5.82291e+07
genres                                  Adventure|Comedy|Drama|Fantasy|Romance
actor_1_name                                                        Adam Scott
movie_title                                   The Secret Life of Walter Mitty 
num_voted_users                                                         236421
cast_total_facebook_likes                                                 5095
actor_3_name                                                     Joey Slotnick
facenumber_in_poster                                                         1
plot_keywords                daydream|life magazine|magazine|photographer|s...
movie_imdb_link              http://www.imdb.com/title/tt0359950/?ref_=fn_t...
num_user_for_reviews                                                       515
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   9e+07
title_year                                                                2013
actor_2_facebook_likes                                                     806
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     70000
Name: 359, dtype: object
color                                                                    Color
director_name                                                              McG
num_critic_for_reviews                                                     181
duration                                                                    94
director_facebook_likes                                                    368
actor_3_facebook_likes                                                     466
actor_2_name                                                         LL Cool J
actor_1_facebook_likes                                                   13000
gross                                                              1.25306e+08
genres                                  Action|Adventure|Comedy|Crime|Thriller
actor_1_name                                                       Bill Murray
movie_title                                                  Charlie's Angels 
num_voted_users                                                         145350
cast_total_facebook_likes                                                15419
actor_3_name                                                       Kelly Lynch
facenumber_in_poster                                                         0
plot_keywords                booty shake|box office hit|duct tape over mout...
movie_imdb_link              http://www.imdb.com/title/tt0160127/?ref_=fn_t...
num_user_for_reviews                                                       643
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 9.2e+07
title_year                                                                2000
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 360, dtype: object
color                                                                    Color
director_name                                                  Martin Scorsese
num_critic_for_reviews                                                     352
duration                                                                   151
director_facebook_likes                                                  17000
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Matt Damon
actor_1_facebook_likes                                                   29000
gross                                                              1.32373e+08
genres                                                    Crime|Drama|Thriller
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                      The Departed 
num_voted_users                                                         873649
cast_total_facebook_likes                                                45648
actor_3_name                                                      Ray Winstone
facenumber_in_poster                                                         0
plot_keywords                     boston|mole|police|undercover|undercover cop
movie_imdb_link              http://www.imdb.com/title/tt0407887/?ref_=fn_t...
num_user_for_reviews                                                      2054
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+07
title_year                                                                2006
actor_2_facebook_likes                                                   13000
imdb_score                                                                 8.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     29000
Name: 361, dtype: object
color                                                                    Color
director_name                                                    Tony Bancroft
num_critic_for_reviews                                                     143
duration                                                                    88
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     484
actor_2_name                                                  Harvey Fierstein
actor_1_facebook_likes                                                    2000
gross                                                              1.20618e+08
genres                          Adventure|Animation|Family|Fantasy|Musical|War
actor_1_name                                                       Ming-Na Wen
movie_title                                                             Mulan 
num_voted_users                                                         171792
cast_total_facebook_likes                                                 4478
actor_3_name                                                        June Foray
facenumber_in_poster                                                         0
plot_keywords                based on poem|based on true story|china|one wo...
movie_imdb_link              http://www.imdb.com/title/tt0120762/?ref_=fn_t...
num_user_for_reviews                                                       222
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   9e+07
title_year                                                                1998
actor_2_facebook_likes                                                     500
imdb_score                                                                 7.5
aspect_ratio                                                              1.66
movie_facebook_likes                                                     12000
Name: 362, dtype: object
color                                                                    Color
director_name                                                      Ben Stiller
num_critic_for_reviews                                                     308
duration                                                                   121
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     918
actor_2_name                                                      Steve Coogan
actor_1_facebook_likes                                                   21000
gross                                                              1.10417e+08
genres                                                           Action|Comedy
actor_1_name                                                 Robert Downey Jr.
movie_title                                                    Tropic Thunder 
num_voted_users                                                         307539
cast_total_facebook_likes                                                23484
actor_3_name                                                Brandon T. Jackson
facenumber_in_poster                                                         3
plot_keywords                film director|parody|spoof|vietnam|written and...
movie_imdb_link              http://www.imdb.com/title/tt0942385/?ref_=fn_t...
num_user_for_reviews                                                       577
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 9.2e+07
title_year                                                                2008
actor_2_facebook_likes                                                    1000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 363, dtype: object
color                                                                    Color
director_name                                                    David Fincher
num_critic_for_reviews                                                     517
duration                                                                   158
director_facebook_likes                                                  21000
actor_3_facebook_likes                                                     585
actor_2_name                                                     Goran Visnjic
actor_1_facebook_likes                                                   18000
gross                                                              1.02516e+08
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                      Robin Wright
movie_title                                   The Girl with the Dragon Tattoo 
num_voted_users                                                         330152
cast_total_facebook_likes                                                20388
actor_3_name                                                  Joely Richardson
facenumber_in_poster                                                         1
plot_keywords                computer hacker|hacker|investigation|journalis...
movie_imdb_link              http://www.imdb.com/title/tt1568346/?ref_=fn_t...
num_user_for_reviews                                                       632
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+07
title_year                                                                2011
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     54000
Name: 364, dtype: object
color                                                                    Color
director_name                                                   John McTiernan
num_critic_for_reviews                                                     148
duration                                                                   128
director_facebook_likes                                                    323
actor_3_facebook_likes                                                     489
actor_2_name                                                       Aldis Hodge
actor_1_facebook_likes                                                   13000
gross                                                              1.00012e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                      Bruce Willis
movie_title                                         Die Hard with a Vengeance 
num_voted_users                                                         299258
cast_total_facebook_likes                                                14274
actor_3_name                                                  Kevin Chamberlin
facenumber_in_poster                                                         1
plot_keywords                    bomb|detective|new york city|police|terrorist
movie_imdb_link              http://www.imdb.com/title/tt0112864/?ref_=fn_t...
num_user_for_reviews                                                       346
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+07
title_year                                                                1995
actor_2_facebook_likes                                                     559
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 365, dtype: object
color                                                                    Color
director_name                                                      Guy Ritchie
num_critic_for_reviews                                                     415
duration                                                                   128
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     727
actor_2_name                                                      Eddie Marsan
actor_1_facebook_likes                                                   21000
gross                                                              2.09019e+08
genres                                 Action|Adventure|Crime|Mystery|Thriller
actor_1_name                                                 Robert Downey Jr.
movie_title                                                   Sherlock Holmes 
num_voted_users                                                         477300
cast_total_facebook_likes                                                23996
actor_3_name                                                    Robert Maillet
facenumber_in_poster                                                         3
plot_keywords                black magic|bridge construction|professor mori...
movie_imdb_link              http://www.imdb.com/title/tt0988045/?ref_=fn_t...
num_user_for_reviews                                                       621
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+07
title_year                                                                2009
actor_2_facebook_likes                                                     979
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     20000
Name: 366, dtype: object
color                                                                    Color
director_name                                                Timur Bekmambetov
num_critic_for_reviews                                                       1
duration                                                                   141
director_facebook_likes                                                    335
actor_3_facebook_likes                                                     635
actor_2_name                                                      Ayelet Zurer
actor_1_facebook_likes                                                   11000
gross                                                                      NaN
genres                                                 Adventure|Drama|History
actor_1_name                                                    Morgan Freeman
movie_title                                                           Ben-Hur 
num_voted_users                                                             57
cast_total_facebook_likes                                                13379
actor_3_name                                                      Moises Arias
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2638144/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2016
actor_2_facebook_likes                                                     745
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 367, dtype: object
color                                                                    Color
director_name                                                   Gary Trousdale
num_critic_for_reviews                                                     146
duration                                                                    95
director_facebook_likes                                                     21
actor_3_facebook_likes                                                     503
actor_2_name                                                        Jim Varney
actor_1_facebook_likes                                                   12000
gross                                                               8.4037e+07
genres                        Action|Adventure|Animation|Family|Fantasy|Sci-Fi
actor_1_name                                                     Leonard Nimoy
movie_title                                         Atlantis: The Lost Empire 
num_voted_users                                                          72591
cast_total_facebook_likes                                                15237
actor_3_name                                                       Cree Summer
facenumber_in_poster                                                         0
plot_keywords                          atlantis|crew|expedition|journal|museum
movie_imdb_link              http://www.imdb.com/title/tt0230011/?ref_=fn_t...
num_user_for_reviews                                                       289
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+08
title_year                                                                2001
actor_2_facebook_likes                                                     802
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 368, dtype: object
color                                                                    Color
director_name                                                      Walt Becker
num_critic_for_reviews                                                      70
duration                                                                    92
director_facebook_likes                                                     12
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Joshua Mikel
actor_1_facebook_likes                                                   35000
gross                                                              8.58848e+07
genres                         Adventure|Animation|Comedy|Family|Fantasy|Music
actor_1_name                                                      Bella Thorne
movie_title                            Alvin and the Chipmunks: The Road Chip 
num_voted_users                                                           9418
cast_total_facebook_likes                                                38450
actor_3_name                                                   Jesse McCartney
facenumber_in_poster                                                         0
plot_keywords                chipmunk|highway travel|on the road|plane|road...
movie_imdb_link              http://www.imdb.com/title/tt2974918/?ref_=fn_t...
num_user_for_reviews                                                        53
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   9e+07
title_year                                                                2015
actor_2_facebook_likes                                                    1000
imdb_score                                                                   5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 369, dtype: object
color                                                                    Color
director_name                                                     Bryan Singer
num_critic_for_reviews                                                     269
duration                                                                   121
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     919
actor_2_name                                                     Tom Wilkinson
actor_1_facebook_likes                                                   10000
gross                                                              8.30775e+07
genres                                              Drama|History|Thriller|War
actor_1_name                                                        Tom Cruise
movie_title                                                          Valkyrie 
num_voted_users                                                         183247
cast_total_facebook_likes                                                14165
actor_3_name                                                Thomas Kretschmann
facenumber_in_poster                                                         0
plot_keywords                american actor playing foreigner|assassination...
movie_imdb_link              http://www.imdb.com/title/tt0985699/?ref_=fn_t...
num_user_for_reviews                                                       440
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 370, dtype: object
color                                                                    Color
director_name                                                     Dennis Dugan
num_critic_for_reviews                                                     198
duration                                                                   113
director_facebook_likes                                                    221
actor_3_facebook_likes                                                     503
actor_2_name                                                     Sayed Badreya
actor_1_facebook_likes                                                   11000
gross                                                              1.00019e+08
genres                                                           Action|Comedy
actor_1_name                                                      Adam Sandler
movie_title                                     You Don't Mess with the Zohan 
num_voted_users                                                         156348
cast_total_facebook_likes                                                13446
actor_3_name                                                      Kevin Nealon
facenumber_in_poster                                                         0
plot_keywords                     hair stylist|jew|landlord|muslim|palestinian
movie_imdb_link              http://www.imdb.com/title/tt0960144/?ref_=fn_t...
num_user_for_reviews                                                       380
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+07
title_year                                                                2008
actor_2_facebook_likes                                                     600
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 371, dtype: object
color                                                                    Color
director_name                                                   Chris Columbus
num_critic_for_reviews                                                     253
duration                                                                   106
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Adam Sandler
actor_1_facebook_likes                                                   22000
gross                                                              7.87476e+07
genres                                          Action|Animation|Comedy|Sci-Fi
actor_1_name                                                    Peter Dinklage
movie_title                                                            Pixels 
num_voted_users                                                          89770
cast_total_facebook_likes                                                35367
actor_3_name                                                          Josh Gad
facenumber_in_poster                                                         0
plot_keywords                alien|arcade game|chase|driving in reverse|vid...
movie_imdb_link              http://www.imdb.com/title/tt2120120/?ref_=fn_t...
num_user_for_reviews                                                       342
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.8e+07
title_year                                                                2015
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     39000
Name: 372, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     281
duration                                                                   146
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     681
actor_2_name                                                      William Hurt
actor_1_facebook_likes                                                    3000
gross                                                              7.86167e+07
genres                                                  Adventure|Drama|Sci-Fi
actor_1_name                                                 Haley Joel Osment
movie_title                                      A.I. Artificial Intelligence 
num_voted_users                                                         238747
cast_total_facebook_likes                                                 6217
actor_3_name                                                     Kevin Sussman
facenumber_in_poster                                                         0
plot_keywords                                 affection|boy|fairy|future|robot
movie_imdb_link              http://www.imdb.com/title/tt0212720/?ref_=fn_t...
num_user_for_reviews                                                      2153
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2001
actor_2_facebook_likes                                                     882
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 373, dtype: object
color                                                                    Color
director_name                                                      Rob Minkoff
num_critic_for_reviews                                                     122
duration                                                                    88
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     441
actor_2_name                                                    Rachael Harris
actor_1_facebook_likes                                                     691
gross                                                               7.5818e+07
genres                                    Comedy|Family|Fantasy|Horror|Mystery
actor_1_name                                                   Marsha Thomason
movie_title                                               The Haunted Mansion 
num_voted_users                                                          32049
cast_total_facebook_likes                                                 2622
actor_3_name                                               Marc John Jefferies
facenumber_in_poster                                                         0
plot_keywords                arachnophobia|crystal ball|ghost|haunted house...
movie_imdb_link              http://www.imdb.com/title/tt0338094/?ref_=fn_t...
num_user_for_reviews                                                       179
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   9e+07
title_year                                                                2003
actor_2_facebook_likes                                                     569
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       988
Name: 374, dtype: object
color                                                                    Color
director_name                                                  Robert Zemeckis
num_critic_for_reviews                                                     159
duration                                                                   150
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     135
actor_2_name                                                      Tom Skerritt
actor_1_facebook_likes                                                   11000
gross                                                              1.00854e+08
genres                                           Drama|Mystery|Sci-Fi|Thriller
actor_1_name                                               Matthew McConaughey
movie_title                                                           Contact 
num_voted_users                                                         200556
cast_total_facebook_likes                                                12289
actor_3_name                                                        Larry King
facenumber_in_poster                                                         2
plot_keywords                message from outer space|religion|religion ver...
movie_imdb_link              http://www.imdb.com/title/tt0118884/?ref_=fn_t...
num_user_for_reviews                                                       611
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   9e+07
title_year                                                                1997
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 375, dtype: object
color                                                                    Color
director_name                                                   Paul Verhoeven
num_critic_for_reviews                                                     180
duration                                                                   119
director_facebook_likes                                                    719
actor_3_facebook_likes                                                     423
actor_2_name                                                       Kim Dickens
actor_1_facebook_likes                                                     833
gross                                                              7.32093e+07
genres                                           Action|Horror|Sci-Fi|Thriller
actor_1_name                                                     Greg Grunberg
movie_title                                                        Hollow Man 
num_voted_users                                                         101834
cast_total_facebook_likes                                                 2356
actor_3_name                                                     Joey Slotnick
facenumber_in_poster                                                         0
plot_keywords                  experiment|research|scientist|suburb|surrealism
movie_imdb_link              http://www.imdb.com/title/tt0164052/?ref_=fn_t...
num_user_for_reviews                                                       628
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 9.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     624
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 376, dtype: object
color                                                                    Color
director_name                                                   Sydney Pollack
num_critic_for_reviews                                                     227
duration                                                                   128
director_facebook_likes                                                    521
actor_3_facebook_likes                                                     249
actor_2_name                                                     George Harris
actor_1_facebook_likes                                                     591
gross                                                              7.25154e+07
genres                                                  Crime|Mystery|Thriller
actor_1_name                                                      Curtiss Cook
movie_title                                                   The Interpreter 
num_voted_users                                                          86152
cast_total_facebook_likes                                                 2100
actor_3_name                                                    Michael Wright
facenumber_in_poster                                                         1
plot_keywords                 african|assassination|dialect|interpreter|threat
movie_imdb_link              http://www.imdb.com/title/tt0373926/?ref_=fn_t...
num_user_for_reviews                                                       411
language                                                            Aboriginal
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2005
actor_2_facebook_likes                                                     249
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 377, dtype: object
color                                                                    Color
director_name                                                 Thor Freudenthal
num_critic_for_reviews                                                     183
duration                                                                   106
director_facebook_likes                                                     87
actor_3_facebook_likes                                                     918
actor_2_name                                                      Leven Rambin
actor_1_facebook_likes                                                    8000
gross                                                              6.85587e+07
genres                                                Adventure|Family|Fantasy
actor_1_name                                                      Logan Lerman
movie_title                                    Percy Jackson: Sea of Monsters 
num_voted_users                                                          86627
cast_total_facebook_likes                                                10882
actor_3_name                                                Brandon T. Jackson
facenumber_in_poster                                                         0
plot_keywords                 golden fleece|half brother|magical tree|sea|tree
movie_imdb_link              http://www.imdb.com/title/tt1854564/?ref_=fn_t...
num_user_for_reviews                                                       204
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   9e+07
title_year                                                                2013
actor_2_facebook_likes                                                     956
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     28000
Name: 378, dtype: object
color                                                                    Color
director_name                                                      Jan de Bont
num_critic_for_reviews                                                     157
duration                                                                   117
director_facebook_likes                                                    101
actor_3_facebook_likes                                                    3000
actor_2_name                                               Angelina Jolie Pitt
actor_1_facebook_likes                                                   18000
gross                                                              6.56538e+07
genres                                                Action|Adventure|Fantasy
actor_1_name                                                     Gerard Butler
movie_title                        Lara Croft Tomb Raider: The Cradle of Life 
num_voted_users                                                         102747
cast_total_facebook_likes                                                33154
actor_3_name                                                    Djimon Hounsou
facenumber_in_poster                                                         1
plot_keywords                duology|female hero|female lead|orb|pandora's box
movie_imdb_link              http://www.imdb.com/title/tt0325703/?ref_=fn_t...
num_user_for_reviews                                                       316
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 9.5e+07
title_year                                                                2003
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 379, dtype: object
color                                                                    Color
director_name                                                       Jon M. Chu
num_critic_for_reviews                                                     196
duration                                                                   129
director_facebook_likes                                                    209
actor_3_facebook_likes                                                     886
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   11000
gross                                                              6.46854e+07
genres                          Action|Adventure|Comedy|Crime|Mystery|Thriller
actor_1_name                                                  Daniel Radcliffe
movie_title                                                  Now You See Me 2 
num_voted_users                                                          40862
cast_total_facebook_likes                                                23031
actor_3_name                                                      Sanaa Lathan
facenumber_in_poster                                                         6
plot_keywords                card trick|london england|magician|rain machin...
movie_imdb_link              http://www.imdb.com/title/tt3110958/?ref_=fn_t...
num_user_for_reviews                                                       139
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+07
title_year                                                                2016
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 380, dtype: object
color                                                                    Color
director_name                                                    Phillip Noyce
num_critic_for_reviews                                                      64
duration                                                                   116
director_facebook_likes                                                    176
actor_3_facebook_likes                                                      84
actor_2_name                                                     Michael Byrne
actor_1_facebook_likes                                                     192
gross                                                              6.13554e+07
genres                                Action|Adventure|Romance|Sci-Fi|Thriller
actor_1_name                                                    Alun Armstrong
movie_title                                                         The Saint 
num_voted_users                                                          52136
cast_total_facebook_likes                                                  475
actor_3_name                                                     Velibor Topic
facenumber_in_poster                                                         0
plot_keywords                     cold fusion|disguise|energy|fusion|the saint
movie_imdb_link              http://www.imdb.com/title/tt0120053/?ref_=fn_t...
num_user_for_reviews                                                       184
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.8e+07
title_year                                                                1997
actor_2_facebook_likes                                                     117
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 381, dtype: object
color                                                                    Color
director_name                                                       Tony Scott
num_critic_for_reviews                                                     142
duration                                                                   114
director_facebook_likes                                                  12000
actor_3_facebook_likes                                                     307
actor_2_name                                                   Stephen Dillane
actor_1_facebook_likes                                                   11000
gross                                                                    26871
genres                                                   Action|Crime|Thriller
actor_1_name                                                         Brad Pitt
movie_title                                                          Spy Game 
num_voted_users                                                         121259
cast_total_facebook_likes                                                12499
actor_3_name                                               Catherine McCormack
facenumber_in_poster                                                         2
plot_keywords                         china|cia|cold war|friendship|retirement
movie_imdb_link              http://www.imdb.com/title/tt0266987/?ref_=fn_t...
num_user_for_reviews                                                       361
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                 9.2e+07
title_year                                                                2001
actor_2_facebook_likes                                                     577
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 382, dtype: object
color                                                                    Color
director_name                                                   Brian De Palma
num_critic_for_reviews                                                     181
duration                                                                   114
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     281
actor_2_name                                                    Connie Nielsen
actor_1_facebook_likes                                                    3000
gross                                                              6.08746e+07
genres                                               Adventure|Sci-Fi|Thriller
actor_1_name                                                       Don Cheadle
movie_title                                                   Mission to Mars 
num_voted_users                                                          60467
cast_total_facebook_likes                                                 4902
actor_3_name                                                       Kim Delaney
facenumber_in_poster                                                         0
plot_keywords                astronaut|mars|mars the planet|outer space|zer...
movie_imdb_link              http://www.imdb.com/title/tt0183523/?ref_=fn_t...
num_user_for_reviews                                                       949
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   9e+07
title_year                                                                2000
actor_2_facebook_likes                                                     933
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 383, dtype: object
color                                                                    Color
director_name                                                  Carlos Saldanha
num_critic_for_reviews                                                     240
duration                                                                    96
director_facebook_likes                                                    107
actor_3_facebook_likes                                                     350
actor_2_name                                                       Wanda Sykes
actor_1_facebook_likes                                                   11000
gross                                                              1.43618e+08
genres                               Adventure|Animation|Comedy|Family|Musical
actor_1_name                                                     Anne Hathaway
movie_title                                                               Rio 
num_voted_users                                                         165333
cast_total_facebook_likes                                                12071
actor_3_name                                                         Will.i.am
facenumber_in_poster                                                         0
plot_keywords                          bird|brazilian|cockatoo|macaw|minnesota
movie_imdb_link              http://www.imdb.com/title/tt1436562/?ref_=fn_t...
num_user_for_reviews                                                       186
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   9e+07
title_year                                                                2011
actor_2_facebook_likes                                                     560
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     19000
Name: 384, dtype: object
color                                                                    Color
director_name                                                   Chris Columbus
num_critic_for_reviews                                                      93
duration                                                                   132
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     957
actor_2_name                                                      Oliver Platt
actor_1_facebook_likes                                                   49000
gross                                                              5.82208e+07
genres                                                     Comedy|Drama|Sci-Fi
actor_1_name                                                    Robin Williams
movie_title                                                  Bicentennial Man 
num_voted_users                                                          87785
cast_total_facebook_likes                                                55254
actor_3_name                                              John Michael Higgins
facenumber_in_poster                                                         0
plot_keywords                23rd century|android|artificial intelligence|d...
movie_imdb_link              http://www.imdb.com/title/tt0182789/?ref_=fn_t...
num_user_for_reviews                                                       362
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+08
title_year                                                                1999
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 385, dtype: object
color                                                                    Color
director_name                                                     Mick Jackson
num_critic_for_reviews                                                      84
duration                                                                   104
director_facebook_likes                                                     81
actor_3_facebook_likes                                                     612
actor_2_name                                                        Anne Heche
actor_1_facebook_likes                                                    3000
gross                                                              4.74741e+07
genres                                            Action|Drama|Sci-Fi|Thriller
actor_1_name                                                       Don Cheadle
movie_title                                                           Volcano 
num_voted_users                                                          58227
cast_total_facebook_likes                                                 5062
actor_3_name                                                     Gaby Hoffmann
facenumber_in_poster                                                         0
plot_keywords                              earthquake|fire|lava|rescue|volcano
movie_imdb_link              http://www.imdb.com/title/tt0120461/?ref_=fn_t...
num_user_for_reviews                                                       181
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+07
title_year                                                                1997
actor_2_facebook_likes                                                     643
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      2000
Name: 386, dtype: object
color                                                                    Color
director_name                                                   Alan J. Pakula
num_critic_for_reviews                                                      66
duration                                                                   111
director_facebook_likes                                                     79
actor_3_facebook_likes                                                    2000
actor_2_name                                                         Brad Pitt
actor_1_facebook_likes                                                   11000
gross                                                              4.28772e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                     Harrison Ford
movie_title                                                   The Devil's Own 
num_voted_users                                                          45602
cast_total_facebook_likes                                                26088
actor_3_name                                                 Natascha McElhone
facenumber_in_poster                                                         0
plot_keywords                friendship|murder|northern ireland|police offi...
movie_imdb_link              http://www.imdb.com/title/tt0118972/?ref_=fn_t...
num_user_for_reviews                                                       114
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.6e+07
title_year                                                                1997
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       979
Name: 387, dtype: object
color                                                                    Color
director_name                                                  Kathryn Bigelow
num_critic_for_reviews                                                     136
duration                                                                   138
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     123
actor_2_name                                                 Christian Camargo
actor_1_facebook_likes                                                   14000
gross                                                              3.51687e+07
genres                                              Drama|History|Thriller|War
actor_1_name                                                       Liam Neeson
movie_title                                              K-19: The Widowmaker 
num_voted_users                                                          49311
cast_total_facebook_likes                                                15149
actor_3_name                                                      Lex Shrapnel
facenumber_in_poster                                                         1
plot_keywords                courage|radiation sickness|radioactive contami...
movie_imdb_link              http://www.imdb.com/title/tt0267626/?ref_=fn_t...
num_user_for_reviews                                                       278
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2002
actor_2_facebook_likes                                                     602
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 388, dtype: object
color                                                                    Color
director_name                                                       Josh Trank
num_critic_for_reviews                                                     369
duration                                                                   100
director_facebook_likes                                                    128
actor_3_facebook_likes                                                      78
actor_2_name                                                     Reg E. Cathey
actor_1_facebook_likes                                                     596
gross                                                              5.61142e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                  Tim Blake Nelson
movie_title                                                    Fantastic Four 
num_voted_users                                                         110486
cast_total_facebook_likes                                                 1261
actor_3_name                                                     Tim Heidecker
facenumber_in_poster                                                         3
plot_keywords                box office flop|critically bashed|portal|telep...
movie_imdb_link              http://www.imdb.com/title/tt1502712/?ref_=fn_t...
num_user_for_reviews                                                       695
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+08
title_year                                                                2015
actor_2_facebook_likes                                                     360
imdb_score                                                                 4.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     41000
Name: 389, dtype: object
color                                                                    Color
director_name                                                      John Milius
num_critic_for_reviews                                                     166
duration                                                                   129
director_facebook_likes                                                    468
actor_3_facebook_likes                                                     183
actor_2_name                                                              Mako
actor_1_facebook_likes                                                     919
gross                                                              3.75674e+07
genres                                                       Adventure|Fantasy
actor_1_name                                                     William Smith
movie_title                                               Conan the Barbarian 
num_voted_users                                                         113065
cast_total_facebook_likes                                                 2024
actor_3_name                                                   Sandahl Bergman
facenumber_in_poster                                                         0
plot_keywords                actual animal killed|cult|evil sorcerer|gladia...
movie_imdb_link              http://www.imdb.com/title/tt0082198/?ref_=fn_t...
num_user_for_reviews                                                       337
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   2e+07
title_year                                                                1982
actor_2_facebook_likes                                                     691
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 390, dtype: object
color                                                                    Color
director_name                                                       Ron Howard
num_critic_for_reviews                                                     201
duration                                                                   144
director_facebook_likes                                                   2000
actor_3_facebook_likes                                                     537
actor_2_name                                                      Bruce McGill
actor_1_facebook_likes                                                     680
gross                                                              6.16443e+07
genres                                                   Biography|Drama|Sport
actor_1_name                                                   Paddy Considine
movie_title                                                    Cinderella Man 
num_voted_users                                                         148238
cast_total_facebook_likes                                                 2523
actor_3_name                                                  Rosemarie DeWitt
facenumber_in_poster                                                         0
plot_keywords                         boxer|boxing|dream|great depression|love
movie_imdb_link              http://www.imdb.com/title/tt0352248/?ref_=fn_t...
num_user_for_reviews                                                       529
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.8e+07
title_year                                                                2005
actor_2_facebook_likes                                                     655
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 391, dtype: object
color                                                                    Color
director_name                                             Andrey Konchalovskiy
num_critic_for_reviews                                                      47
duration                                                                   110
director_facebook_likes                                                     96
actor_3_facebook_likes                                                     554
actor_2_name                                                       Nathan Lane
actor_1_facebook_likes                                                     887
gross                                                                   190562
genres                                           Action|Family|Fantasy|Musical
actor_1_name                                                 Shirley Henderson
movie_title                                              The Nutcracker in 3D 
num_voted_users                                                           2508
cast_total_facebook_likes                                                 2728
actor_3_name                                                  Richard E. Grant
facenumber_in_poster                                                         0
plot_keywords                box office flop|christmas|christmas eve|critic...
movie_imdb_link              http://www.imdb.com/title/tt1041804/?ref_=fn_t...
num_user_for_reviews                                                        24
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                   9e+07
title_year                                                                2010
actor_2_facebook_likes                                                     886
imdb_score                                                                 4.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       788
Name: 392, dtype: object
color                                                          Black and White
director_name                                                        Gary Ross
num_critic_for_reviews                                                     175
duration                                                                   140
director_facebook_likes                                                    378
actor_3_facebook_likes                                                     599
actor_2_name                                                  Michael Angarano
actor_1_facebook_likes                                                   12000
gross                                                              1.20147e+08
genres                                                     Drama|History|Sport
actor_1_name                                                      Jeff Bridges
movie_title                                                        Seabiscuit 
num_voted_users                                                          57661
cast_total_facebook_likes                                                13808
actor_3_name                                                   Michael O'Neill
facenumber_in_poster                                                         0
plot_keywords                        horse|horse racing|jockey|limp|seabiscuit
movie_imdb_link              http://www.imdb.com/title/tt0329575/?ref_=fn_t...
num_user_for_reviews                                                       455
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.7e+07
title_year                                                                2003
actor_2_facebook_likes                                                     947
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 393, dtype: object
color                                                                    Color
director_name                                                      Jan de Bont
num_critic_for_reviews                                                     114
duration                                                                   113
director_facebook_likes                                                    101
actor_3_facebook_likes                                                     848
actor_2_name                                                         Alan Ruck
actor_1_facebook_likes                                                   22000
gross                                                              2.41688e+08
genres                                         Action|Adventure|Drama|Thriller
actor_1_name                                            Philip Seymour Hoffman
movie_title                                                           Twister 
num_voted_users                                                         144053
cast_total_facebook_likes                                                26239
actor_3_name                                                        Jami Gertz
facenumber_in_poster                                                         0
plot_keywords                            device|disaster|divorce|storm|tornado
movie_imdb_link              http://www.imdb.com/title/tt0117998/?ref_=fn_t...
num_user_for_reviews                                                       395
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 9.2e+07
title_year                                                                1996
actor_2_facebook_likes                                                     946
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 394, dtype: object
color                                                                    Color
director_name                                                        Rob Cohen
num_critic_for_reviews                                                     187
duration                                                                   106
director_facebook_likes                                                    357
actor_3_facebook_likes                                                    4000
actor_2_name                                                        Vin Diesel
actor_1_facebook_likes                                                   23000
gross                                                              1.44512e+08
genres                                                   Action|Crime|Thriller
actor_1_name                                                       Paul Walker
movie_title                                          The Fast and the Furious 
num_voted_users                                                         272223
cast_total_facebook_likes                                                45327
actor_3_name                                                  Jordana Brewster
facenumber_in_poster                                                         2
plot_keywords                eighteen wheeler|illegal street racing|truck|t...
movie_imdb_link              http://www.imdb.com/title/tt0232500/?ref_=fn_t...
num_user_for_reviews                                                       988
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 3.8e+07
title_year                                                                2001
actor_2_facebook_likes                                                   14000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     14000
Name: 395, dtype: object
color                                                                    Color
director_name                                                  Robert Zemeckis
num_critic_for_reviews                                                     221
duration                                                                   143
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     272
actor_2_name                                                      Paul Sanchez
actor_1_facebook_likes                                                   15000
gross                                                               2.3363e+08
genres                                                 Adventure|Drama|Romance
actor_1_name                                                         Tom Hanks
movie_title                                                         Cast Away 
num_voted_users                                                         394317
cast_total_facebook_likes                                                15838
actor_3_name                                                       Nick Searcy
facenumber_in_poster                                                         1
plot_keywords                christmas|island|love|survival|talking to inan...
movie_imdb_link              http://www.imdb.com/title/tt0162222/?ref_=fn_t...
num_user_for_reviews                                                      1051
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+07
title_year                                                                2000
actor_2_facebook_likes                                                     410
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     23000
Name: 396, dtype: object
color                                                                    Color
director_name                                                    George Miller
num_critic_for_reviews                                                     206
duration                                                                   108
director_facebook_likes                                                    750
actor_3_facebook_likes                                                     971
actor_2_name                                                      Hugh Jackman
actor_1_facebook_likes                                                   49000
gross                                                              1.97993e+08
genres                                   Animation|Comedy|Family|Music|Romance
actor_1_name                                                    Robin Williams
movie_title                                                        Happy Feet 
num_voted_users                                                         132501
cast_total_facebook_likes                                                70996
actor_3_name                                                   Elizabeth Daily
facenumber_in_poster                                                         0
plot_keywords                        dance|emperor penguin|friend|penguin|song
movie_imdb_link              http://www.imdb.com/title/tt0366548/?ref_=fn_t...
num_user_for_reviews                                                       548
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+08
title_year                                                                2006
actor_2_facebook_likes                                                   20000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 397, dtype: object
color                                                                    Color
director_name                                                  Paul Greengrass
num_critic_for_reviews                                                     239
duration                                                                   108
director_facebook_likes                                                    521
actor_3_facebook_likes                                                     129
actor_2_name                                                        Joan Allen
actor_1_facebook_likes                                                   13000
gross                                                              1.76049e+08
genres                                                 Action|Mystery|Thriller
actor_1_name                                                        Matt Damon
movie_title                                              The Bourne Supremacy 
num_voted_users                                                         348232
cast_total_facebook_likes                                                14161
actor_3_name                                                  Oksana Akinshina
facenumber_in_poster                                                         1
plot_keywords                assassin|car chase|cia|hidden truth|one agains...
movie_imdb_link              http://www.imdb.com/title/tt0372183/?ref_=fn_t...
num_user_for_reviews                                                       806
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     805
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 398, dtype: object
color                                                                    Color
director_name                                                Wolfgang Petersen
num_critic_for_reviews                                                     142
duration                                                                   124
director_facebook_likes                                                    249
actor_3_facebook_likes                                                     936
actor_2_name                                                       Gary Oldman
actor_1_facebook_likes                                                   11000
gross                                                              1.72621e+08
genres                                         Action|Adventure|Drama|Thriller
actor_1_name                                                     Harrison Ford
movie_title                                                     Air Force One 
num_voted_users                                                         146134
cast_total_facebook_likes                                                23603
actor_3_name                                                    Dean Stockwell
facenumber_in_poster                                                         1
plot_keywords                  ex soldier|hijacker|hostage|president|terrorist
movie_imdb_link              http://www.imdb.com/title/tt0118571/?ref_=fn_t...
num_user_for_reviews                                                       393
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.5e+07
title_year                                                                1997
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 399, dtype: object
color                                                                    Color
director_name                                                Steven Soderbergh
num_critic_for_reviews                                                     186
duration                                                                   116
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     471
actor_2_name                                                        Bernie Mac
actor_1_facebook_likes                                                   11000
gross                                                              1.83406e+08
genres                                                          Crime|Thriller
actor_1_name                                                         Brad Pitt
movie_title                                                    Ocean's Eleven 
num_voted_users                                                         402645
cast_total_facebook_likes                                                13028
actor_3_name                                                     Elliott Gould
facenumber_in_poster                                                         4
plot_keywords                card dealer|casino|criminal mastermind|recruit...
movie_imdb_link              http://www.imdb.com/title/tt0240772/?ref_=fn_t...
num_user_for_reviews                                                       845
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.5e+07
title_year                                                                2001
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 400, dtype: object
color                                                                    Color
director_name                                               Paul W.S. Anderson
num_critic_for_reviews                                                     228
duration                                                                   110
director_facebook_likes                                                    545
actor_3_facebook_likes                                                    5000
actor_2_name                                                      Logan Lerman
actor_1_facebook_likes                                                   14000
gross                                                              2.03153e+07
genres                                                Action|Adventure|Romance
actor_1_name                                                    Milla Jovovich
movie_title                                              The Three Musketeers 
num_voted_users                                                          88542
cast_total_facebook_likes                                                27694
actor_3_name                                                     Orlando Bloom
facenumber_in_poster                                                         8
plot_keywords                box office flop|cardinal richelieu|critically ...
movie_imdb_link              http://www.imdb.com/title/tt1509767/?ref_=fn_t...
num_user_for_reviews                                                       254
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                    8000
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     19000
Name: 401, dtype: object
color                                                                    Color
director_name                                               Genndy Tartakovsky
num_critic_for_reviews                                                     256
duration                                                                    91
director_facebook_likes                                                    266
actor_3_facebook_likes                                                   11000
actor_2_name                                                      Adam Sandler
actor_1_facebook_likes                                                   12000
gross                                                              1.48313e+08
genres                                         Animation|Comedy|Family|Fantasy
actor_1_name                                                     Steve Buscemi
movie_title                                                Hotel Transylvania 
num_voted_users                                                         164148
cast_total_facebook_likes                                                37142
actor_3_name                                                        Jon Lovitz
facenumber_in_poster                                                         2
plot_keywords                 dracula|hotel|invisible man|monster|transylvania
movie_imdb_link              http://www.imdb.com/title/tt0837562/?ref_=fn_t...
num_user_for_reviews                                                       168
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 8.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     28000
Name: 402, dtype: object
color                                                                    Color
director_name                                                       Kevin Lima
num_critic_for_reviews                                                     222
duration                                                                   107
director_facebook_likes                                                     36
actor_3_facebook_likes                                                     118
actor_2_name                                                        Teala Dunn
actor_1_facebook_likes                                                     283
gross                                                              1.27707e+08
genres                         Animation|Comedy|Family|Fantasy|Musical|Romance
actor_1_name                                                      Jeff Bennett
movie_title                                                         Enchanted 
num_voted_users                                                         142496
cast_total_facebook_likes                                                  662
actor_3_name                                                   Fred Tatasciore
facenumber_in_poster                                                         2
plot_keywords                           fairy tale|lawyer|love|new york|prince
movie_imdb_link              http://www.imdb.com/title/tt0461770/?ref_=fn_t...
num_user_for_reviews                                                       399
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 8.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     142
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 403, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                     103
duration                                                                    44
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     148
actor_2_name                                                    Scott Thompson
actor_1_facebook_likes                                                     544
gross                                                                      NaN
genres                                     Crime|Drama|Horror|Mystery|Thriller
actor_1_name                                                Caroline Dhavernas
movie_title                                              Hannibal             
num_voted_users                                                         159910
cast_total_facebook_likes                                                  996
actor_3_name                                                    Hettienne Park
facenumber_in_poster                                                         1
plot_keywords                  blood|cannibalism|fbi|manipulation|psychiatrist
movie_imdb_link              http://www.imdb.com/title/tt2243973/?ref_=fn_t...
num_user_for_reviews                                                       270
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     183
imdb_score                                                                 8.6
aspect_ratio                                                              1.78
movie_facebook_likes                                                     59000
Name: 404, dtype: object
color                                                                    Color
director_name                                                  Daniel Espinosa
num_critic_for_reviews                                                     298
duration                                                                   115
director_facebook_likes                                                     79
actor_3_facebook_likes                                                     820
actor_2_name                                                     Ryan Reynolds
actor_1_facebook_likes                                                   18000
gross                                                               1.2615e+08
genres                                           Action|Crime|Mystery|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                                        Safe House 
num_voted_users                                                         166693
cast_total_facebook_likes                                                36237
actor_3_name                                                       Sam Shepard
facenumber_in_poster                                                         1
plot_keywords                    cia|cia agent|consulate|on the run|safe house
movie_imdb_link              http://www.imdb.com/title/tt1599348/?ref_=fn_t...
num_user_for_reviews                                                       276
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                   16000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     19000
Name: 405, dtype: object
color                                                                    Color
director_name                                                       Kevin Lima
num_critic_for_reviews                                                      84
duration                                                                   100
director_facebook_likes                                                     36
actor_3_facebook_likes                                                     439
actor_2_name                                                         Eric Idle
actor_1_facebook_likes                                                    2000
gross                                                              6.69416e+07
genres                                                 Adventure|Comedy|Family
actor_1_name                                                     Ioan Gruffudd
movie_title                                                    102 Dalmatians 
num_voted_users                                                          26413
cast_total_facebook_likes                                                 4182
actor_3_name                                                        Jim Carter
facenumber_in_poster                                                         1
plot_keywords                           dog|parole|parole officer|prison|puppy
movie_imdb_link              http://www.imdb.com/title/tt0211181/?ref_=fn_t...
num_user_for_reviews                                                        77
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 8.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     795
imdb_score                                                                 4.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       372
Name: 406, dtype: object
color                                                                    Color
director_name                                                     Brett Ratner
num_critic_for_reviews                                                     236
duration                                                                   104
director_facebook_likes                                                    420
actor_3_facebook_likes                                                     535
actor_2_name                                                   Gabourey Sidibe
actor_1_facebook_likes                                                    2000
gross                                                              7.80092e+07
genres                                                     Action|Comedy|Crime
actor_1_name                                                 Matthew Broderick
movie_title                                                       Tower Heist 
num_voted_users                                                         110073
cast_total_facebook_likes                                                 3768
actor_3_name                                                       Judd Hirsch
facenumber_in_poster                                                         5
plot_keywords                                apartment|fbi|fraud|heist|manager
movie_imdb_link              http://www.imdb.com/title/tt0471042/?ref_=fn_t...
num_user_for_reviews                                                       194
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                     906
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 407, dtype: object
color                                                                    Color
director_name                                                     Nancy Meyers
num_critic_for_reviews                                                     157
duration                                                                   138
director_facebook_likes                                                    278
actor_3_facebook_likes                                                     213
actor_2_name                                                      Rufus Sewell
actor_1_facebook_likes                                                   14000
gross                                                              6.32248e+07
genres                                                          Comedy|Romance
actor_1_name                                                      Kate Winslet
movie_title                                                       The Holiday 
num_voted_users                                                         182757
cast_total_facebook_likes                                                17423
actor_3_name                                                      Sarah Parish
facenumber_in_poster                                                         3
plot_keywords                             book|composer|house|love|self esteem
movie_imdb_link              http://www.imdb.com/title/tt0457939/?ref_=fn_t...
num_user_for_reviews                                                       483
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                     19000
Name: 408, dtype: object
color                                                                    Color
director_name                                                       Tony Scott
num_critic_for_reviews                                                      81
duration                                                                   140
director_facebook_likes                                                  12000
actor_3_facebook_likes                                                     619
actor_2_name                                                        Jake Busey
actor_1_facebook_likes                                                   10000
gross                                                              1.11544e+08
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                        Will Smith
movie_title                                                Enemy of the State 
num_voted_users                                                         188116
cast_total_facebook_likes                                                11951
actor_3_name                                                        Lisa Bonet
facenumber_in_poster                                                         4
plot_keywords                   congressman|lawyer|nsa|on the run|surveillance
movie_imdb_link              http://www.imdb.com/title/tt0120660/?ref_=fn_t...
num_user_for_reviews                                                       415
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+07
title_year                                                                1998
actor_2_facebook_likes                                                     660
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 409, dtype: object
color                                                                    Color
director_name                                                     Nancy Meyers
num_critic_for_reviews                                                     187
duration                                                                   120
director_facebook_likes                                                    278
actor_3_facebook_likes                                                     963
actor_2_name                                                    Hunter Parrish
actor_1_facebook_likes                                                   11000
gross                                                              1.12703e+08
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Meryl Streep
movie_title                                                  It's Complicated 
num_voted_users                                                          69860
cast_total_facebook_likes                                                15226
actor_3_name                                                         Zoe Kazan
facenumber_in_poster                                                         2
plot_keywords                affair|divorce|graduation|vomiting|watching te...
movie_imdb_link              http://www.imdb.com/title/tt1230414/?ref_=fn_t...
num_user_for_reviews                                                       214
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 410, dtype: object
color                                                                    Color
director_name                                                Steven Soderbergh
num_critic_for_reviews                                                     238
duration                                                                   122
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   11000
actor_2_name                                                        Matt Damon
actor_1_facebook_likes                                                   14000
gross                                                              1.17144e+08
genres                                                          Crime|Thriller
actor_1_name                                                         Al Pacino
movie_title                                                  Ocean's Thirteen 
num_voted_users                                                         256928
cast_total_facebook_likes                                                43499
actor_3_name                                                         Brad Pitt
facenumber_in_poster                                                         3
plot_keywords                casino|heist|manmade earthquake|revenge|tunnel...
movie_imdb_link              http://www.imdb.com/title/tt0496806/?ref_=fn_t...
num_user_for_reviews                                                       288
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                   13000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 411, dtype: object
color                                                                    Color
director_name                                                     Roger Allers
num_critic_for_reviews                                                     107
duration                                                                    83
director_facebook_likes                                                     28
actor_3_facebook_likes                                                     624
actor_2_name                                                     Debra Messing
actor_1_facebook_likes                                                    4000
gross                                                              8.43036e+07
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                       Jon Favreau
movie_title                                                       Open Season 
num_voted_users                                                          65270
cast_total_facebook_likes                                                 6081
actor_3_name                                                    Jane Krakowski
facenumber_in_poster                                                         1
plot_keywords                             bear|deer|forest|grizzly bear|hunter
movie_imdb_link              http://www.imdb.com/title/tt0400717/?ref_=fn_t...
num_user_for_reviews                                                       100
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 8.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     650
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       863
Name: 412, dtype: object
color                                                                    Color
director_name                                                      Neil Burger
num_critic_for_reviews                                                     459
duration                                                                   139
director_facebook_likes                                                    168
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Theo James
actor_1_facebook_likes                                                   14000
gross                                                              1.50832e+08
genres                                                Adventure|Mystery|Sci-Fi
actor_1_name                                                      Kate Winslet
movie_title                                                         Divergent 
num_voted_users                                                         341058
cast_total_facebook_likes                                                22226
actor_3_name                                                      Mekhi Phifer
facenumber_in_poster                                                         2
plot_keywords                army|brother sister relationship|dystopia|fath...
movie_imdb_link              http://www.imdb.com/title/tt1840309/?ref_=fn_t...
num_user_for_reviews                                                       713
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                    5000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     49000
Name: 413, dtype: object
color                                                                    Color
director_name                                              Jean-Jacques Annaud
num_critic_for_reviews                                                     187
duration                                                                   131
director_facebook_likes                                                    218
actor_3_facebook_likes                                                      29
actor_2_name                                                   Gabriel Thomson
actor_1_facebook_likes                                                    5000
gross                                                              5.13968e+07
genres                                                       Drama|History|War
actor_1_name                                                       Bob Hoskins
movie_title                                                Enemy at the Gates 
num_voted_users                                                         188887
cast_total_facebook_likes                                                 5103
actor_3_name                                                    Clemens Schick
facenumber_in_poster                                                         1
plot_keywords                          battle|german|russian|sniper|stalingrad
movie_imdb_link              http://www.imdb.com/title/tt0215750/?ref_=fn_t...
num_user_for_reviews                                                       662
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.8e+07
title_year                                                                2001
actor_2_facebook_likes                                                      35
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 414, dtype: object
color                                                                    Color
director_name                                                       Peter Berg
num_critic_for_reviews                                                     151
duration                                                                   104
director_facebook_likes                                                    532
actor_3_facebook_likes                                                     557
actor_2_name                                                    Rosario Dawson
actor_1_facebook_likes                                                   12000
gross                                                              4.75928e+07
genres                                        Action|Adventure|Comedy|Thriller
actor_1_name                                                    Dwayne Johnson
movie_title                                                       The Rundown 
num_voted_users                                                          82731
cast_total_facebook_likes                                                16930
actor_3_name                                                      Ewen Bremner
facenumber_in_poster                                                         1
plot_keywords                         amazon|bounty hunter|fight|hunter|jungle
movie_imdb_link              http://www.imdb.com/title/tt0327850/?ref_=fn_t...
num_user_for_reviews                                                       255
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.5e+07
title_year                                                                2003
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 415, dtype: object
color                                                                    Color
director_name                                                   John McTiernan
num_critic_for_reviews                                                      80
duration                                                                   130
director_facebook_likes                                                    323
actor_3_facebook_likes                                                     330
actor_2_name                                                        Tom Noonan
actor_1_facebook_likes                                                     670
gross                                                              5.00164e+07
genres                                         Action|Adventure|Comedy|Fantasy
actor_1_name                                                 F. Murray Abraham
movie_title                                                  Last Action Hero 
num_voted_users                                                         106528
cast_total_facebook_likes                                                 2407
actor_3_name                                                    Joan Plowright
facenumber_in_poster                                                         1
plot_keywords                        action hero|hero|magic|ticket|video store
movie_imdb_link              http://www.imdb.com/title/tt0107362/?ref_=fn_t...
num_user_for_reviews                                                       257
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                1993
actor_2_facebook_likes                                                     442
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 416, dtype: object
color                                                                    Color
director_name                                                     Rob Marshall
num_critic_for_reviews                                                     229
duration                                                                   145
director_facebook_likes                                                    252
actor_3_facebook_likes                                                     210
actor_2_name                                                              Mako
actor_1_facebook_likes                                                     879
gross                                                              5.70109e+07
genres                                                           Drama|Romance
actor_1_name                                                           Li Gong
movie_title                                               Memoirs of a Geisha 
num_voted_users                                                         119286
cast_total_facebook_likes                                                 2380
actor_3_name                                                         Karl Yune
facenumber_in_poster                                                         1
plot_keywords                         coming of age|geisha|japan|jealousy|love
movie_imdb_link              http://www.imdb.com/title/tt0397535/?ref_=fn_t...
num_user_for_reviews                                                       548
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     691
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 417, dtype: object
color                                                                    Color
director_name                                                       Justin Lin
num_critic_for_reviews                                                     158
duration                                                                   104
director_facebook_likes                                                    681
actor_3_facebook_likes                                                     159
actor_2_name                                                  Zachery Ty Bryan
actor_1_facebook_likes                                                     584
gross                                                               6.2495e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                Amber Stevens West
movie_title                             The Fast and the Furious: Tokyo Drift 
num_voted_users                                                         179500
cast_total_facebook_likes                                                 1235
actor_3_name                                                     Nikki Griffin
facenumber_in_poster                                                         5
plot_keywords                  car|challenge|drift racing|drifting|tokyo japan
movie_imdb_link              http://www.imdb.com/title/tt0463985/?ref_=fn_t...
num_user_for_reviews                                                       378
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     227
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 418, dtype: object
color                                                                    Color
director_name                                                      Sarah Smith
num_critic_for_reviews                                                     190
duration                                                                    97
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     561
actor_2_name                                                   Imelda Staunton
actor_1_facebook_likes                                                    1000
gross                                                              4.64405e+07
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                     Jim Broadbent
movie_title                                                  Arthur Christmas 
num_voted_users                                                          35446
cast_total_facebook_likes                                                 2707
actor_3_name                                                     Michael Palin
facenumber_in_poster                                                         1
plot_keywords                 christmas|christmas eve|elf|high tech|resentment
movie_imdb_link              http://www.imdb.com/title/tt1430607/?ref_=fn_t...
num_user_for_reviews                                                        78
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                   1e+08
title_year                                                                2011
actor_2_facebook_likes                                                     579
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 419, dtype: object
color                                                                    Color
director_name                                                     Martin Brest
num_critic_for_reviews                                                      98
duration                                                                   178
director_facebook_likes                                                    102
actor_3_facebook_likes                                                     551
actor_2_name                                                         Brad Pitt
actor_1_facebook_likes                                                   12000
gross                                                              4.46063e+07
genres                                                   Drama|Fantasy|Romance
actor_1_name                                                   Anthony Hopkins
movie_title                                                    Meet Joe Black 
num_voted_users                                                         169023
cast_total_facebook_likes                                                23950
actor_3_name                                                        Jake Weber
facenumber_in_poster                                                         0
plot_keywords                birthday|death|death personified|fear of death...
movie_imdb_link              http://www.imdb.com/title/tt0119643/?ref_=fn_t...
num_user_for_reviews                                                       703
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+07
title_year                                                                1998
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 420, dtype: object
color                                                                    Color
director_name                                                     Andrew Davis
num_critic_for_reviews                                                     135
duration                                                                   108
director_facebook_likes                                                     99
actor_3_facebook_likes                                                     172
actor_2_name                                                       Rick Worthy
actor_1_facebook_likes                                                     672
gross                                                              4.00483e+07
genres                                                   Action|Drama|Thriller
actor_1_name                                                      Raymond Cruz
movie_title                                                 Collateral Damage 
num_voted_users                                                          61417
cast_total_facebook_likes                                                 1460
actor_3_name                                                        Jsu Garcia
facenumber_in_poster                                                         1
plot_keywords                bare chested boy|car explosion|colombia|explos...
movie_imdb_link              http://www.imdb.com/title/tt0233469/?ref_=fn_t...
num_user_for_reviews                                                       339
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     174
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       941
Name: 421, dtype: object
color                                                                    Color
director_name                                                        Bob Fosse
num_critic_for_reviews                                                      84
duration                                                                   123
director_facebook_likes                                                    189
actor_3_facebook_likes                                                      87
actor_2_name                                                        Ben Vereen
actor_1_facebook_likes                                                     813
gross                                                                      NaN
genres                                              Comedy|Drama|Music|Musical
actor_1_name                                                      Roy Scheider
movie_title                                                     All That Jazz 
num_voted_users                                                          19228
cast_total_facebook_likes                                                 1476
actor_3_name                                                        Max Wright
facenumber_in_poster                                                         0
plot_keywords                dancer|editing|stand up comedian|surgery|vomiting
movie_imdb_link              http://www.imdb.com/title/tt0078754/?ref_=fn_t...
num_user_for_reviews                                                       146
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1979
actor_2_facebook_likes                                                     388
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 422, dtype: object
color                                                                    Color
director_name                                                     Tarsem Singh
num_critic_for_reviews                                                     382
duration                                                                   106
director_facebook_likes                                                    763
actor_3_facebook_likes                                                     809
actor_2_name                                                       Nathan Lane
actor_1_facebook_likes                                                    8000
gross                                                              6.49337e+07
genres                                   Adventure|Comedy|Drama|Family|Fantasy
actor_1_name                                                     Julia Roberts
movie_title                                                     Mirror Mirror 
num_voted_users                                                          70838
cast_total_facebook_likes                                                11454
actor_3_name                                                    Danny Woodburn
facenumber_in_poster                                                         1
plot_keywords                               kingdom|prince|princess|queen|snow
movie_imdb_link              http://www.imdb.com/title/tt1667353/?ref_=fn_t...
num_user_for_reviews                                                       208
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 8.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     886
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     18000
Name: 423, dtype: object
color                                                                    Color
director_name                                                     Edgar Wright
num_critic_for_reviews                                                     393
duration                                                                   112
director_facebook_likes                                                   1000
actor_3_facebook_likes                                                     719
actor_2_name                                                     Kieran Culkin
actor_1_facebook_likes                                                   10000
gross                                                              3.14943e+07
genres                                           Action|Comedy|Fantasy|Romance
actor_1_name                                                     Anna Kendrick
movie_title                                       Scott Pilgrim vs. the World 
num_voted_users                                                         273921
cast_total_facebook_likes                                                12687
actor_3_name                                                        Ellen Wong
facenumber_in_poster                                                         0
plot_keywords                        band|dating|high school|hipster|rock band
movie_imdb_link              http://www.imdb.com/title/tt0446029/?ref_=fn_t...
num_user_for_reviews                                                       522
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2010
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     36000
Name: 424, dtype: object
color                                                                    Color
director_name                                                        Jon Amiel
num_critic_for_reviews                                                     149
duration                                                                   135
director_facebook_likes                                                     36
actor_3_facebook_likes                                                     106
actor_2_name                                                      Tchéky Karyo
actor_1_facebook_likes                                                     894
gross                                                              3.11113e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                   Glenn Morshower
movie_title                                                          The Core 
num_voted_users                                                          77029
cast_total_facebook_likes                                                 1439
actor_3_name                                                      Rekha Sharma
facenumber_in_poster                                                         0
plot_keywords                  core|earth|natural disaster|pacemaker|scientist
movie_imdb_link              http://www.imdb.com/title/tt0298814/?ref_=fn_t...
num_user_for_reviews                                                       466
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2003
actor_2_facebook_likes                                                     345
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 425, dtype: object
color                                                                    Color
director_name                                                      Peter Segal
num_critic_for_reviews                                                      94
duration                                                                   109
director_facebook_likes                                                     88
actor_3_facebook_likes                                                     571
actor_2_name                                                     Janet Jackson
actor_1_facebook_likes                                                     611
gross                                                              1.23308e+08
genres                                                   Comedy|Romance|Sci-Fi
actor_1_name                                                      Larry Miller
movie_title                                    Nutty Professor II: The Klumps 
num_voted_users                                                          39391
cast_total_facebook_likes                                                 2818
actor_3_name                                                     Chris Elliott
facenumber_in_poster                                                         1
plot_keywords                     alter ego|marriage|professor|scientist|serum
movie_imdb_link              http://www.imdb.com/title/tt0144528/?ref_=fn_t...
num_user_for_reviews                                                       171
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     592
imdb_score                                                                 4.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       374
Name: 426, dtype: object
color                                                                    Color
director_name                                                     Raja Gosnell
num_critic_for_reviews                                                     138
duration                                                                    86
director_facebook_likes                                                     67
actor_3_facebook_likes                                                     271
actor_2_name                                                  Linda Cardellini
actor_1_facebook_likes                                                    4000
gross                                                              1.53288e+08
genres                                                Adventure|Comedy|Mystery
actor_1_name                                             Sarah Michelle Gellar
movie_title                                                        Scooby-Doo 
num_voted_users                                                          71424
cast_total_facebook_likes                                                 6355
actor_3_name                                               Miguel A. Núñez Jr.
facenumber_in_poster                                                         3
plot_keywords                amusement park|island|motorcycle|scooby doo|to...
movie_imdb_link              http://www.imdb.com/title/tt0267913/?ref_=fn_t...
num_user_for_reviews                                                       521
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 8.4e+07
title_year                                                                2002
actor_2_facebook_likes                                                    2000
imdb_score                                                                 4.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 427, dtype: object
color                                                                    Color
director_name                                                      Pete Travis
num_critic_for_reviews                                                     432
duration                                                                    95
director_facebook_likes                                                     38
actor_3_facebook_likes                                                      20
actor_2_name                                                        Jason Cope
actor_1_facebook_likes                                                     409
gross                                                              1.34017e+07
genres                                                           Action|Sci-Fi
actor_1_name                                                       Wood Harris
movie_title                                                             Dredd 
num_voted_users                                                         203458
cast_total_facebook_likes                                                  578
actor_3_name                                                       Rakie Ayola
facenumber_in_poster                                                         0
plot_keywords                brutality|dark humor|female antagonist|female ...
movie_imdb_link              http://www.imdb.com/title/tt1343727/?ref_=fn_t...
num_user_for_reviews                                                       588
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 3.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     107
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     46000
Name: 428, dtype: object
color                                                                    Color
director_name                                                     Frank Coraci
num_critic_for_reviews                                                     173
duration                                                                   107
director_facebook_likes                                                    153
actor_3_facebook_likes                                                     233
actor_2_name                                                  Cameron Monaghan
actor_1_facebook_likes                                                   11000
gross                                                               1.3734e+08
genres                                            Comedy|Drama|Fantasy|Romance
actor_1_name                                                      Adam Sandler
movie_title                                                             Click 
num_voted_users                                                         246492
cast_total_facebook_likes                                                12700
actor_3_name                                                      Julie Kavner
facenumber_in_poster                                                         1
plot_keywords                architect|frozen time|obese man|remote control...
movie_imdb_link              http://www.imdb.com/title/tt0389860/?ref_=fn_t...
num_user_for_reviews                                                       685
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2006
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      7000
Name: 429, dtype: object
color                                                                    Color
director_name                                                 George A. Romero
num_critic_for_reviews                                                     127
duration                                                                   130
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     602
actor_2_name                                                      Hal Holbrook
actor_1_facebook_likes                                                     875
gross                                                                      NaN
genres                                                   Comedy|Fantasy|Horror
actor_1_name                                                        Ted Danson
movie_title                                                         Creepshow 
num_voted_users                                                          29932
cast_total_facebook_likes                                                 2662
actor_3_name                                                  Adrienne Barbeau
facenumber_in_poster                                                         0
plot_keywords                anthology|child abuse|critically acclaimed|dea...
movie_imdb_link              http://www.imdb.com/title/tt0083767/?ref_=fn_t...
num_user_for_reviews                                                       211
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1982
actor_2_facebook_likes                                                     826
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 430, dtype: object
color                                                                    Color
director_name                                                      Brad Peyton
num_critic_for_reviews                                                      91
duration                                                                    82
director_facebook_likes                                                     62
actor_3_facebook_likes                                                     615
actor_2_name                                                        Sean Hayes
actor_1_facebook_likes                                                     975
gross                                                              4.35757e+07
genres                                            Action|Comedy|Family|Fantasy
actor_1_name                                                     Jack McBrayer
movie_title                          Cats & Dogs: The Revenge of Kitty Galore 
num_voted_users                                                          10233
cast_total_facebook_likes                                                 3326
actor_3_name                                                     Katt Williams
facenumber_in_poster                                                         0
plot_keywords                        cartoon on tv|cat|dog|kitty|special agent
movie_imdb_link              http://www.imdb.com/title/tt1287468/?ref_=fn_t...
num_user_for_reviews                                                        63
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 8.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                     760
imdb_score                                                                 4.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 431, dtype: object
color                                                                    Color
director_name                                                       Doug Liman
num_critic_for_reviews                                                     238
duration                                                                    88
director_facebook_likes                                                    218
actor_3_facebook_likes                                                     521
actor_2_name                                                Hayden Christensen
actor_1_facebook_likes                                                   17000
gross                                                              8.01701e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                   Kristen Stewart
movie_title                                                            Jumper 
num_voted_users                                                         243053
cast_total_facebook_likes                                                21863
actor_3_name                                                         Tom Hulce
facenumber_in_poster                                                         0
plot_keywords                      bank|based on novel|ice|teleportation|vault
movie_imdb_link              http://www.imdb.com/title/tt0489099/?ref_=fn_t...
num_user_for_reviews                                                       488
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                    4000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 432, dtype: object
color                                                                    Color
director_name                                               Guillermo del Toro
num_critic_for_reviews                                                     345
duration                                                                   120
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     160
actor_2_name                                                      Iván Kamarás
actor_1_facebook_likes                                                    3000
gross                                                              7.57547e+07
genres                                  Action|Adventure|Fantasy|Horror|Sci-Fi
actor_1_name                                                   Seth MacFarlane
movie_title                                       Hellboy II: The Golden Army 
num_voted_users                                                         208422
cast_total_facebook_likes                                                 3632
actor_3_name                                                      Brian Steele
facenumber_in_poster                                                         0
plot_keywords                          creature|elf|prince|rebellion|superhero
movie_imdb_link              http://www.imdb.com/title/tt0411477/?ref_=fn_t...
num_user_for_reviews                                                       342
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                     169
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                      3000
Name: 433, dtype: object
color                                                                    Color
director_name                                                    David Fincher
num_critic_for_reviews                                                     377
duration                                                                   162
director_facebook_likes                                                  21000
actor_3_facebook_likes                                                     495
actor_2_name                                                   Jake Gyllenhaal
actor_1_facebook_likes                                                   21000
gross                                                              3.30484e+07
genres                                    Crime|Drama|History|Mystery|Thriller
actor_1_name                                                 Robert Downey Jr.
movie_title                                                            Zodiac 
num_voted_users                                                         301279
cast_total_facebook_likes                                                36928
actor_3_name                                                   Anthony Edwards
facenumber_in_poster                                                         0
plot_keywords                cartoonist|reporter|serial killer|zodiac|zodia...
movie_imdb_link              http://www.imdb.com/title/tt0443706/?ref_=fn_t...
num_user_for_reviews                                                       589
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                   15000
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 434, dtype: object
color                                                                    Color
director_name                                               Roger Spottiswoode
num_critic_for_reviews                                                     170
duration                                                                   123
director_facebook_likes                                                     55
actor_3_facebook_likes                                                     956
actor_2_name                                                  Michael Rapaport
actor_1_facebook_likes                                                    3000
gross                                                              3.45437e+07
genres                                          Action|Mystery|Sci-Fi|Thriller
actor_1_name                                                     Robert Duvall
movie_title                                                       The 6th Day 
num_voted_users                                                         100001
cast_total_facebook_likes                                                 5839
actor_3_name                                                      Tony Goldwyn
facenumber_in_poster                                                         1
plot_keywords                            clone|cloning|future|laser gun|murder
movie_imdb_link              http://www.imdb.com/title/tt0216216/?ref_=fn_t...
num_user_for_reviews                                                       289
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.2e+07
title_year                                                                2000
actor_2_facebook_likes                                                     975
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 435, dtype: object
color                                                                    Color
director_name                                                      Tom Shadyac
num_critic_for_reviews                                                     191
duration                                                                   101
director_facebook_likes                                                    293
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Steve Carell
actor_1_facebook_likes                                                   11000
gross                                                               2.4259e+08
genres                                                            Comedy|Drama
actor_1_name                                                    Morgan Freeman
movie_title                                                    Bruce Almighty 
num_voted_users                                                         296904
cast_total_facebook_likes                                                21276
actor_3_name                                                   Lisa Ann Walter
facenumber_in_poster                                                         1
plot_keywords                answer to prayer|breast expansion|pleading wit...
movie_imdb_link              http://www.imdb.com/title/tt0315327/?ref_=fn_t...
num_user_for_reviews                                                       604
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.1e+07
title_year                                                                2003
actor_2_facebook_likes                                                    7000
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 436, dtype: object
color                                                                    Color
director_name                                               Sylvester Stallone
num_critic_for_reviews                                                     424
duration                                                                   113
director_facebook_likes                                                  13000
actor_3_facebook_likes                                                    5000
actor_2_name                                                Sylvester Stallone
actor_1_facebook_likes                                                   26000
gross                                                              1.02982e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                     Jason Statham
movie_title                                                   The Expendables 
num_voted_users                                                         270226
cast_total_facebook_likes                                                46355
actor_3_name                                                            Jet Li
facenumber_in_poster                                                         9
plot_keywords                action hero|assassination attempt|explosion|ma...
movie_imdb_link              http://www.imdb.com/title/tt1320253/?ref_=fn_t...
num_user_for_reviews                                                       741
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+07
title_year                                                                2010
actor_2_facebook_likes                                                   13000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     57000
Name: 437, dtype: object
color                                                                    Color
director_name                                                   Brian De Palma
num_critic_for_reviews                                                     154
duration                                                                   110
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     898
actor_2_name                                              Kristin Scott Thomas
actor_1_facebook_likes                                                   10000
gross                                                              1.80965e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                        Tom Cruise
movie_title                                               Mission: Impossible 
num_voted_users                                                         300542
cast_total_facebook_likes                                                12760
actor_3_name                                                  Vanessa Redgrave
facenumber_in_poster                                                         0
plot_keywords                            disguise|mission|spy|stealing|traitor
movie_imdb_link              http://www.imdb.com/title/tt0117060/?ref_=fn_t...
num_user_for_reviews                                                       378
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                1996
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 438, dtype: object
color                                                                    Color
director_name                                                        Gary Ross
num_critic_for_reviews                                                     673
duration                                                                   142
director_facebook_likes                                                    378
actor_3_facebook_likes                                                     575
actor_2_name                                                   Josh Hutcherson
actor_1_facebook_likes                                                   34000
gross                                                              4.07999e+08
genres                                         Adventure|Drama|Sci-Fi|Thriller
actor_1_name                                                 Jennifer Lawrence
movie_title                                                  The Hunger Games 
num_voted_users                                                         701607
cast_total_facebook_likes                                                49942
actor_3_name                                                  Anthony Reynolds
facenumber_in_poster                                                         0
plot_keywords                fight to the death|game|massacre|self survival...
movie_imdb_link              http://www.imdb.com/title/tt1392170/?ref_=fn_t...
num_user_for_reviews                                                      1959
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.8e+07
title_year                                                                2012
actor_2_facebook_likes                                                   14000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                    140000
Name: 439, dtype: object
color                                                                    Color
director_name                                                    Todd Phillips
num_critic_for_reviews                                                     383
duration                                                                   102
director_facebook_likes                                                    480
actor_3_facebook_likes                                                     461
actor_2_name                                                         Mason Lee
actor_1_facebook_likes                                                   14000
gross                                                              2.54456e+08
genres                                                                  Comedy
actor_1_name                                                    Bradley Cooper
movie_title                                              The Hangover Part II 
num_voted_users                                                         375879
cast_total_facebook_likes                                                16143
actor_3_name                                                        Mike Tyson
facenumber_in_poster                                                         0
plot_keywords                hotel|male frontal nudity|pubic hair|thailand|...
movie_imdb_link              http://www.imdb.com/title/tt1411697/?ref_=fn_t...
num_user_for_reviews                                                       402
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+07
title_year                                                                2011
actor_2_facebook_likes                                                     670
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     56000
Name: 440, dtype: object
color                                                                    Color
director_name                                                       Tim Burton
num_critic_for_reviews                                                     153
duration                                                                   126
director_facebook_likes                                                  13000
actor_3_facebook_likes                                                     390
actor_2_name                                                Vincent Schiavelli
actor_1_facebook_likes                                                     920
gross                                                              1.62832e+08
genres                                                                  Action
actor_1_name                                                     Michael Gough
movie_title                                                    Batman Returns 
num_voted_users                                                         215255
cast_total_facebook_likes                                                 2899
actor_3_name                                                 Andrew Bryniarski
facenumber_in_poster                                                         0
plot_keywords                    box office hit|dc comics|gotham|mayor|penguin
movie_imdb_link              http://www.imdb.com/title/tt0103776/?ref_=fn_t...
num_user_for_reviews                                                       610
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                1992
actor_2_facebook_likes                                                     811
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 441, dtype: object
color                                                                    Color
director_name                                                      Tim Johnson
num_critic_for_reviews                                                     166
duration                                                                    83
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     925
actor_2_name                                                      Steve Carell
actor_1_facebook_likes                                                   13000
gross                                                              1.55019e+08
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                      Bruce Willis
movie_title                                                    Over the Hedge 
num_voted_users                                                         127345
cast_total_facebook_likes                                                22813
actor_3_name                                                  Catherine O'Hara
facenumber_in_poster                                                         1
plot_keywords                                  bear|food|forest|raccoon|turtle
movie_imdb_link              http://www.imdb.com/title/tt0327084/?ref_=fn_t...
num_user_for_reviews                                                       250
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+07
title_year                                                                2006
actor_2_facebook_likes                                                    7000
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 442, dtype: object
color                                                                    Color
director_name                                                     Dean DeBlois
num_critic_for_reviews                                                     180
duration                                                                    85
director_facebook_likes                                                    255
actor_3_facebook_likes                                                     443
actor_2_name                                                   Jason Scott Lee
actor_1_facebook_likes                                                    1000
gross                                                              1.45772e+08
genres                       Adventure|Animation|Comedy|Drama|Family|Fantas...
actor_1_name                                                       Tia Carrere
movie_title                                                     Lilo & Stitch 
num_voted_users                                                         117212
cast_total_facebook_likes                                                 3112
actor_3_name                                                David Ogden Stiers
facenumber_in_poster                                                         0
plot_keywords                       alien|escape|fugitive|hawaii|social worker
movie_imdb_link              http://www.imdb.com/title/tt0275847/?ref_=fn_t...
num_user_for_reviews                                                       367
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+07
title_year                                                                2002
actor_2_facebook_likes                                                     533
imdb_score                                                                 7.2
aspect_ratio                                                              1.66
movie_facebook_likes                                                         0
Name: 443, dtype: object
color                                                                    Color
director_name                                                      Gary Winick
num_critic_for_reviews                                                     120
duration                                                                    97
director_facebook_likes                                                     56
actor_3_facebook_likes                                                     852
actor_2_name                                                     Julia Roberts
actor_1_facebook_likes                                                   12000
gross                                                              8.25063e+07
genres                                                   Comedy|Family|Fantasy
actor_1_name                                                     Steve Buscemi
movie_title                                                   Charlotte's Web 
num_voted_users                                                          27838
cast_total_facebook_likes                                                23907
actor_3_name                                                     Oprah Winfrey
facenumber_in_poster                                                         0
plot_keywords                                     barn|pig|piglet|spider|uncle
movie_imdb_link              http://www.imdb.com/title/tt0413895/?ref_=fn_t...
num_user_for_reviews                                                       102
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                     NaN
title_year                                                                2006
actor_2_facebook_likes                                                    8000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 444, dtype: object
color                                                                    Color
director_name                                                       Mimi Leder
num_critic_for_reviews                                                     125
duration                                                                   120
director_facebook_likes                                                     75
actor_3_facebook_likes                                                    3000
actor_2_name                                                       Jon Favreau
actor_1_facebook_likes                                                   11000
gross                                                              1.40459e+08
genres                                    Action|Drama|Romance|Sci-Fi|Thriller
actor_1_name                                                    Morgan Freeman
movie_title                                                       Deep Impact 
num_voted_users                                                         135601
cast_total_facebook_likes                                                22750
actor_3_name                                                     Robert Duvall
facenumber_in_poster                                                         0
plot_keywords                     astronomer|comet|mission|president|secretary
movie_imdb_link              http://www.imdb.com/title/tt0120647/?ref_=fn_t...
num_user_for_reviews                                                       493
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                    4000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 445, dtype: object
color                                                                    Color
director_name                                                     Dean Parisot
num_critic_for_reviews                                                     234
duration                                                                   116
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     110
actor_2_name                                                   Anthony Hopkins
actor_1_facebook_likes                                                   13000
gross                                                               5.3216e+07
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                                      Bruce Willis
movie_title                                                             RED 2 
num_voted_users                                                         125036
cast_total_facebook_likes                                                25220
actor_3_name                                                     Garrick Hagon
facenumber_in_poster                                                         7
plot_keywords                                cia|cia agent|rescue|russian|team
movie_imdb_link              http://www.imdb.com/title/tt1821694/?ref_=fn_t...
num_user_for_reviews                                                       205
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.4e+07
title_year                                                                2013
actor_2_facebook_likes                                                   12000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     22000
Name: 446, dtype: object
color                                                                    Color
director_name                                                      Peter Segal
num_critic_for_reviews                                                     134
duration                                                                   113
director_facebook_likes                                                     88
actor_3_facebook_likes                                                     421
actor_2_name                                                      Steve Reevis
actor_1_facebook_likes                                                   11000
gross                                                              1.58115e+08
genres                                                      Comedy|Crime|Sport
actor_1_name                                                      Adam Sandler
movie_title                                                  The Longest Yard 
num_voted_users                                                         130070
cast_total_facebook_likes                                                13693
actor_3_name                                                       Dalip Singh
facenumber_in_poster                                                        11
plot_keywords                             coach|convict|football|prison|warden
movie_imdb_link              http://www.imdb.com/title/tt0398165/?ref_=fn_t...
num_user_for_reviews                                                       316
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.2e+07
title_year                                                                2005
actor_2_facebook_likes                                                     437
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 447, dtype: object
color                                                                    Color
director_name                                                    Mike Mitchell
num_critic_for_reviews                                                      91
duration                                                                    87
director_facebook_likes                                                     31
actor_3_facebook_likes                                                     733
actor_2_name                                                   Jesse McCartney
actor_1_facebook_likes                                                    1000
gross                                                              1.33104e+08
genres                         Adventure|Animation|Comedy|Family|Fantasy|Music
actor_1_name                                                       Amy Poehler
movie_title                              Alvin and the Chipmunks: Chipwrecked 
num_voted_users                                                          22838
cast_total_facebook_likes                                                 4073
actor_3_name                                                   Lauren Gottlieb
facenumber_in_poster                                                         0
plot_keywords                chipmunk|cruise ship|football ball|overboard|t...
movie_imdb_link              http://www.imdb.com/title/tt1615918/?ref_=fn_t...
num_user_for_reviews                                                        56
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 7.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                    1000
imdb_score                                                                 4.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 448, dtype: object
color                                                                    Color
director_name                                                     Dennis Dugan
num_critic_for_reviews                                                     139
duration                                                                   101
director_facebook_likes                                                    221
actor_3_facebook_likes                                                   11000
actor_2_name                                                      Adam Sandler
actor_1_facebook_likes                                                   12000
gross                                                              1.33669e+08
genres                                                                  Comedy
actor_1_name                                                     Steve Buscemi
movie_title                                                       Grown Ups 2 
num_voted_users                                                         107817
cast_total_facebook_likes                                                39269
actor_3_name                                                        Jon Lovitz
facenumber_in_poster                                                         4
plot_keywords                belching|number in title|party|reference to ni...
movie_imdb_link              http://www.imdb.com/title/tt2191701/?ref_=fn_t...
num_user_for_reviews                                                       255
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2013
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 449, dtype: object
color                                                                    Color
director_name                                                      Peter Segal
num_critic_for_reviews                                                     265
duration                                                                   110
director_facebook_likes                                                     88
actor_3_facebook_likes                                                   11000
actor_2_name                                                    Dwayne Johnson
actor_1_facebook_likes                                                   13000
gross                                                              1.30313e+08
genres                                                 Action|Adventure|Comedy
actor_1_name                                                       Bill Murray
movie_title                                                         Get Smart 
num_voted_users                                                         168172
cast_total_facebook_likes                                                44798
actor_3_name                                                     Anne Hathaway
facenumber_in_poster                                                         1
plot_keywords                airplane|misunderstanding|obese woman|overweig...
movie_imdb_link              http://www.imdb.com/title/tt0425061/?ref_=fn_t...
num_user_for_reviews                                                       380
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2008
actor_2_facebook_likes                                                   12000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 450, dtype: object
color                                                                    Color
director_name                                                     Nancy Meyers
num_critic_for_reviews                                                     145
duration                                                                   128
director_facebook_likes                                                    278
actor_3_facebook_likes                                                     343
actor_2_name                                                       Jon Favreau
actor_1_facebook_likes                                                   18000
gross                                                              1.24591e+08
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Keanu Reeves
movie_title                                            Something's Gotta Give 
num_voted_users                                                          91092
cast_total_facebook_likes                                                22679
actor_3_name                                               Paul Michael Glaser
facenumber_in_poster                                                         1
plot_keywords                         beach|dating|doctor|heart attack|weekend
movie_imdb_link              http://www.imdb.com/title/tt0337741/?ref_=fn_t...
num_user_for_reviews                                                       402
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2003
actor_2_facebook_likes                                                    4000
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 451, dtype: object
color                                                                    Color
director_name                                                  Martin Scorsese
num_critic_for_reviews                                                     490
duration                                                                   138
director_facebook_likes                                                  17000
actor_3_facebook_likes                                                     163
actor_2_name                                                     Joseph Sikora
actor_1_facebook_likes                                                   29000
gross                                                              1.27968e+08
genres                                                        Mystery|Thriller
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                    Shutter Island 
num_voted_users                                                         786092
cast_total_facebook_likes                                                29585
actor_3_name                                                    Nellie Sciutto
facenumber_in_poster                                                         0
plot_keywords                female prisoner|plot twist|self delusion|surpr...
movie_imdb_link              http://www.imdb.com/title/tt1130884/?ref_=fn_t...
num_user_for_reviews                                                       964
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+07
title_year                                                                2010
actor_2_facebook_likes                                                     223
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     53000
Name: 452, dtype: object
color                                                                    Color
director_name                                                      Seth Gordon
num_critic_for_reviews                                                     141
duration                                                                    88
director_facebook_likes                                                     91
actor_3_facebook_likes                                                     982
actor_2_name                                                     Robert Duvall
actor_1_facebook_likes                                                    4000
gross                                                              1.20136e+08
genres                                                    Comedy|Drama|Romance
actor_1_name                                                       Jon Favreau
movie_title                                                  Four Christmases 
num_voted_users                                                          48500
cast_total_facebook_likes                                                 9913
actor_3_name                                                        Katy Mixon
facenumber_in_poster                                                         2
plot_keywords                airport|christmas|news broadcast|tv broadcast|...
movie_imdb_link              http://www.imdb.com/title/tt0369436/?ref_=fn_t...
num_user_for_reviews                                                       124
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2008
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 453, dtype: object
color                                                                    Color
director_name                                                      Chris Wedge
num_critic_for_reviews                                                     163
duration                                                                    91
director_facebook_likes                                                     77
actor_3_facebook_likes                                                     208
actor_2_name                                                        Drew Carey
actor_1_facebook_likes                                                    1000
gross                                                                1.282e+08
genres                                Adventure|Animation|Comedy|Family|Sci-Fi
actor_1_name                                                     Jim Broadbent
movie_title                                                            Robots 
num_voted_users                                                         103022
cast_total_facebook_likes                                                 1804
actor_3_name                                                       Paula Abdul
facenumber_in_poster                                                         1
plot_keywords                actor voicing multiple characters|box office h...
movie_imdb_link              http://www.imdb.com/title/tt0358082/?ref_=fn_t...
num_user_for_reviews                                                       269
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     311
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 454, dtype: object
color                                                                    Color
director_name                                                         John Woo
num_critic_for_reviews                                                     155
duration                                                                   138
director_facebook_likes                                                    610
actor_3_facebook_likes                                                     805
actor_2_name                                                       CCH Pounder
actor_1_facebook_likes                                                   12000
gross                                                              1.12226e+08
genres                                            Action|Crime|Sci-Fi|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                                          Face/Off 
num_voted_users                                                         283967
cast_total_facebook_likes                                                17087
actor_3_name                                                        Joan Allen
facenumber_in_poster                                                         0
plot_keywords                death of child|face|face transplant|prison|ter...
movie_imdb_link              http://www.imdb.com/title/tt0119094/?ref_=fn_t...
num_user_for_reviews                                                       535
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+07
title_year                                                                1997
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 455, dtype: object
color                                                                    Color
director_name                                                    Adam Shankman
num_critic_for_reviews                                                     144
duration                                                                    99
director_facebook_likes                                                    163
actor_3_facebook_likes                                                     495
actor_2_name                                                    Carmen Electra
actor_1_facebook_likes                                                   11000
gross                                                              1.09994e+08
genres                                           Comedy|Family|Fantasy|Romance
actor_1_name                                                      Adam Sandler
movie_title                                                   Bedtime Stories 
num_voted_users                                                          72326
cast_total_facebook_likes                                                12831
actor_3_name                                                   Kathryn Joosten
facenumber_in_poster                                                         0
plot_keywords                 2000s|bedtime story|elephant|handyman|tween girl
movie_imdb_link              http://www.imdb.com/title/tt0960731/?ref_=fn_t...
num_user_for_reviews                                                       116
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+07
title_year                                                                2008
actor_2_facebook_likes                                                     869
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 456, dtype: object
color                                                                    Color
director_name                                                       Sam Mendes
num_critic_for_reviews                                                     226
duration                                                                   117
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     818
actor_2_name                                              Jennifer Jason Leigh
actor_1_facebook_likes                                                   15000
gross                                                              1.04055e+08
genres                                                    Crime|Drama|Thriller
actor_1_name                                                         Tom Hanks
movie_title                                                 Road to Perdition 
num_voted_users                                                         200359
cast_total_facebook_likes                                                16828
actor_3_name                                                        Liam Aiken
facenumber_in_poster                                                         0
plot_keywords                               1930s|blood|gun|on the run|revenge
movie_imdb_link              http://www.imdb.com/title/tt0257044/?ref_=fn_t...
num_user_for_reviews                                                      1009
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+07
title_year                                                                2002
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 457, dtype: object
color                                                                    Color
director_name                                                     Dennis Dugan
num_critic_for_reviews                                                     204
duration                                                                   117
director_facebook_likes                                                    221
actor_3_facebook_likes                                                     503
actor_2_name                                                    Bailee Madison
actor_1_facebook_likes                                                   11000
gross                                                              1.03028e+08
genres                                                          Comedy|Romance
actor_1_name                                                      Adam Sandler
movie_title                                                   Just Go with It 
num_voted_users                                                         172878
cast_total_facebook_likes                                                16325
actor_3_name                                                      Kevin Nealon
facenumber_in_poster                                                         1
plot_keywords                chick flick|hawaii|love|plastic surgeon|woman ...
movie_imdb_link              http://www.imdb.com/title/tt1564367/?ref_=fn_t...
num_user_for_reviews                                                       203
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2011
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     19000
Name: 458, dtype: object
color                                                                      NaN
director_name                                                              NaN
num_critic_for_reviews                                                      95
duration                                                                    54
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                       0
actor_2_name                                                     Royce Johnson
actor_1_facebook_likes                                                     577
gross                                                                      NaN
genres                            Action|Adventure|Crime|Drama|Sci-Fi|Thriller
actor_1_name                                                      Elden Henson
movie_title                                             Daredevil             
num_voted_users                                                         213483
cast_total_facebook_likes                                                  581
actor_3_name                                                       Charlie Cox
facenumber_in_poster                                                         0
plot_keywords                corruption|lawyer|partnership|superhero|vigilante
movie_imdb_link              http://www.imdb.com/title/tt3322312/?ref_=fn_t...
num_user_for_reviews                                                       394
language                                                               English
country                                                                    USA
content_rating                                                           TV-MA
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                       4
imdb_score                                                                 8.8
aspect_ratio                                                                16
movie_facebook_likes                                                     55000
Name: 459, dtype: object
color                                                                    Color
director_name                                                       Simon West
num_critic_for_reviews                                                     139
duration                                                                   123
director_facebook_likes                                                    165
actor_3_facebook_likes                                                     744
actor_2_name                                                     Monica Potter
actor_1_facebook_likes                                                   12000
gross                                                              1.01087e+08
genres                                                   Action|Crime|Thriller
actor_1_name                                                     Steve Buscemi
movie_title                                                           Con Air 
num_voted_users                                                         225282
cast_total_facebook_likes                                                15362
actor_3_name                                                    Dave Chappelle
facenumber_in_poster                                                         6
plot_keywords                      army rangers|convict|criminal|escape|prison
movie_imdb_link              http://www.imdb.com/title/tt0118880/?ref_=fn_t...
num_user_for_reviews                                                       339
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     878
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 460, dtype: object
color                                                                    Color
director_name                                                      D.J. Caruso
num_critic_for_reviews                                                     215
duration                                                                   118
director_facebook_likes                                                    154
actor_3_facebook_likes                                                     915
actor_2_name                                                       Ethan Embry
actor_1_facebook_likes                                                    3000
gross                                                              1.01112e+08
genres                                                 Action|Mystery|Thriller
actor_1_name                                                    Rosario Dawson
movie_title                                                         Eagle Eye 
num_voted_users                                                         150764
cast_total_facebook_likes                                                 5637
actor_3_name                                                     Cameron Boyce
facenumber_in_poster                                                         3
plot_keywords                audio surveillance|death|pentagon|technology|t...
movie_imdb_link              http://www.imdb.com/title/tt1059786/?ref_=fn_t...
num_user_for_reviews                                                       318
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2008
actor_2_facebook_likes                                                     982
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 461, dtype: object
color                                                                    Color
director_name                                                Anthony Minghella
num_critic_for_reviews                                                     198
duration                                                                   154
director_facebook_likes                                                    333
actor_3_facebook_likes                                                   16000
actor_2_name                                                   Natalie Portman
actor_1_facebook_likes                                                   22000
gross                                                              9.56326e+07
genres                                     Adventure|Drama|History|Romance|War
actor_1_name                                            Philip Seymour Hoffman
movie_title                                                     Cold Mountain 
num_voted_users                                                         118483
cast_total_facebook_likes                                                61110
actor_3_name                                                    Charlie Hunnam
facenumber_in_poster                                                         3
plot_keywords                  civil war|mountain|soldier|well|wounded soldier
movie_imdb_link              http://www.imdb.com/title/tt0159365/?ref_=fn_t...
num_user_for_reviews                                                       674
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.9e+07
title_year                                                                2003
actor_2_facebook_likes                                                   20000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 462, dtype: object
color                                                                    Color
director_name                                                    Albert Hughes
num_critic_for_reviews                                                     325
duration                                                                   118
director_facebook_likes                                                    117
actor_3_facebook_likes                                                   10000
actor_2_name                                                        Mila Kunis
actor_1_facebook_likes                                                   18000
gross                                                              9.48227e+07
genres                                         Action|Adventure|Drama|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                                   The Book of Eli 
num_voted_users                                                         227072
cast_total_facebook_likes                                                44797
actor_3_name                                                       Gary Oldman
facenumber_in_poster                                                         0
plot_keywords                       blind|book|long take|post apocalypse|water
movie_imdb_link              http://www.imdb.com/title/tt1037705/?ref_=fn_t...
num_user_for_reviews                                                       560
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+07
title_year                                                                2010
actor_2_facebook_likes                                                   15000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     20000
Name: 463, dtype: object
color                                                                    Color
director_name                                                     Les Mayfield
num_critic_for_reviews                                                      53
duration                                                                    90
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     159
actor_2_name                                                       Jodi Benson
actor_1_facebook_likes                                                   49000
gross                                                              9.29698e+07
genres                                                    Comedy|Family|Sci-Fi
actor_1_name                                                    Robin Williams
movie_title                                                           Flubber 
num_voted_users                                                          63625
cast_total_facebook_likes                                                50005
actor_3_name                                                         Sam Lloyd
facenumber_in_poster                                                         1
plot_keywords                  college|flubber|flying rubber|professor|wedding
movie_imdb_link              http://www.imdb.com/title/tt0119137/?ref_=fn_t...
num_user_for_reviews                                                        64
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+07
title_year                                                                1997
actor_2_facebook_likes                                                     570
imdb_score                                                                 5.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 464, dtype: object
color                                                                    Color
director_name                                                      Jan de Bont
num_critic_for_reviews                                                     167
duration                                                                   113
director_facebook_likes                                                    101
actor_3_facebook_likes                                                     913
actor_2_name                                                       Lili Taylor
actor_1_facebook_likes                                                   14000
gross                                                              9.11889e+07
genres                                         Fantasy|Horror|Mystery|Thriller
actor_1_name                                                       Liam Neeson
movie_title                                                      The Haunting 
num_voted_users                                                          58184
cast_total_facebook_likes                                                17786
actor_3_name                                                   Virginia Madsen
facenumber_in_poster                                                         0
plot_keywords                greenhouse|haunted house|horror movie remake|m...
movie_imdb_link              http://www.imdb.com/title/tt0171363/?ref_=fn_t...
num_user_for_reviews                                                       805
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                1999
actor_2_facebook_likes                                                     960
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 465, dtype: object
color                                                                    Color
director_name                                                        Joe Pytka
num_critic_for_reviews                                                      46
duration                                                                    88
director_facebook_likes                                                     30
actor_3_facebook_likes                                                     366
actor_2_name                                                      Wayne Knight
actor_1_facebook_likes                                                   13000
gross                                                              9.04436e+07
genres                       Adventure|Animation|Comedy|Family|Fantasy|Sci-...
actor_1_name                                                       Bill Murray
movie_title                                                         Space Jam 
num_voted_users                                                         112167
cast_total_facebook_likes                                                15001
actor_3_name                                                    Michael Jordan
facenumber_in_poster                                                         1
plot_keywords                alien|basketball|basketball game|cult film|mon...
movie_imdb_link              http://www.imdb.com/title/tt0117705/?ref_=fn_t...
num_user_for_reviews                                                       123
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+07
title_year                                                                1996
actor_2_facebook_likes                                                     967
imdb_score                                                                 6.3
aspect_ratio                                                              1.77
movie_facebook_likes                                                         0
Name: 466, dtype: object
color                                                                    Color
director_name                                                       Shawn Levy
num_critic_for_reviews                                                     147
duration                                                                    93
director_facebook_likes                                                    189
actor_3_facebook_likes                                                      38
actor_2_name                                                      Henry Czerny
actor_1_facebook_likes                                                    1000
gross                                                              8.22265e+07
genres                                   Adventure|Comedy|Crime|Family|Mystery
actor_1_name                                                        Roger Rees
movie_title                                                  The Pink Panther 
num_voted_users                                                          65499
cast_total_facebook_likes                                                 1267
actor_3_name                                                    William Abadie
facenumber_in_poster                                                         0
plot_keywords                 diamond|france|investigation|pink panther|soccer
movie_imdb_link              http://www.imdb.com/title/tt0383216/?ref_=fn_t...
num_user_for_reviews                                                       424
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     177
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 467, dtype: object
color                                                                    Color
director_name                                                 Scott Derrickson
num_critic_for_reviews                                                     276
duration                                                                   104
director_facebook_likes                                                    301
actor_3_facebook_likes                                                      71
actor_2_name                                                          Jon Hamm
actor_1_facebook_likes                                                   18000
gross                                                              7.93638e+07
genres                                                   Drama|Sci-Fi|Thriller
actor_1_name                                                      Keanu Reeves
movie_title                                     The Day the Earth Stood Still 
num_voted_users                                                         139423
cast_total_facebook_likes                                                22194
actor_3_name                                                    Juan Riedinger
facenumber_in_poster                                                         0
plot_keywords                       alien|earth|giant robot|military|scientist
movie_imdb_link              http://www.imdb.com/title/tt0970416/?ref_=fn_t...
num_user_for_reviews                                                       698
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2008
actor_2_facebook_likes                                                    4000
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 468, dtype: object
color                                                                    Color
director_name                                                   Richard Donner
num_critic_for_reviews                                                      80
duration                                                                   135
director_facebook_likes                                                    503
actor_3_facebook_likes                                                      67
actor_2_name                                                     Alex McArthur
actor_1_facebook_likes                                                    8000
gross                                                              7.60815e+07
genres                                   Action|Crime|Mystery|Romance|Thriller
actor_1_name                                                     Julia Roberts
movie_title                                                 Conspiracy Theory 
num_voted_users                                                          76099
cast_total_facebook_likes                                                 8355
actor_3_name                                                     Michael Potts
facenumber_in_poster                                                         1
plot_keywords                          conspiracy|fbi|mk ultra|newsletter|taxi
movie_imdb_link              http://www.imdb.com/title/tt0118883/?ref_=fn_t...
num_user_for_reviews                                                       162
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     137
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 469, dtype: object
color                                                                    Color
director_name                                                       David Ayer
num_critic_for_reviews                                                     406
duration                                                                   134
director_facebook_likes                                                    452
actor_3_facebook_likes                                                     697
actor_2_name                                                      Logan Lerman
actor_1_facebook_likes                                                   11000
gross                                                              8.57071e+07
genres                                                        Action|Drama|War
actor_1_name                                                         Brad Pitt
movie_title                                                              Fury 
num_voted_users                                                         303185
cast_total_facebook_likes                                                20411
actor_3_name                                                       Jim Parrack
facenumber_in_poster                                                         4
plot_keywords                         battle|battlefield|brutality|combat|tank
movie_imdb_link              http://www.imdb.com/title/tt2713180/?ref_=fn_t...
num_user_for_reviews                                                       701
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.8e+07
title_year                                                                2014
actor_2_facebook_likes                                                    8000
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     82000
Name: 470, dtype: object
color                                                                    Color
director_name                                                     Ivan Reitman
num_critic_for_reviews                                                      97
duration                                                                    98
director_facebook_likes                                                    425
actor_3_facebook_likes                                                     397
actor_2_name                                                        Anne Heche
actor_1_facebook_likes                                                   11000
gross                                                                7.433e+07
genres                                         Action|Adventure|Comedy|Romance
actor_1_name                                                     Harrison Ford
movie_title                                             Six Days Seven Nights 
num_voted_users                                                          60910
cast_total_facebook_likes                                                12729
actor_3_name                                                       Amy Sedaris
facenumber_in_poster                                                         2
plot_keywords                         airplane|island|pilot|storm|thunderstorm
movie_imdb_link              http://www.imdb.com/title/tt0120828/?ref_=fn_t...
num_user_for_reviews                                                       164
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                1998
actor_2_facebook_likes                                                     643
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 471, dtype: object
color                                                                    Color
director_name                                                      Eric Brevig
num_critic_for_reviews                                                     143
duration                                                                    80
director_facebook_likes                                                     40
actor_3_facebook_likes                                                     375
actor_2_name                                                      Tom Cavanagh
actor_1_facebook_likes                                                    3000
gross                                                              1.00169e+08
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                 Justin Timberlake
movie_title                                                         Yogi Bear 
num_voted_users                                                          16385
cast_total_facebook_likes                                                 4394
actor_3_name                                              Josh Robert Thompson
facenumber_in_poster                                                         0
plot_keywords                               bear|mayor|park|sabotage|yogi bear
movie_imdb_link              http://www.imdb.com/title/tt1302067/?ref_=fn_t...
num_user_for_reviews                                                       100
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+07
title_year                                                                2010
actor_2_facebook_likes                                                     642
imdb_score                                                                 4.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 472, dtype: object
color                                                                    Color
director_name                                                     Kelly Asbury
num_critic_for_reviews                                                     106
duration                                                                    83
director_facebook_likes                                                     21
actor_3_facebook_likes                                                     495
actor_2_name                                                    Charles Napier
actor_1_facebook_likes                                                   13000
gross                                                              7.32153e+07
genres                                      Adventure|Animation|Family|Western
actor_1_name                                                        Matt Damon
movie_title                                  Spirit: Stallion of the Cimarron 
num_voted_users                                                          44143
cast_total_facebook_likes                                                14261
actor_3_name                                                    Zahn McClarnon
facenumber_in_poster                                                         0
plot_keywords                       cavalry|escape|herd|stallion|wild stallion
movie_imdb_link              http://www.imdb.com/title/tt0166813/?ref_=fn_t...
num_user_for_reviews                                                       216
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   8e+07
title_year                                                                2002
actor_2_facebook_likes                                                     503
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      4000
Name: 473, dtype: object
color                                                                    Color
director_name                                                     Frank Coraci
num_critic_for_reviews                                                     178
duration                                                                   102
director_facebook_likes                                                    153
actor_3_facebook_likes                                                     269
actor_2_name                                                       Leslie Bibb
actor_1_facebook_likes                                                    3000
gross                                                              8.03609e+07
genres                                                   Comedy|Family|Romance
actor_1_name                                                    Rosario Dawson
movie_title                                                         Zookeeper 
num_voted_users                                                          44662
cast_total_facebook_likes                                                 5392
actor_3_name                                                 Nicholas Turturro
facenumber_in_poster                                                         1
plot_keywords                champagne bottle|coca cola|jewelry box|red bul...
movie_imdb_link              http://www.imdb.com/title/tt1222817/?ref_=fn_t...
num_user_for_reviews                                                       127
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+07
title_year                                                                2011
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 474, dtype: object
color                                                                    Color
director_name                                                  Stephen Hopkins
num_critic_for_reviews                                                     102
duration                                                                   130
director_facebook_likes                                                     81
actor_3_facebook_likes                                                     427
actor_2_name                                                      William Hurt
actor_1_facebook_likes                                                   10000
gross                                                              6.91029e+07
genres                                 Action|Adventure|Family|Sci-Fi|Thriller
actor_1_name                                                       Gary Oldman
movie_title                                                     Lost in Space 
num_voted_users                                                          58402
cast_total_facebook_likes                                                12186
actor_3_name                                                     June Lockhart
facenumber_in_poster                                                         0
plot_keywords                based on tv series|remake|robot|scientist|spac...
movie_imdb_link              http://www.imdb.com/title/tt0120738/?ref_=fn_t...
num_user_for_reviews                                                       370
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                1998
actor_2_facebook_likes                                                     882
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 475, dtype: object
color                                                                    Color
director_name                                                   Jonathan Demme
num_critic_for_reviews                                                     209
duration                                                                   129
director_facebook_likes                                                    438
actor_3_facebook_likes                                                     502
actor_2_name                                                    Dorian Missick
actor_1_facebook_likes                                                   18000
gross                                                              6.59487e+07
genres                                           Drama|Mystery|Sci-Fi|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                          The Manchurian Candidate 
num_voted_users                                                          86422
cast_total_facebook_likes                                                20056
actor_3_name                                               Jose Pablo Cantillo
facenumber_in_poster                                                         1
plot_keywords                brainwashed assassin|conspiracy|critically acc...
movie_imdb_link              http://www.imdb.com/title/tt0368008/?ref_=fn_t...
num_user_for_reviews                                                       363
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+07
title_year                                                                2004
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 476, dtype: object
color                                                                    Color
director_name                                                     Henry Jaglom
num_critic_for_reviews                                                      19
duration                                                                   117
director_facebook_likes                                                     69
actor_3_facebook_likes                                                      87
actor_2_name                                                   Stephen Dillane
actor_1_facebook_likes                                                     898
gross                                                                   821997
genres                                                           Drama|Romance
actor_1_name                                                  Vanessa Redgrave
movie_title                                                           Déjà Vu 
num_voted_users                                                            666
cast_total_facebook_likes                                                 1753
actor_3_name                                                   Michael Brandon
facenumber_in_poster                                                         0
plot_keywords                                  american|love|pin|ruby|stranger
movie_imdb_link              http://www.imdb.com/title/tt0119033/?ref_=fn_t...
num_user_for_reviews                                                        40
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                1997
actor_2_facebook_likes                                                     577
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                        91
Name: 477, dtype: object
color                                                                    Color
director_name                                               Genndy Tartakovsky
num_critic_for_reviews                                                     152
duration                                                                    89
director_facebook_likes                                                    266
actor_3_facebook_likes                                                     859
actor_2_name                                                      Adam Sandler
actor_1_facebook_likes                                                   12000
gross                                                              1.69693e+08
genres                                         Animation|Comedy|Family|Fantasy
actor_1_name                                                     Steve Buscemi
movie_title                                              Hotel Transylvania 2 
num_voted_users                                                          56501
cast_total_facebook_likes                                                26839
actor_3_name                                                     Fran Drescher
facenumber_in_poster                                                         0
plot_keywords                    california|dracula|hotel|transylvania|vampire
movie_imdb_link              http://www.imdb.com/title/tt2510894/?ref_=fn_t...
num_user_for_reviews                                                        97
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+07
title_year                                                                2015
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     16000
Name: 478, dtype: object
color                                                          Black and White
director_name                                                              NaN
num_critic_for_reviews                                                      31
duration                                                                    25
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     474
actor_2_name                                                   Agnes Moorehead
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                   Comedy|Family|Fantasy
actor_1_name                                              Elizabeth Montgomery
movie_title                                             Bewitched             
num_voted_users                                                          11427
cast_total_facebook_likes                                                 2614
actor_3_name                                                         Dick York
facenumber_in_poster                                                         1
plot_keywords                      connecticut|magic|marriage|witch|witchcraft
movie_imdb_link              http://www.imdb.com/title/tt0057733/?ref_=fn_t...
num_user_for_reviews                                                        71
language                                                               English
country                                                                    USA
content_rating                                                            TV-G
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     960
imdb_score                                                                 7.6
aspect_ratio                                                                 4
movie_facebook_likes                                                         0
Name: 479, dtype: object
color                                                                    Color
director_name                                                      James Algar
num_critic_for_reviews                                                     129
duration                                                                    74
director_facebook_likes                                                     11
actor_3_facebook_likes                                                      62
actor_2_name                                                     Penn Jillette
actor_1_facebook_likes                                                     340
gross                                                              6.05072e+07
genres                                          Animation|Family|Fantasy|Music
actor_1_name                                                      Quincy Jones
movie_title                                                     Fantasia 2000 
num_voted_users                                                          27543
cast_total_facebook_likes                                                  814
actor_3_name                                                      Russi Taylor
facenumber_in_poster                                                         0
plot_keywords                             abstract|ark|disney|fairy tale|piano
movie_imdb_link              http://www.imdb.com/title/tt0120910/?ref_=fn_t...
num_user_for_reviews                                                       186
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   8e+07
title_year                                                                1999
actor_2_facebook_likes                                                     243
imdb_score                                                                 7.3
aspect_ratio                                                              1.78
movie_facebook_likes                                                       607
Name: 480, dtype: object
color                                                                    Color
director_name                                                      Simon Wells
num_critic_for_reviews                                                     124
duration                                                                    96
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     102
actor_2_name                                                        Alan Young
actor_1_facebook_likes                                                     891
gross                                                              5.66848e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                         Mark Addy
movie_title                                                  The Time Machine 
num_voted_users                                                         103787
cast_total_facebook_likes                                                 1919
actor_3_name                                                     Josh Stamberg
facenumber_in_poster                                                         0
plot_keywords                hunter|scientist|time machine|time travel|time...
movie_imdb_link              http://www.imdb.com/title/tt0268695/?ref_=fn_t...
num_user_for_reviews                                                       615
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2002
actor_2_facebook_likes                                                     639
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                      3000
Name: 481, dtype: object
color                                                                    Color
director_name                                                    Ron Underwood
num_critic_for_reviews                                                      35
duration                                                                   114
director_facebook_likes                                                     31
actor_3_facebook_likes                                                     372
actor_2_name                                                       Mika Boorem
actor_1_facebook_likes                                                    9000
gross                                                               5.0628e+07
genres                                Action|Adventure|Family|Fantasy|Thriller
actor_1_name                                                   Charlize Theron
movie_title                                                  Mighty Joe Young 
num_voted_users                                                          22955
cast_total_facebook_likes                                                10731
actor_3_name                                                      David Paymer
facenumber_in_poster                                                         0
plot_keywords                         animal|california|gorilla|hunter|poacher
movie_imdb_link              http://www.imdb.com/title/tt0120751/?ref_=fn_t...
num_user_for_reviews                                                        88
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   9e+07
title_year                                                                1998
actor_2_facebook_likes                                                     496
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 482, dtype: object
color                                                                    Color
director_name                                                     Dominic Sena
num_critic_for_reviews                                                     166
duration                                                                    99
director_facebook_likes                                                     57
actor_3_facebook_likes                                                     820
actor_2_name                                                       Don Cheadle
actor_1_facebook_likes                                                   20000
gross                                                               6.9773e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                      Hugh Jackman
movie_title                                                         Swordfish 
num_voted_users                                                         155532
cast_total_facebook_likes                                                25942
actor_3_name                                                       Sam Shepard
facenumber_in_poster                                                         4
plot_keywords                computer|secret agent|terrorism|told in flashb...
movie_imdb_link              http://www.imdb.com/title/tt0244244/?ref_=fn_t...
num_user_for_reviews                                                       543
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+07
title_year                                                                2001
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 483, dtype: object
color                                                                    Color
director_name                                                  Martin Campbell
num_critic_for_reviews                                                     137
duration                                                                   129
director_facebook_likes                                                    258
actor_3_facebook_likes                                                     163
actor_2_name                                                     Nick Chinlund
actor_1_facebook_likes                                                    2000
gross                                                              4.53564e+07
genres                                                Action|Adventure|Western
actor_1_name                                                   Michael Emerson
movie_title                                               The Legend of Zorro 
num_voted_users                                                          71574
cast_total_facebook_likes                                                 2864
actor_3_name                                                     Adrian Alonso
facenumber_in_poster                                                         1
plot_keywords                                 california|fight|hero|mask|zorro
movie_imdb_link              http://www.imdb.com/title/tt0386140/?ref_=fn_t...
num_user_for_reviews                                                       244
language                                                               Spanish
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     277
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       951
Name: 484, dtype: object
color                                                                    Color
director_name                                                     Vincent Ward
num_critic_for_reviews                                                     121
duration                                                                   113
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     129
actor_2_name                                                 Annabella Sciorra
actor_1_facebook_likes                                                   49000
gross                                                              5.53509e+07
genres                                                   Drama|Fantasy|Romance
actor_1_name                                                    Robin Williams
movie_title                                              What Dreams May Come 
num_voted_users                                                          83560
cast_total_facebook_likes                                                49631
actor_3_name                                                     Rosalind Chao
facenumber_in_poster                                                         1
plot_keywords                               heaven|hell|soul|soul mate|suicide
movie_imdb_link              http://www.imdb.com/title/tt0120889/?ref_=fn_t...
num_user_for_reviews                                                       619
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     448
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     32000
Name: 485, dtype: object
color                                                                    Color
director_name                                                     Steven Brill
num_critic_for_reviews                                                      87
duration                                                                    90
director_facebook_likes                                                     65
actor_3_facebook_likes                                                     658
actor_2_name                                                        Jon Lovitz
actor_1_facebook_likes                                                   11000
gross                                                              3.94429e+07
genres                                                          Comedy|Fantasy
actor_1_name                                                      Adam Sandler
movie_title                                                      Little Nicky 
num_voted_users                                                          80639
cast_total_facebook_likes                                                25190
actor_3_name                                                    Michael McKean
facenumber_in_poster                                                         0
plot_keywords                                 angel|devil|flask|hell|the devil
movie_imdb_link              http://www.imdb.com/title/tt0185431/?ref_=fn_t...
num_user_for_reviews                                                       237
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2000
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 486, dtype: object
color                                                                    Color
director_name                                                    Terry Gilliam
num_critic_for_reviews                                                     233
duration                                                                   118
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     871
actor_2_name                                                      Heath Ledger
actor_1_facebook_likes                                                   13000
gross                                                              3.78996e+07
genres                                Action|Adventure|Comedy|Fantasy|Thriller
actor_1_name                                                        Matt Damon
movie_title                                                The Brothers Grimm 
num_voted_users                                                          98472
cast_total_facebook_likes                                                27114
actor_3_name                                                   Mackenzie Crook
facenumber_in_poster                                                         2
plot_keywords                             creature|curse|exorcism|girl|village
movie_imdb_link              http://www.imdb.com/title/tt0355295/?ref_=fn_t...
num_user_for_reviews                                                       492
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.8e+07
title_year                                                                2005
actor_2_facebook_likes                                                   13000
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 487, dtype: object
color                                                                    Color
director_name                                                       Tim Burton
num_critic_for_reviews                                                     132
duration                                                                   106
director_facebook_likes                                                  13000
actor_3_facebook_likes                                                     733
actor_2_name                                                      Martin Short
actor_1_facebook_likes                                                   20000
gross                                                              3.77542e+07
genres                                                    Action|Comedy|Sci-Fi
actor_1_name                                                   Natalie Portman
movie_title                                                     Mars Attacks! 
num_voted_users                                                         172217
cast_total_facebook_likes                                                22590
actor_3_name                                                        Lukas Haas
facenumber_in_poster                                                         3
plot_keywords                           alien|general|martian|president|weapon
movie_imdb_link              http://www.imdb.com/title/tt0116996/?ref_=fn_t...
num_user_for_reviews                                                       405
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                1996
actor_2_facebook_likes                                                     770
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 488, dtype: object
color                                                                    Color
director_name                                            Lucile Hadzihalilovic
num_critic_for_reviews                                                      63
duration                                                                    81
director_facebook_likes                                                     92
actor_3_facebook_likes                                                       8
actor_2_name                                                      Roxane Duran
actor_1_facebook_likes                                                      23
gross                                                                      NaN
genres                                             Drama|Horror|Mystery|Sci-Fi
actor_1_name                                                     Nissim Renard
movie_title                                                         Evolution 
num_voted_users                                                            979
cast_total_facebook_likes                                                   54
actor_3_name                                            Julie-Marie Parmentier
facenumber_in_poster                                                         0
plot_keywords                       boy|giving birth|nurse|sea|ultrasonography
movie_imdb_link              http://www.imdb.com/title/tt4291590/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                                French
country                                                                 France
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2015
actor_2_facebook_likes                                                      21
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       257
Name: 489, dtype: object
color                                                                    Color
director_name                                                     Lee Tamahori
num_critic_for_reviews                                                      95
duration                                                                   117
director_facebook_likes                                                     93
actor_3_facebook_likes                                                     904
actor_2_name                                                  Harold Perrineau
actor_1_facebook_likes                                                   12000
gross                                                              2.77799e+07
genres                                         Action|Adventure|Drama|Thriller
actor_1_name                                                   Anthony Hopkins
movie_title                                                          The Edge 
num_voted_users                                                          55913
cast_total_facebook_likes                                                14831
actor_3_name                                                     Bart the Bear
facenumber_in_poster                                                         2
plot_keywords                bear|billionaire|crash|survival tactics|wilder...
movie_imdb_link              http://www.imdb.com/title/tt0119051/?ref_=fn_t...
num_user_for_reviews                                                       182
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1997
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 490, dtype: object
color                                                                    Color
director_name                                                  Jonathan Mostow
num_critic_for_reviews                                                     258
duration                                                                    89
director_facebook_likes                                                     84
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Devin Ratray
actor_1_facebook_likes                                                   13000
gross                                                              3.85424e+07
genres                                                  Action|Sci-Fi|Thriller
actor_1_name                                                      Bruce Willis
movie_title                                                        Surrogates 
num_voted_users                                                         151424
cast_total_facebook_likes                                                18132
actor_3_name                                                      Boris Kodjoe
facenumber_in_poster                                                         5
plot_keywords                            android|fbi agent|future|murder|robot
movie_imdb_link              http://www.imdb.com/title/tt0986263/?ref_=fn_t...
num_user_for_reviews                                                       252
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2009
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 491, dtype: object
color                                                                    Color
director_name                                                  Roger Donaldson
num_critic_for_reviews                                                     162
duration                                                                   145
director_facebook_likes                                                     79
actor_3_facebook_likes                                                     183
actor_2_name                                                        Jon Foster
actor_1_facebook_likes                                                     981
gross                                                              3.45667e+07
genres                                                  Drama|History|Thriller
actor_1_name                                                   Bruce Greenwood
movie_title                                                     Thirteen Days 
num_voted_users                                                          45231
cast_total_facebook_likes                                                 1825
actor_3_name                                                      Bruce Thomas
facenumber_in_poster                                                         1
plot_keywords                           blockade|crisis|cuba|missile|president
movie_imdb_link              http://www.imdb.com/title/tt0146309/?ref_=fn_t...
num_user_for_reviews                                                       315
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2000
actor_2_facebook_likes                                                     274
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 492, dtype: object
color                                                                    Color
director_name                                                        Rob Cohen
num_critic_for_reviews                                                      61
duration                                                                   114
director_facebook_likes                                                    357
actor_3_facebook_likes                                                     366
actor_2_name                                                   Viggo Mortensen
actor_1_facebook_likes                                                   13000
gross                                                              3.28856e+07
genres                                         Action|Adventure|Drama|Thriller
actor_1_name                                                Sylvester Stallone
movie_title                                                          Daylight 
num_voted_users                                                          53132
cast_total_facebook_likes                                                25126
actor_3_name                                                     Amy Brenneman
facenumber_in_poster                                                         0
plot_keywords                collapsing tunnel|explosion|new jersey|tunnel|...
movie_imdb_link              http://www.imdb.com/title/tt0116040/?ref_=fn_t...
num_user_for_reviews                                                       101
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                1996
actor_2_facebook_likes                                                   10000
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 493, dtype: object
color                                                                    Color
director_name                                                       Barry Cook
num_critic_for_reviews                                                     113
duration                                                                    87
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     210
actor_2_name                                                       Tiya Sircar
actor_1_facebook_likes                                                     882
gross                                                              3.60732e+07
genres                                              Adventure|Animation|Family
actor_1_name                                                      Charlie Rowe
movie_title                                         Walking with Dinosaurs 3D 
num_voted_users                                                           8913
cast_total_facebook_likes                                                 1971
actor_3_name                                                Madison Rothschild
facenumber_in_poster                                                         0
plot_keywords                           brother|dinosaur|head butt|hero|orphan
movie_imdb_link              http://www.imdb.com/title/tt1762399/?ref_=fn_t...
num_user_for_reviews                                                        66
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+07
title_year                                                                2013
actor_2_facebook_likes                                                     396
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 494, dtype: object
color                                                                    Color
director_name                                                  Roger Christian
num_critic_for_reviews                                                     174
duration                                                                   119
director_facebook_likes                                                     64
actor_3_facebook_likes                                                      41
actor_2_name                                                     Michael Byrne
actor_1_facebook_likes                                                     743
gross                                                              2.14717e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                     Richard Tyson
movie_title                                                 Battlefield Earth 
num_voted_users                                                          65464
cast_total_facebook_likes                                                  971
actor_3_name                                                        John Topor
facenumber_in_poster                                                         0
plot_keywords                alien|bad acting|pulp fiction|resistance fight...
movie_imdb_link              http://www.imdb.com/title/tt0185183/?ref_=fn_t...
num_user_for_reviews                                                      1308
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.4e+07
title_year                                                                2000
actor_2_facebook_likes                                                     117
imdb_score                                                                 2.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 495, dtype: object
color                                                                    Color
director_name                                                        Joe Dante
num_critic_for_reviews                                                     101
duration                                                                    91
director_facebook_likes                                                    287
actor_3_facebook_likes                                                     695
actor_2_name                                                      Jenna Elfman
actor_1_facebook_likes                                                    3000
gross                                                              2.09508e+07
genres                        Adventure|Animation|Comedy|Family|Fantasy|Sci-Fi
actor_1_name                                                    Brendan Fraser
movie_title                                      Looney Tunes: Back in Action 
num_voted_users                                                          24183
cast_total_facebook_likes                                                 5593
actor_3_name                                                  Heather Locklear
facenumber_in_poster                                                         4
plot_keywords                                 diamond|duck|monkey|spy|stuntman
movie_imdb_link              http://www.imdb.com/title/tt0318155/?ref_=fn_t...
num_user_for_reviews                                                       160
language                                                               English
country                                                                Germany
content_rating                                                              PG
budget                                                                   8e+07
title_year                                                                2003
actor_2_facebook_likes                                                     739
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       665
Name: 496, dtype: object
color                                                          Black and White
director_name                                                     Rob Marshall
num_critic_for_reviews                                                     205
duration                                                                   118
director_facebook_likes                                                    252
actor_3_facebook_likes                                                      30
actor_2_name                                                      Elio Germano
actor_1_facebook_likes                                                     529
gross                                                              1.96734e+07
genres                                                   Drama|Musical|Romance
actor_1_name                                                            Fergie
movie_title                                                              Nine 
num_voted_users                                                          37446
cast_total_facebook_likes                                                  619
actor_3_name                                                 Andrea Di Stefano
facenumber_in_poster                                                         4
plot_keywords                based on stage musical based on film|child abu...
movie_imdb_link              http://www.imdb.com/title/tt0875034/?ref_=fn_t...
num_user_for_reviews                                                       232
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2009
actor_2_facebook_likes                                                      48
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 497, dtype: object
color                                                                    Color
director_name                                                   Richard Donner
num_critic_for_reviews                                                     123
duration                                                                   116
director_facebook_likes                                                    503
actor_3_facebook_likes                                                     982
actor_2_name                                                     Gerard Butler
actor_1_facebook_likes                                                   23000
gross                                                              1.94807e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                       Paul Walker
movie_title                                                          Timeline 
num_voted_users                                                          53057
cast_total_facebook_likes                                                43887
actor_3_name                                                       Ethan Embry
facenumber_in_poster                                                         0
plot_keywords                     castle|france|professor|student|time machine
movie_imdb_link              http://www.imdb.com/title/tt0300556/?ref_=fn_t...
num_user_for_reviews                                                       457
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2003
actor_2_facebook_likes                                                   18000
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 498, dtype: object
color                                                                    Color
director_name                                                    Kevin Costner
num_critic_for_reviews                                                      79
duration                                                                   177
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     582
actor_2_name                                              Brian Anthony Wilson
actor_1_facebook_likes                                                     766
gross                                                              1.75934e+07
genres                                           Action|Adventure|Drama|Sci-Fi
actor_1_name                                                   Olivia Williams
movie_title                                                       The Postman 
num_voted_users                                                          56403
cast_total_facebook_likes                                                 4346
actor_3_name                                                       Larenz Tate
facenumber_in_poster                                                         1
plot_keywords                                  drifter|escape|hope|postman|usa
movie_imdb_link              http://www.imdb.com/title/tt0119925/?ref_=fn_t...
num_user_for_reviews                                                       376
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+07
title_year                                                                1997
actor_2_facebook_likes                                                     674
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 499, dtype: object
color                                                                    Color
director_name                                                    George Miller
num_critic_for_reviews                                                      61
duration                                                                    97
director_facebook_likes                                                    750
actor_3_facebook_likes                                                     231
actor_2_name                                                   Elizabeth Daily
actor_1_facebook_likes                                                    1000
gross                                                               1.8318e+07
genres                                   Adventure|Comedy|Drama|Family|Fantasy
actor_1_name                                                     Adam Goldberg
movie_title                                             Babe: Pig in the City 
num_voted_users                                                          24868
cast_total_facebook_likes                                                 2521
actor_3_name                                                     Glenne Headly
facenumber_in_poster                                                         0
plot_keywords                                     animal|farm|farmer|hotel|pig
movie_imdb_link              http://www.imdb.com/title/tt0120595/?ref_=fn_t...
num_user_for_reviews                                                       216
language                                                               English
country                                                              Australia
content_rating                                                               G
budget                                                                   8e+07
title_year                                                                1998
actor_2_facebook_likes                                                     971
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       964
Name: 500, dtype: object
color                                                                    Color
director_name                                                     Breck Eisner
num_critic_for_reviews                                                     202
duration                                                                   106
director_facebook_likes                                                     42
actor_3_facebook_likes                                                     612
actor_2_name                                                     Joseph Gilgun
actor_1_facebook_likes                                                   14000
gross                                                              2.73561e+07
genres                                                Action|Adventure|Fantasy
actor_1_name                                                        Vin Diesel
movie_title                                             The Last Witch Hunter 
num_voted_users                                                          58752
cast_total_facebook_likes                                                16922
actor_3_name                                                     Lotte Verbeek
facenumber_in_poster                                                         0
plot_keywords                box office flop|burned to death|magic|witch|wi...
movie_imdb_link              http://www.imdb.com/title/tt1618442/?ref_=fn_t...
num_user_for_reviews                                                       117
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+07
title_year                                                                2015
actor_2_facebook_likes                                                     788
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     21000
Name: 501, dtype: object
color                                                                    Color
director_name                                                   Antony Hoffman
num_critic_for_reviews                                                     145
duration                                                                   106
director_facebook_likes                                                     14
actor_3_facebook_likes                                                       0
actor_2_name                                                        Val Kilmer
actor_1_facebook_likes                                                       2
gross                                                              1.74732e+07
genres                                                  Action|Sci-Fi|Thriller
actor_1_name                                                         Bob Neill
movie_title                                                        Red Planet 
num_voted_users                                                          47612
cast_total_facebook_likes                                                    2
actor_3_name                                                      Tom Sizemore
facenumber_in_poster                                                         1
plot_keywords                    astronaut|mars|robot|robot as menace|survival
movie_imdb_link              http://www.imdb.com/title/tt0199753/?ref_=fn_t...
num_user_for_reviews                                                       348
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2000
actor_2_facebook_likes                                                       0
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       995
Name: 502, dtype: object
color                                                                    Color
director_name                                                       Luc Besson
num_critic_for_reviews                                                     101
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      14
actor_2_name                                                      Adam LeFevre
actor_1_facebook_likes                                                     563
gross                                                              1.51313e+07
genres                                      Adventure|Animation|Family|Fantasy
actor_1_name                                                        Mia Farrow
movie_title                                         Arthur and the Invisibles 
num_voted_users                                                          25843
cast_total_facebook_likes                                                  683
actor_3_name                                                     Penny Balfour
facenumber_in_poster                                                         0
plot_keywords                                boy|debt|garden|princess|treasure
movie_imdb_link              http://www.imdb.com/title/tt0344854/?ref_=fn_t...
num_user_for_reviews                                                        64
language                                                               English
country                                                                 France
content_rating                                                              PG
budget                                                                 8.6e+07
title_year                                                                2006
actor_2_facebook_likes                                                      80
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       941
Name: 503, dtype: object
color                                                                    Color
director_name                                                   Jacques Perrin
num_critic_for_reviews                                                     113
duration                                                                   104
director_facebook_likes                                                     63
actor_3_facebook_likes                                                       7
actor_2_name                                                    Jacques Perrin
actor_1_facebook_likes                                                      67
gross                                                              1.94064e+07
genres                                                       Documentary|Drama
actor_1_name                                              Pedro Armendáriz Jr.
movie_title                                                            Oceans 
num_voted_users                                                           7630
cast_total_facebook_likes                                                  152
actor_3_name                                                      Rie Miyazawa
facenumber_in_poster                                                         0
plot_keywords                damselfish|ocean habitat|ocean life|razorfish|...
movie_imdb_link              http://www.imdb.com/title/tt0765128/?ref_=fn_t...
num_user_for_reviews                                                        42
language                                                                French
country                                                                 France
content_rating                                                               G
budget                                                                   4e+07
title_year                                                                2009
actor_2_facebook_likes                                                      63
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 504, dtype: object
color                                                                    Color
director_name                                                      Peter Hyams
num_critic_for_reviews                                                     113
duration                                                                   102
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     212
actor_2_name                                               Catherine McCormack
actor_1_facebook_likes                                                    1000
gross                                                              1.89182e+06
genres                                 Action|Adventure|Horror|Sci-Fi|Thriller
actor_1_name                                                     David Oyelowo
movie_title                                                A Sound of Thunder 
num_voted_users                                                          16474
cast_total_facebook_likes                                                 1890
actor_3_name                                                     Jemima Rooper
facenumber_in_poster                                                         0
plot_keywords                           butterfly|hunter|time|time travel|wave
movie_imdb_link              http://www.imdb.com/title/tt0318081/?ref_=fn_t...
num_user_for_reviews                                                       301
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 5.2e+07
title_year                                                                2005
actor_2_facebook_likes                                                     307
imdb_score                                                                 4.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       785
Name: 505, dtype: object
color                                                                    Color
director_name                                               Paul W.S. Anderson
num_critic_for_reviews                                                     272
duration                                                                   105
director_facebook_likes                                                    545
actor_3_facebook_likes                                                      74
actor_2_name                                                     Currie Graham
actor_1_facebook_likes                                                     795
gross                                                              2.32197e+07
genres                                  Action|Adventure|Drama|History|Romance
actor_1_name                                                        Sasha Roiz
movie_title                                                           Pompeii 
num_voted_users                                                          84508
cast_total_facebook_likes                                                 1099
actor_3_name                                                   Dylan Schombing
facenumber_in_poster                                                         0
plot_keywords                     arena|lava bomb|mount vesuvius|pompeii|slave
movie_imdb_link              http://www.imdb.com/title/tt1921064/?ref_=fn_t...
num_user_for_reviews                                                       308
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2014
actor_2_facebook_likes                                                     172
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     20000
Name: 506, dtype: object
color                                                                    Color
director_name                                                 Andrés Couturier
num_critic_for_reviews                                                       3
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      20
actor_2_name                                                     David Hoffman
actor_1_facebook_likes                                                     163
gross                                                                      NaN
genres                                                        Animation|Family
actor_1_name                                                    Sariann Monaco
movie_title                                                    Top Cat Begins 
num_voted_users                                                            230
cast_total_facebook_likes                                                  370
actor_3_name                                                        Ben Diskin
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt4057916/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               Spanish
country                                                                 Mexico
content_rating                                                              PG
budget                                                                   8e+06
title_year                                                                2015
actor_2_facebook_likes                                                      94
imdb_score                                                                 4.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                       138
Name: 507, dtype: object
color                                                                    Color
director_name                                                       Ron Howard
num_critic_for_reviews                                                     205
duration                                                                   135
director_facebook_likes                                                   2000
actor_3_facebook_likes                                                     535
actor_2_name                                                  Austin Pendleton
actor_1_facebook_likes                                                    1000
gross                                                              1.70709e+08
genres                                                         Biography|Drama
actor_1_name                                                     Adam Goldberg
movie_title                                                  A Beautiful Mind 
num_voted_users                                                         610568
cast_total_facebook_likes                                                 2827
actor_3_name                                                       Judd Hirsch
facenumber_in_poster                                                         0
plot_keywords                conspiracy|cryptography|mathematician|mental i...
movie_imdb_link              http://www.imdb.com/title/tt0268978/?ref_=fn_t...
num_user_for_reviews                                                      1171
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.8e+07
title_year                                                                2001
actor_2_facebook_likes                                                     592
imdb_score                                                                 8.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     29000
Name: 508, dtype: object
color                                                                    Color
director_name                                                     Roger Allers
num_critic_for_reviews                                                     186
duration                                                                    73
director_facebook_likes                                                     28
actor_3_facebook_likes                                                     847
actor_2_name                                                       Nathan Lane
actor_1_facebook_likes                                                    2000
gross                                                              4.22784e+08
genres                                Adventure|Animation|Drama|Family|Musical
actor_1_name                                                 Matthew Broderick
movie_title                                                     The Lion King 
num_voted_users                                                         644348
cast_total_facebook_likes                                                 6458
actor_3_name                                                     Niketa Calame
facenumber_in_poster                                                         0
plot_keywords                         king|prince|scar|uncle|unnecessary guilt
movie_imdb_link              http://www.imdb.com/title/tt0110357/?ref_=fn_t...
num_user_for_reviews                                                       656
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 4.5e+07
title_year                                                                1994
actor_2_facebook_likes                                                     886
imdb_score                                                                 8.5
aspect_ratio                                                              1.66
movie_facebook_likes                                                     17000
Name: 509, dtype: object
color                                                                    Color
director_name                                                      Brad Peyton
num_critic_for_reviews                                                     178
duration                                                                    94
director_facebook_likes                                                     62
actor_3_facebook_likes                                                     722
actor_2_name                                                    Dwayne Johnson
actor_1_facebook_likes                                                   14000
gross                                                              1.03812e+08
genres                           Action|Adventure|Comedy|Family|Fantasy|Sci-Fi
actor_1_name                                                   Josh Hutcherson
movie_title                                  Journey 2: The Mysterious Island 
num_voted_users                                                          67296
cast_total_facebook_likes                                                27842
actor_3_name                                                     Kristin Davis
facenumber_in_poster                                                         3
plot_keywords                 gold|hurricane|island|mountain|mysterious island
movie_imdb_link              http://www.imdb.com/title/tt1397514/?ref_=fn_t...
num_user_for_reviews                                                       133
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.9e+07
title_year                                                                2012
actor_2_facebook_likes                                                   12000
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 510, dtype: object
color                                                                    Color
director_name                                                     Cody Cameron
num_critic_for_reviews                                                     169
duration                                                                    95
director_facebook_likes                                                     18
actor_3_facebook_likes                                                      18
actor_2_name                                                   Khamani Griffin
actor_1_facebook_likes                                                     622
gross                                                              1.19794e+08
genres                                  Animation|Comedy|Family|Fantasy|Sci-Fi
actor_1_name                                                        Will Forte
movie_title                               Cloudy with a Chance of Meatballs 2 
num_voted_users                                                          64387
cast_total_facebook_likes                                                  848
actor_3_name                                                     Melissa Sturm
facenumber_in_poster                                                         0
plot_keywords                         food|inventor|island|orangutan|scientist
movie_imdb_link              http://www.imdb.com/title/tt1985966/?ref_=fn_t...
num_user_for_reviews                                                        85
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.8e+07
title_year                                                                2013
actor_2_facebook_likes                                                     161
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 511, dtype: object
color                                                                    Color
director_name                                                     Brett Ratner
num_critic_for_reviews                                                     210
duration                                                                   124
director_facebook_likes                                                    420
actor_3_facebook_likes                                                     876
actor_2_name                                                   Anthony Hopkins
actor_1_facebook_likes                                                   22000
gross                                                                9.293e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                            Philip Seymour Hoffman
movie_title                                                        Red Dragon 
num_voted_users                                                         204063
cast_total_facebook_likes                                                35867
actor_3_name                                                      Emily Watson
facenumber_in_poster                                                         0
plot_keywords                criminal profile|fbi agent|madman|tabloid repo...
movie_imdb_link              http://www.imdb.com/title/tt0289765/?ref_=fn_t...
num_user_for_reviews                                                       764
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                 7.8e+07
title_year                                                                2002
actor_2_facebook_likes                                                   12000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 512, dtype: object
color                                                                    Color
director_name                                                     Joe Johnston
num_critic_for_reviews                                                     140
duration                                                                   136
director_facebook_likes                                                    394
actor_3_facebook_likes                                                    1000
actor_2_name                                                   Viggo Mortensen
actor_1_facebook_likes                                                   24000
gross                                                              6.72867e+07
genres                                                Action|Adventure|Western
actor_1_name                                                      J.K. Simmons
movie_title                                                           Hidalgo 
num_voted_users                                                          67856
cast_total_facebook_likes                                                36925
actor_3_name                                                      Peter Mensah
facenumber_in_poster                                                         1
plot_keywords                                     arab|cowboy|horse|race|sheik
movie_imdb_link              http://www.imdb.com/title/tt0317648/?ref_=fn_t...
num_user_for_reviews                                                       345
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2004
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 513, dtype: object
color                                                                    Color
director_name                                                     Dennis Dugan
num_critic_for_reviews                                                     156
duration                                                                    91
director_facebook_likes                                                    221
actor_3_facebook_likes                                                     553
actor_2_name                                                      Adam Sandler
actor_1_facebook_likes                                                   14000
gross                                                              7.41582e+07
genres                                                                  Comedy
actor_1_name                                                         Al Pacino
movie_title                                                     Jack and Jill 
num_voted_users                                                          60370
cast_total_facebook_likes                                                27405
actor_3_name                                                       Tim Meadows
facenumber_in_poster                                                         2
plot_keywords                advertising|advertising executive|commercial|p...
movie_imdb_link              http://www.imdb.com/title/tt0810913/?ref_=fn_t...
num_user_for_reviews                                                       264
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.9e+07
title_year                                                                2011
actor_2_facebook_likes                                                   11000
imdb_score                                                                 3.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 514, dtype: object
color                                                                    Color
director_name                                                   John Singleton
num_critic_for_reviews                                                     150
duration                                                                   107
director_facebook_likes                                                    309
actor_3_facebook_likes                                                     771
actor_2_name                                                       Cole Hauser
actor_1_facebook_likes                                                   23000
gross                                                              1.27084e+08
genres                                                   Action|Crime|Thriller
actor_1_name                                                       Paul Walker
movie_title                                                  2 Fast 2 Furious 
num_voted_users                                                         191912
cast_total_facebook_likes                                                25296
actor_3_name                                                        Mo Gallini
facenumber_in_poster                                                         5
plot_keywords                bust|racing|shotgun|street racing|undercover a...
movie_imdb_link              http://www.imdb.com/title/tt0322259/?ref_=fn_t...
num_user_for_reviews                                                       370
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.6e+07
title_year                                                                2003
actor_2_facebook_likes                                                     787
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 515, dtype: object
color                                                                    Color
director_name                                                     Mark Osborne
num_critic_for_reviews                                                     119
duration                                                                   108
director_facebook_likes                                                     54
actor_3_facebook_likes                                                    6000
actor_2_name                                                      James Franco
actor_1_facebook_likes                                                   12000
gross                                                              1.33915e+06
genres                                Adventure|Animation|Drama|Family|Fantasy
actor_1_name                                                      Jeff Bridges
movie_title                                                 The Little Prince 
num_voted_users                                                          28276
cast_total_facebook_likes                                                30230
actor_3_name                                                     Mackenzie Foy
facenumber_in_poster                                                         1
plot_keywords                aviator|based on book|girl|little girl|the lit...
movie_imdb_link              http://www.imdb.com/title/tt1754656/?ref_=fn_t...
num_user_for_reviews                                                        64
language                                                               English
country                                                                 France
content_rating                                                              PG
budget                                                                8.12e+07
title_year                                                                2015
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     31000
Name: 516, dtype: object
color                                                                    Color
director_name                                              Oliver Hirschbiegel
num_critic_for_reviews                                                     232
duration                                                                    99
director_facebook_likes                                                    101
actor_3_facebook_likes                                                     327
actor_2_name                                               Veronica Cartwright
actor_1_facebook_likes                                                    1000
gross                                                              1.50715e+07
genres                                                         Sci-Fi|Thriller
actor_1_name                                                        Roger Rees
movie_title                                                      The Invasion 
num_voted_users                                                          65037
cast_total_facebook_likes                                                 2323
actor_3_name                                                    Jeremy Northam
facenumber_in_poster                                                         2
plot_keywords                  alien|epidemic|psychiatrist|space shuttle|virus
movie_imdb_link              http://www.imdb.com/title/tt0427392/?ref_=fn_t...
num_user_for_reviews                                                       273
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2007
actor_2_facebook_likes                                                     422
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 517, dtype: object
color                                                                    Color
director_name                                                      Des McAnuff
num_critic_for_reviews                                                      49
duration                                                                    92
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     924
actor_2_name                                                  Janeane Garofalo
actor_1_facebook_likes                                                   22000
gross                                                              2.60006e+07
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                    Robert De Niro
movie_title                              The Adventures of Rocky & Bullwinkle 
num_voted_users                                                          16611
cast_total_facebook_likes                                                28050
actor_3_name                                                  Jonathan Winters
facenumber_in_poster                                                         0
plot_keywords                      deforestation|fbi|lighthouse|moose|squirrel
movie_imdb_link              http://www.imdb.com/title/tt0131704/?ref_=fn_t...
num_user_for_reviews                                                       197
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.6e+07
title_year                                                                2000
actor_2_facebook_likes                                                    1000
imdb_score                                                                 4.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       413
Name: 518, dtype: object
color                                                                    Color
director_name                                                    Yarrow Cheney
num_critic_for_reviews                                                     165
duration                                                                    87
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     745
actor_2_name                                                  Eric Stonestreet
actor_1_facebook_likes                                                    1000
gross                                                              3.23506e+08
genres                                                 Animation|Comedy|Family
actor_1_name                                                      Steve Coogan
movie_title                                           The Secret Life of Pets 
num_voted_users                                                          24407
cast_total_facebook_likes                                                 4782
actor_3_name                                                     Albert Brooks
facenumber_in_poster                                                         0
plot_keywords                   animal control|lost animal|mongrel|pet|terrier
movie_imdb_link              http://www.imdb.com/title/tt2709768/?ref_=fn_t...
num_user_for_reviews                                                       155
language                                                               English
country                                                                  Japan
content_rating                                                              PG
budget                                                                 7.5e+07
title_year                                                                2016
actor_2_facebook_likes                                                     904
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     36000
Name: 519, dtype: object
color                                                          Black and White
director_name                                               Stephen Norrington
num_critic_for_reviews                                                     202
duration                                                                   110
director_facebook_likes                                                     45
actor_3_facebook_likes                                                     845
actor_2_name                                                          Max Ryan
actor_1_facebook_likes                                                    1000
gross                                                              6.64626e+07
genres                                         Action|Adventure|Fantasy|Sci-Fi
actor_1_name                                                     Jason Flemyng
movie_title                             The League of Extraordinary Gentlemen 
num_voted_users                                                         141533
cast_total_facebook_likes                                                 4714
actor_3_name                                                       Tony Curran
facenumber_in_poster                                                         3
plot_keywords                box office flop|captain nemo|dorian gray|invis...
movie_imdb_link              http://www.imdb.com/title/tt0311429/?ref_=fn_t...
num_user_for_reviews                                                       786
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.8e+07
title_year                                                                2003
actor_2_facebook_likes                                                     872
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 520, dtype: object
color                                                                    Color
director_name                                                    Pierre Coffin
num_critic_for_reviews                                                     306
duration                                                                    98
director_facebook_likes                                                    275
actor_3_facebook_likes                                                    1000
actor_2_name                                                  Miranda Cosgrove
actor_1_facebook_likes                                                    7000
gross                                                               3.6805e+08
genres                                          Animation|Comedy|Family|Sci-Fi
actor_1_name                                                      Steve Carell
movie_title                                                   Despicable Me 2 
num_voted_users                                                         286877
cast_total_facebook_likes                                                11905
actor_3_name                                                      Steve Coogan
facenumber_in_poster                                                         0
plot_keywords                dating|minion|overprotective father|undercover...
movie_imdb_link              http://www.imdb.com/title/tt1690953/?ref_=fn_t...
num_user_for_reviews                                                       284
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.6e+07
title_year                                                                2013
actor_2_facebook_likes                                                    2000
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     56000
Name: 521, dtype: object
color                                                                    Color
director_name                                                  Roland Emmerich
num_critic_for_reviews                                                     185
duration                                                                   154
director_facebook_likes                                                    776
actor_3_facebook_likes                                                     933
actor_2_name                                                      Adam Baldwin
actor_1_facebook_likes                                                   10000
gross                                                              3.06124e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                        Will Smith
movie_title                                                  Independence Day 
num_voted_users                                                         430055
cast_total_facebook_likes                                                16785
actor_3_name                                                    Mary McDonnell
facenumber_in_poster                                                         0
plot_keywords                      alien|area 51|military|spacecraft|spaceship
movie_imdb_link              http://www.imdb.com/title/tt0116629/?ref_=fn_t...
num_user_for_reviews                                                       856
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                1996
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 522, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     177
duration                                                                   129
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     227
actor_2_name                                                    Richard Schiff
actor_1_facebook_likes                                                     610
gross                                                              2.29075e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                   Ariana Richards
movie_title                                     The Lost World: Jurassic Park 
num_voted_users                                                         278362
cast_total_facebook_likes                                                 1635
actor_3_name                                               Vanessa Lee Chester
facenumber_in_poster                                                         0
plot_keywords                   capture|dinosaur|island|jurassic|jurassic park
movie_imdb_link              http://www.imdb.com/title/tt0119567/?ref_=fn_t...
num_user_for_reviews                                                       552
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.3e+07
title_year                                                                1997
actor_2_facebook_likes                                                     506
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 523, dtype: object
color                                                                    Color
director_name                                                     Eric Darnell
num_critic_for_reviews                                                     181
duration                                                                    86
director_facebook_likes                                                     35
actor_3_facebook_likes                                                     179
actor_2_name                                            Cedric the Entertainer
actor_1_facebook_likes                                                     851
gross                                                              1.93137e+08
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                Jada Pinkett Smith
movie_title                                                        Madagascar 
num_voted_users                                                         266636
cast_total_facebook_likes                                                 1777
actor_3_name                                                      Andy Richter
facenumber_in_poster                                                         0
plot_keywords                               escape|jungle|lemur|madagascar|zoo
movie_imdb_link              http://www.imdb.com/title/tt0351283/?ref_=fn_t...
num_user_for_reviews                                                       385
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     436
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 524, dtype: object
color                                                                    Color
director_name                                                   Alfonso Cuarón
num_critic_for_reviews                                                     372
duration                                                                   109
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      18
actor_2_name                                                      Danny Huston
actor_1_facebook_likes                                                   16000
gross                                                              3.52864e+07
genres                                                   Drama|Sci-Fi|Thriller
actor_1_name                                                    Charlie Hunnam
movie_title                                                   Children of Men 
num_voted_users                                                         361767
cast_total_facebook_likes                                                16479
actor_3_name                                                       Rita Davies
facenumber_in_poster                                                         0
plot_keywords                        chaos|england|long take|survival|violence
movie_imdb_link              http://www.imdb.com/title/tt0206634/?ref_=fn_t...
num_user_for_reviews                                                      1206
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.6e+07
title_year                                                                2006
actor_2_facebook_likes                                                     430
imdb_score                                                                 7.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                     17000
Name: 525, dtype: object
color                                                                    Color
director_name                                                     Bryan Singer
num_critic_for_reviews                                                     290
duration                                                                   104
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     505
actor_2_name                                                        Tyler Mane
actor_1_facebook_likes                                                   20000
gross                                                                1.573e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                      Hugh Jackman
movie_title                                                             X-Men 
num_voted_users                                                         452928
cast_total_facebook_likes                                                21397
actor_3_name                                                     Bruce Davison
facenumber_in_poster                                                         0
plot_keywords                first part|mutant|professor|superhero|superher...
movie_imdb_link              http://www.imdb.com/title/tt0120903/?ref_=fn_t...
num_user_for_reviews                                                      1401
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     764
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 526, dtype: object
color                                                                    Color
director_name                                                Timur Bekmambetov
num_critic_for_reviews                                                     316
duration                                                                   110
director_facebook_likes                                                    335
actor_3_facebook_likes                                                     988
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   11000
gross                                                              1.34569e+08
genres                                           Action|Crime|Fantasy|Thriller
actor_1_name                                               Angelina Jolie Pitt
movie_title                                                            Wanted 
num_voted_users                                                         299852
cast_total_facebook_likes                                                25763
actor_3_name                                                            Common
facenumber_in_poster                                                         0
plot_keywords                assassin|bobble head doll|femme fatale|rejuven...
movie_imdb_link              http://www.imdb.com/title/tt0493464/?ref_=fn_t...
num_user_for_reviews                                                       713
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 527, dtype: object
color                                                                    Color
director_name                                                      Michael Bay
num_critic_for_reviews                                                     122
duration                                                                   136
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     904
actor_2_name                                                     Michael Biehn
actor_1_facebook_likes                                                   12000
gross                                                              1.34007e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                                          The Rock 
num_voted_users                                                         259492
cast_total_facebook_likes                                                15999
actor_3_name                                                   Bokeem Woodbine
facenumber_in_poster                                                         1
plot_keywords                              alcatraz|fbi|general|hostage|rocket
movie_imdb_link              http://www.imdb.com/title/tt0117500/?ref_=fn_t...
num_user_for_reviews                                                       415
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+07
title_year                                                                1996
actor_2_facebook_likes                                                    2000
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     51000
Name: 528, dtype: object
color                                                                    Color
director_name                                                  Carlos Saldanha
num_critic_for_reviews                                                     164
duration                                                                   115
director_facebook_likes                                                    107
actor_3_facebook_likes                                                     241
actor_2_name                                                        Ray Romano
actor_1_facebook_likes                                                     835
gross                                                               1.9533e+08
genres                        Action|Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                       Denis Leary
movie_title                                             Ice Age: The Meltdown 
num_voted_users                                                         194249
cast_total_facebook_likes                                                 1815
actor_3_name                                                          Jay Leno
facenumber_in_poster                                                         0
plot_keywords                 flood|mammoth|no opening credits|squirrel|valley
movie_imdb_link              http://www.imdb.com/title/tt0438097/?ref_=fn_t...
num_user_for_reviews                                                       253
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+07
title_year                                                                2006
actor_2_facebook_likes                                                     590
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 529, dtype: object
color                                                                    Color
director_name                                                      Peter Segal
num_critic_for_reviews                                                     147
duration                                                                    99
director_facebook_likes                                                     88
actor_3_facebook_likes                                                     328
actor_2_name                                                       Peter Dante
actor_1_facebook_likes                                                   11000
gross                                                              1.20777e+08
genres                                                          Comedy|Romance
actor_1_name                                                      Adam Sandler
movie_title                                                    50 First Dates 
num_voted_users                                                         266103
cast_total_facebook_likes                                                12952
actor_3_name                                                      Allen Covert
facenumber_in_poster                                                         2
plot_keywords                dream|hawaii|hawaiian shirt|short term memory ...
movie_imdb_link              http://www.imdb.com/title/tt0343660/?ref_=fn_t...
num_user_for_reviews                                                       456
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     427
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 530, dtype: object
color                                                                    Color
director_name                                                    Adam Shankman
num_critic_for_reviews                                                     219
duration                                                                   117
director_facebook_likes                                                    163
actor_3_facebook_likes                                                     260
actor_2_name                                                     Elijah Kelley
actor_1_facebook_likes                                                     719
gross                                                              1.18823e+08
genres                               Comedy|Drama|Family|Music|Musical|Romance
actor_1_name                                                     Jerry Stiller
movie_title                                                         Hairspray 
num_voted_users                                                          98693
cast_total_facebook_likes                                                 1673
actor_3_name                                                       Paul Dooley
facenumber_in_poster                                                         9
plot_keywords                  audition|best friend|dance|friend|tv dance show
movie_imdb_link              http://www.imdb.com/title/tt0427327/?ref_=fn_t...
num_user_for_reviews                                                       401
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     339
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 531, dtype: object
color                                                                    Color
director_name                                                     Renny Harlin
num_critic_for_reviews                                                     167
duration                                                                   125
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     394
actor_2_name                                                         Alan Ford
actor_1_facebook_likes                                                     613
gross                                                              4.18149e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                      James D'Arcy
movie_title                                           Exorcist: The Beginning 
num_voted_users                                                          28635
cast_total_facebook_likes                                                 1970
actor_3_name                                                 Izabella Scorupco
facenumber_in_poster                                                         0
plot_keywords                       archeologist|church|excavation|faith|relic
movie_imdb_link              http://www.imdb.com/title/tt0204313/?ref_=fn_t...
num_user_for_reviews                                                       308
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     422
imdb_score                                                                 5.1
aspect_ratio                                                                 2
movie_facebook_likes                                                       893
Name: 532, dtype: object
color                                                                    Color
director_name                                                    David Kellogg
num_critic_for_reviews                                                      70
duration                                                                   110
director_facebook_likes                                                     16
actor_3_facebook_likes                                                     692
actor_2_name                                                  Rene Auberjonois
actor_1_facebook_likes                                                    2000
gross                                                              9.73601e+07
genres                                   Action|Adventure|Comedy|Family|Sci-Fi
actor_1_name                                                 Matthew Broderick
movie_title                                                  Inspector Gadget 
num_voted_users                                                          36491
cast_total_facebook_likes                                                 5320
actor_3_name                                                    Rupert Everett
facenumber_in_poster                                                         0
plot_keywords                actor playing multiple roles|claw|gadget|inspe...
movie_imdb_link              http://www.imdb.com/title/tt0141369/?ref_=fn_t...
num_user_for_reviews                                                       231
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     710
imdb_score                                                                 4.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       509
Name: 533, dtype: object
color                                                                    Color
director_name                                                  Louis Leterrier
num_critic_for_reviews                                                     384
duration                                                                   125
director_facebook_likes                                                    255
actor_3_facebook_likes                                                     963
actor_2_name                                                            Common
actor_1_facebook_likes                                                   11000
gross                                                              1.17699e+08
genres                                                  Crime|Mystery|Thriller
actor_1_name                                                    Morgan Freeman
movie_title                                                    Now You See Me 
num_voted_users                                                         447979
cast_total_facebook_likes                                                13312
actor_3_name                                                     Michael Kelly
facenumber_in_poster                                                         6
plot_keywords                                 bank|fbi|heist|interpol|magician
movie_imdb_link              http://www.imdb.com/title/tt1670345/?ref_=fn_t...
num_user_for_reviews                                                       629
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2013
actor_2_facebook_likes                                                     988
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                    105000
Name: 534, dtype: object
color                                                                    Color
director_name                                                     Dennis Dugan
num_critic_for_reviews                                                     179
duration                                                                   102
director_facebook_likes                                                    221
actor_3_facebook_likes                                                    4000
actor_2_name                                                      Adam Sandler
actor_1_facebook_likes                                                   12000
gross                                                              1.62001e+08
genres                                                                  Comedy
actor_1_name                                                     Steve Buscemi
movie_title                                                         Grown Ups 
num_voted_users                                                         181443
cast_total_facebook_likes                                                28497
actor_3_name                                                       Salma Hayek
facenumber_in_poster                                                         4
plot_keywords                basketball|coach|daughter|high school|high sch...
movie_imdb_link              http://www.imdb.com/title/tt1375670/?ref_=fn_t...
num_user_for_reviews                                                       311
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2010
actor_2_facebook_likes                                                   11000
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     12000
Name: 535, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     151
duration                                                                   128
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     232
actor_2_name                                                       Chi McBride
actor_1_facebook_likes                                                   15000
gross                                                              7.70323e+07
genres                                                            Comedy|Drama
actor_1_name                                                         Tom Hanks
movie_title                                                      The Terminal 
num_voted_users                                                         303864
cast_total_facebook_likes                                                16199
actor_3_name                                              Barry Shabaka Henley
facenumber_in_poster                                                         0
plot_keywords                airport|construction site|fish out of water|fl...
movie_imdb_link              http://www.imdb.com/title/tt0362227/?ref_=fn_t...
num_user_for_reviews                                                       596
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2004
actor_2_facebook_likes                                                     466
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     16000
Name: 536, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      12
duration                                                                    43
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     218
actor_2_name                                                         Matt Ryan
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                           Drama|Fantasy|Horror|Thriller
actor_1_name                                                  Harold Perrineau
movie_title                                           Constantine             
num_voted_users                                                          36919
cast_total_facebook_likes                                                 1990
actor_3_name                                                   Charles Halford
facenumber_in_poster                                                         1
plot_keywords                based on comic|based on comic book|dc arrowver...
movie_imdb_link              http://www.imdb.com/title/tt3489184/?ref_=fn_t...
num_user_for_reviews                                                        94
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     560
imdb_score                                                                 7.5
aspect_ratio                                                                16
movie_facebook_likes                                                     10000
Name: 537, dtype: object
color                                                                    Color
director_name                                                 Thor Freudenthal
num_critic_for_reviews                                                     107
duration                                                                   100
director_facebook_likes                                                     87
actor_3_facebook_likes                                                     446
actor_2_name                                                      Kevin Dillon
actor_1_facebook_likes                                                    3000
gross                                                              7.30233e+07
genres                                                           Comedy|Family
actor_1_name                                                       Don Cheadle
movie_title                                                    Hotel for Dogs 
num_voted_users                                                          16271
cast_total_facebook_likes                                                 5174
actor_3_name                                               Yvette Nicole Brown
facenumber_in_poster                                                         4
plot_keywords                abandoned hotel|dog|foster home|overalls|playi...
movie_imdb_link              http://www.imdb.com/title/tt0785006/?ref_=fn_t...
num_user_for_reviews                                                        57
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 3.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     576
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 538, dtype: object
color                                                                    Color
director_name                                                  Martin Campbell
num_critic_for_reviews                                                     134
duration                                                                   124
director_facebook_likes                                                    258
actor_3_facebook_likes                                                     748
actor_2_name                                                       Scott Glenn
actor_1_facebook_likes                                                     867
gross                                                              6.84734e+07
genres                                         Action|Adventure|Drama|Thriller
actor_1_name                                                      Nicholas Lea
movie_title                                                    Vertical Limit 
num_voted_users                                                          49536
cast_total_facebook_likes                                                 3424
actor_3_name                                                    Ben Mendelsohn
facenumber_in_poster                                                         0
plot_keywords                      death|die hard scenario|k2|rescue|urination
movie_imdb_link              http://www.imdb.com/title/tt0190865/?ref_=fn_t...
num_user_for_reviews                                                       379
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     826
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 539, dtype: object
color                                                                    Color
director_name                                                     Mike Nichols
num_critic_for_reviews                                                     269
duration                                                                   102
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   15000
actor_2_name                                                         Tom Hanks
actor_1_facebook_likes                                                   22000
gross                                                              6.66364e+07
genres                                          Biography|Comedy|Drama|History
actor_1_name                                            Philip Seymour Hoffman
movie_title                                              Charlie Wilson's War 
num_voted_users                                                          88451
cast_total_facebook_likes                                                60646
actor_3_name                                                         Jud Tylor
facenumber_in_poster                                                         1
plot_keywords                afghanistan|arms dealer|based on true story|ci...
movie_imdb_link              http://www.imdb.com/title/tt0472062/?ref_=fn_t...
num_user_for_reviews                                                       289
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                   15000
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 540, dtype: object
color                                                                    Color
director_name                                                    Bibo Bergeron
num_critic_for_reviews                                                     143
duration                                                                    90
director_facebook_likes                                                     10
actor_3_facebook_likes                                                   11000
actor_2_name                                                   Martin Scorsese
actor_1_facebook_likes                                                   22000
gross                                                              1.60762e+08
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                    Robert De Niro
movie_title                                                        Shark Tale 
num_voted_users                                                         132415
cast_total_facebook_likes                                                63165
actor_3_name                                               Angelina Jolie Pitt
facenumber_in_poster                                                         0
plot_keywords                             anchor|fish|mobster|shark|vegetarian
movie_imdb_link              http://www.imdb.com/title/tt0307453/?ref_=fn_t...
num_user_for_reviews                                                       288
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.5e+07
title_year                                                                2004
actor_2_facebook_likes                                                   17000
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 541, dtype: object
color                                                                    Color
director_name                                                      Bill Condon
num_critic_for_reviews                                                     241
duration                                                                   130
director_facebook_likes                                                    386
actor_3_facebook_likes                                                     525
actor_2_name                                                   Jennifer Hudson
actor_1_facebook_likes                                                     912
gross                                                              1.03338e+08
genres                                                     Drama|Music|Musical
actor_1_name                                                    Loretta Devine
movie_title                                                        Dreamgirls 
num_voted_users                                                          55901
cast_total_facebook_likes                                                 2856
actor_3_name                                                   Anika Noni Rose
facenumber_in_poster                                                         0
plot_keywords                                 1960s|fire|pop chart|singer|trio
movie_imdb_link              http://www.imdb.com/title/tt0443489/?ref_=fn_t...
num_user_for_reviews                                                       503
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2006
actor_2_facebook_likes                                                     549
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 542, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      12
duration                                                                    45
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                       0
actor_2_name                                                      Brent Sexton
actor_1_facebook_likes                                                     374
gross                                                                      NaN
genres                                                     Crime|Drama|Mystery
actor_1_name                                                        Adam Arkin
movie_title                                                  Life             
num_voted_users                                                          29450
cast_total_facebook_likes                                                  504
actor_3_name                                                      Damian Lewis
facenumber_in_poster                                                         1
plot_keywords                        cop|murder|partner|police|protective male
movie_imdb_link              http://www.imdb.com/title/tt0874936/?ref_=fn_t...
num_user_for_reviews                                                        67
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     130
imdb_score                                                                 8.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 543, dtype: object
color                                                                    Color
director_name                                                     F. Gary Gray
num_critic_for_reviews                                                     161
duration                                                                   118
director_facebook_likes                                                    473
actor_3_facebook_likes                                                     680
actor_2_name                                                  Christina Milian
actor_1_facebook_likes                                                   12000
gross                                                              5.58087e+07
genres                                                      Comedy|Crime|Music
actor_1_name                                                    Dwayne Johnson
movie_title                                                           Be Cool 
num_voted_users                                                          59435
cast_total_facebook_likes                                                15889
actor_3_name                                                        Debi Mazar
facenumber_in_poster                                                         4
plot_keywords                             concert|mobster|russian|sequel|widow
movie_imdb_link              http://www.imdb.com/title/tt0377471/?ref_=fn_t...
num_user_for_reviews                                                       323
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.3e+07
title_year                                                                2005
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.7
aspect_ratio                                                               2.4
movie_facebook_likes                                                         0
Name: 544, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     298
duration                                                                   163
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     412
actor_2_name                                                  Moritz Bleibtreu
actor_1_facebook_likes                                                     745
gross                                                              4.73791e+07
genres                                                  Drama|History|Thriller
actor_1_name                                                      Ayelet Zurer
movie_title                                                            Munich 
num_voted_users                                                         176936
cast_total_facebook_likes                                                 2529
actor_3_name                                                   Mathieu Amalric
facenumber_in_poster                                                         0
plot_keywords                  arab|black september|israel|jew|munich olympics
movie_imdb_link              http://www.imdb.com/title/tt0408306/?ref_=fn_t...
num_user_for_reviews                                                       824
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2005
actor_2_facebook_likes                                                     486
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 545, dtype: object
color                                                                    Color
director_name                                                    Antoine Fuqua
num_critic_for_reviews                                                      89
duration                                                                   142
director_facebook_likes                                                    845
actor_3_facebook_likes                                                     787
actor_2_name                                                      Tom Skerritt
actor_1_facebook_likes                                                   13000
gross                                                               4.3427e+07
genres                                               Action|Drama|Thriller|War
actor_1_name                                                      Bruce Willis
movie_title                                                  Tears of the Sun 
num_voted_users                                                          93494
cast_total_facebook_likes                                                16580
actor_3_name                                                       Cole Hauser
facenumber_in_poster                                                         1
plot_keywords                             dictator|doctor|jungle|rebel|refugee
movie_imdb_link              http://www.imdb.com/title/tt0314353/?ref_=fn_t...
num_user_for_reviews                                                       394
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2003
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 546, dtype: object
color                                                                    Color
director_name                                                   Robert Luketic
num_critic_for_reviews                                                     140
duration                                                                   100
director_facebook_likes                                                    126
actor_3_facebook_likes                                                     925
actor_2_name                                                   Lisa Ann Walter
actor_1_facebook_likes                                                   19000
gross                                                              4.70005e+07
genres                                          Action|Comedy|Romance|Thriller
actor_1_name                                                       Tom Selleck
movie_title                                                           Killers 
num_voted_users                                                          72867
cast_total_facebook_likes                                                25206
actor_3_name                                                  Catherine O'Hara
facenumber_in_poster                                                         2
plot_keywords                hired killer|marriage|neighbor|on the run|stor...
movie_imdb_link              http://www.imdb.com/title/tt1103153/?ref_=fn_t...
num_user_for_reviews                                                       120
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 547, dtype: object
color                                                                    Color
director_name                                                      Guy Ritchie
num_critic_for_reviews                                                     362
duration                                                                   116
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     104
actor_2_name                                                 Elizabeth Debicki
actor_1_facebook_likes                                                   15000
gross                                                              4.54344e+07
genres                                                 Action|Adventure|Comedy
actor_1_name                                                      Henry Cavill
movie_title                                           The Man from U.N.C.L.E. 
num_voted_users                                                         175960
cast_total_facebook_likes                                                15735
actor_3_name                                                  Christian Berkel
facenumber_in_poster                                                         2
plot_keywords                box office flop|cia agent|criminal organizatio...
movie_imdb_link              http://www.imdb.com/title/tt1638355/?ref_=fn_t...
num_user_for_reviews                                                       360
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2015
actor_2_facebook_likes                                                     509
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     43000
Name: 548, dtype: object
color                                                                    Color
director_name                                                  James L. Brooks
num_critic_for_reviews                                                     124
duration                                                                   131
director_facebook_likes                                                    274
actor_3_facebook_likes                                                     138
actor_2_name                                                          Paz Vega
actor_1_facebook_likes                                                   11000
gross                                                              4.20443e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Adam Sandler
movie_title                                                         Spanglish 
num_voted_users                                                          65668
cast_total_facebook_likes                                                12522
actor_3_name                                                      Sarah Steele
facenumber_in_poster                                                         2
plot_keywords                           chef|college|housekeeper|letter|mexico
movie_imdb_link              http://www.imdb.com/title/tt0371246/?ref_=fn_t...
num_user_for_reviews                                                       342
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2004
actor_2_facebook_likes                                                     964
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 549, dtype: object
color                                                                    Color
director_name                                                        Gil Kenan
num_critic_for_reviews                                                     190
duration                                                                    91
director_facebook_likes                                                     27
actor_3_facebook_likes                                                     925
actor_2_name                                                         Jon Heder
actor_1_facebook_likes                                                   12000
gross                                                               7.3661e+07
genres                                 Animation|Comedy|Family|Fantasy|Mystery
actor_1_name                                                     Steve Buscemi
movie_title                                                     Monster House 
num_voted_users                                                          71137
cast_total_facebook_likes                                                17299
actor_3_name                                                  Catherine O'Hara
facenumber_in_poster                                                         0
plot_keywords                       babysitter|halloween|house|neighbor|suburb
movie_imdb_link              http://www.imdb.com/title/tt0385880/?ref_=fn_t...
num_user_for_reviews                                                       229
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     970
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 550, dtype: object
color                                                                    Color
director_name                                                   Barry Levinson
num_critic_for_reviews                                                     132
duration                                                                   123
director_facebook_likes                                                    272
actor_3_facebook_likes                                                     193
actor_2_name                                                  Brían F. O'Byrne
actor_1_facebook_likes                                                   13000
gross                                                              4.15233e+07
genres                                              Comedy|Crime|Drama|Romance
actor_1_name                                                      Bruce Willis
movie_title                                                           Bandits 
num_voted_users                                                          57038
cast_total_facebook_likes                                                13934
actor_3_name                                                        Azura Skye
facenumber_in_poster                                                         2
plot_keywords                bank manager|hypochondriac|love triangle|priso...
movie_imdb_link              http://www.imdb.com/title/tt0219965/?ref_=fn_t...
num_user_for_reviews                                                       261
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2001
actor_2_facebook_likes                                                     450
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 551, dtype: object
color                                                                    Color
director_name                                                     Jerry Zucker
num_critic_for_reviews                                                      53
duration                                                                   134
director_facebook_likes                                                    109
actor_3_facebook_likes                                                     249
actor_2_name                                                         Ben Cross
actor_1_facebook_likes                                                     919
gross                                                              3.76004e+07
genres                                       Action|Adventure|Romance|Thriller
actor_1_name                                                      Julia Ormond
movie_title                                                      First Knight 
num_voted_users                                                          55350
cast_total_facebook_likes                                                 1695
actor_3_name                                                      John Gielgud
facenumber_in_poster                                                         3
plot_keywords                          battle|king|king arthur|knight|marriage
movie_imdb_link              http://www.imdb.com/title/tt0113071/?ref_=fn_t...
num_user_for_reviews                                                       180
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                1995
actor_2_facebook_likes                                                     303
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 552, dtype: object
color                                                                    Color
director_name                                                     Andy Tennant
num_critic_for_reviews                                                      91
duration                                                                   148
director_facebook_likes                                                     72
actor_3_facebook_likes                                                      99
actor_2_name                                                   Geoffrey Palmer
actor_1_facebook_likes                                                     582
gross                                                              3.92511e+07
genres                                                   Drama|History|Romance
actor_1_name                                                          Bai Ling
movie_title                                                 Anna and the King 
num_voted_users                                                          31080
cast_total_facebook_likes                                                  804
actor_3_name                                                   Randall Duk Kim
facenumber_in_poster                                                         2
plot_keywords                           1860s|children|king|schoolteacher|siam
movie_imdb_link              http://www.imdb.com/title/tt0166485/?ref_=fn_t...
num_user_for_reviews                                                       217
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     103
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 553, dtype: object
color                                                                    Color
director_name                                                     Tarsem Singh
num_critic_for_reviews                                                     284
duration                                                                   110
director_facebook_likes                                                    763
actor_3_facebook_likes                                                     222
actor_2_name                                                    Daniel Sharman
actor_1_facebook_likes                                                   15000
gross                                                              8.35032e+07
genres                                            Action|Drama|Fantasy|Romance
actor_1_name                                                      Henry Cavill
movie_title                                                         Immortals 
num_voted_users                                                         138190
cast_total_facebook_likes                                                16691
actor_3_name                                                       Steve Byers
facenumber_in_poster                                                         1
plot_keywords                burned alive|castration|olympus|torture|tortur...
movie_imdb_link              http://www.imdb.com/title/tt1253864/?ref_=fn_t...
num_user_for_reviews                                                       405
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     30000
Name: 554, dtype: object
color                                                                    Color
director_name                                              Florent-Emilio Siri
num_critic_for_reviews                                                     152
duration                                                                   113
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     759
actor_2_name                                                      Bruce Willis
actor_1_facebook_likes                                                   87000
gross                                                              3.46364e+07
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                     Jimmy Bennett
movie_title                                                           Hostage 
num_voted_users                                                          93790
cast_total_facebook_likes                                               103354
actor_3_name                                                  Ransford Doherty
facenumber_in_poster                                                         0
plot_keywords                california|hostage|hostage negotiator|organize...
movie_imdb_link              http://www.imdb.com/title/tt0340163/?ref_=fn_t...
num_user_for_reviews                                                       288
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.2e+07
title_year                                                                2005
actor_2_facebook_likes                                                   13000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 555, dtype: object
color                                                                    Color
director_name                                                        Don Bluth
num_critic_for_reviews                                                     131
duration                                                                    94
director_facebook_likes                                                    383
actor_3_facebook_likes                                                     886
actor_2_name                                                  Janeane Garofalo
actor_1_facebook_likes                                                   13000
gross                                                               2.2752e+07
genres                                Action|Adventure|Animation|Family|Sci-Fi
actor_1_name                                                        Matt Damon
movie_title                                                        Titan A.E. 
num_voted_users                                                          52244
cast_total_facebook_likes                                                15857
actor_3_name                                                       Nathan Lane
facenumber_in_poster                                                         0
plot_keywords                             alien|captain|escape|pilot|scientist
movie_imdb_link              http://www.imdb.com/title/tt0120913/?ref_=fn_t...
num_user_for_reviews                                                       377
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 556, dtype: object
color                                                                    Color
director_name                                                      Ron Shelton
num_critic_for_reviews                                                     132
duration                                                                   116
director_facebook_likes                                                     41
actor_3_facebook_likes                                                     541
actor_2_name                                                   Bruce Greenwood
actor_1_facebook_likes                                                   11000
gross                                                              3.00133e+07
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                                     Harrison Ford
movie_title                                                Hollywood Homicide 
num_voted_users                                                          31293
cast_total_facebook_likes                                                14028
actor_3_name                                                         Lena Olin
facenumber_in_poster                                                         2
plot_keywords                audition|kissing while having sex|machismo|mur...
movie_imdb_link              http://www.imdb.com/title/tt0329717/?ref_=fn_t...
num_user_for_reviews                                                       254
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2003
actor_2_facebook_likes                                                     982
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       648
Name: 557, dtype: object
color                                                                    Color
director_name                                               Paul W.S. Anderson
num_critic_for_reviews                                                      67
duration                                                                    99
director_facebook_likes                                                    545
actor_3_facebook_likes                                                     533
actor_2_name                                                      Sean Pertwee
actor_1_facebook_likes                                                     933
gross                                                              1.45679e+07
genres                                                     Action|Drama|Sci-Fi
actor_1_name                                                    Connie Nielsen
movie_title                                                           Soldier 
num_voted_users                                                          44248
cast_total_facebook_likes                                                 2542
actor_3_name                                                   Jason Scott Lee
facenumber_in_poster                                                         1
plot_keywords                  crash survivor|planet|sergeant|soldier|survivor
movie_imdb_link              http://www.imdb.com/title/tt0120157/?ref_=fn_t...
num_user_for_reviews                                                       373
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 7.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     722
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 558, dtype: object
color                                                                    Color
director_name                                                     David Pastor
num_critic_for_reviews                                                     130
duration                                                                    84
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     394
actor_2_name                                                    Kiernan Shipka
actor_1_facebook_likes                                                    3000
gross                                                                    90820
genres                                            Drama|Horror|Sci-Fi|Thriller
actor_1_name                                                Christopher Meloni
movie_title                                                          Carriers 
num_voted_users                                                          35510
cast_total_facebook_likes                                                 4368
actor_3_name                                                  Lou Taylor Pucci
facenumber_in_poster                                                         0
plot_keywords                        beach|disease|latex gloves|pandemic|virus
movie_imdb_link              http://www.imdb.com/title/tt0806203/?ref_=fn_t...
num_user_for_reviews                                                       119
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     552
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 559, dtype: object
color                                                                    Color
director_name                                                     Henry Selick
num_critic_for_reviews                                                      74
duration                                                                    93
director_facebook_likes                                                    253
actor_3_facebook_likes                                                     637
actor_2_name                                                     Bridget Fonda
actor_1_facebook_likes                                                    3000
gross                                                              5.40952e+06
genres                                                Animation|Comedy|Fantasy
actor_1_name                                                    Brendan Fraser
movie_title                                                        Monkeybone 
num_voted_users                                                          14280
cast_total_facebook_likes                                                 5580
actor_3_name                                                    Megan Mullally
facenumber_in_poster                                                         0
plot_keywords                             carnival|coma|death|monkey|nightmare
movie_imdb_link              http://www.imdb.com/title/tt0166276/?ref_=fn_t...
num_user_for_reviews                                                       171
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2001
actor_2_facebook_likes                                                     889
imdb_score                                                                 4.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       683
Name: 560, dtype: object
color                                                                    Color
director_name                                                       John Moore
num_critic_for_reviews                                                     114
duration                                                                   113
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     568
actor_2_name                                                       Tony Curran
actor_1_facebook_likes                                                    2000
gross                                                              2.10092e+07
genres                                         Action|Adventure|Drama|Thriller
actor_1_name                                                      Dennis Quaid
movie_title                                             Flight of the Phoenix 
num_voted_users                                                          45815
cast_total_facebook_likes                                                 4397
actor_3_name                                                      Miranda Otto
facenumber_in_poster                                                         4
plot_keywords                          captain|desert|rescue|stranded|survivor
movie_imdb_link              http://www.imdb.com/title/tt0377062/?ref_=fn_t...
num_user_for_reviews                                                       222
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     845
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 561, dtype: object
color                                                                    Color
director_name                                               M. Night Shyamalan
num_critic_for_reviews                                                     294
duration                                                                   106
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     963
actor_2_name                                                      Bruce Willis
actor_1_facebook_likes                                                   18000
gross                                                              9.49991e+07
genres                                           Drama|Mystery|Sci-Fi|Thriller
actor_1_name                                                      Robin Wright
movie_title                                                       Unbreakable 
num_voted_users                                                         245152
cast_total_facebook_likes                                                33645
actor_3_name                                                     Michael Kelly
facenumber_in_poster                                                         0
plot_keywords                child with gun|comic book|invulnerability|supe...
movie_imdb_link              http://www.imdb.com/title/tt0217869/?ref_=fn_t...
num_user_for_reviews                                                      1344
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                   13000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 562, dtype: object
color                                                                    Color
director_name                                                       Kyle Balda
num_critic_for_reviews                                                     308
duration                                                                    91
director_facebook_likes                                                     22
actor_3_facebook_likes                                                    1000
actor_2_name                                                          Jon Hamm
actor_1_facebook_likes                                                    7000
gross                                                               3.3603e+08
genres                                   Action|Animation|Comedy|Family|Sci-Fi
actor_1_name                                                      Steve Carell
movie_title                                                           Minions 
num_voted_users                                                         142403
cast_total_facebook_likes                                                13616
actor_3_name                                                      Steve Coogan
facenumber_in_poster                                                         0
plot_keywords                    antarctica|minion|queen|super villain|villain
movie_imdb_link              http://www.imdb.com/title/tt2293640/?ref_=fn_t...
num_user_for_reviews                                                       275
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.4e+07
title_year                                                                2015
actor_2_facebook_likes                                                    4000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     70000
Name: 563, dtype: object
color                                                                    Color
director_name                                                      Zack Snyder
num_critic_for_reviews                                                     435
duration                                                                   128
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     826
actor_2_name                                                     Abbie Cornish
actor_1_facebook_likes                                                    4000
gross                                                              3.63817e+07
genres                                                          Action|Fantasy
actor_1_name                                                          Jon Hamm
movie_title                                                      Sucker Punch 
num_voted_users                                                         197584
cast_total_facebook_likes                                                 7067
actor_3_name                                                       Scott Glenn
facenumber_in_poster                                                         4
plot_keywords                alternate reality|escape|girl gang|prostitutio...
movie_imdb_link              http://www.imdb.com/title/tt0978764/?ref_=fn_t...
num_user_for_reviews                                                       918
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.2e+07
title_year                                                                2011
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     42000
Name: 564, dtype: object
color                                                                    Color
director_name                                                   Brian De Palma
num_critic_for_reviews                                                     117
duration                                                                    98
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     697
actor_2_name                                                        Mike Starr
actor_1_facebook_likes                                                   12000
gross                                                              5.55854e+07
genres                                                  Crime|Mystery|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                                        Snake Eyes 
num_voted_users                                                          64121
cast_total_facebook_likes                                                15269
actor_3_name                                                        John Heard
facenumber_in_poster                                                         1
plot_keywords                 assassination|boxing|casino|conspiracy|long take
movie_imdb_link              http://www.imdb.com/title/tt0120832/?ref_=fn_t...
num_user_for_reviews                                                       241
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.9e+07
title_year                                                                1998
actor_2_facebook_likes                                                     854
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       880
Name: 565, dtype: object
color                                                                    Color
director_name                                                   Barry Levinson
num_critic_for_reviews                                                     108
duration                                                                   134
director_facebook_likes                                                    272
actor_3_facebook_likes                                                     215
actor_2_name                                                 James Pickens Jr.
actor_1_facebook_likes                                                     548
gross                                                              3.69764e+07
genres                                           Drama|Mystery|Sci-Fi|Thriller
actor_1_name                                                      Peter Coyote
movie_title                                                            Sphere 
num_voted_users                                                          81611
cast_total_facebook_likes                                                 1044
actor_3_name                                                        Huey Lewis
facenumber_in_poster                                                         3
plot_keywords                  manifestation|ocean|spacecraft|spaceship|sphere
movie_imdb_link              http://www.imdb.com/title/tt0120184/?ref_=fn_t...
num_user_for_reviews                                                       274
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     270
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 566, dtype: object
color                                                                    Color
director_name                                                      Clay Kaytis
num_critic_for_reviews                                                     141
duration                                                                    97
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     415
actor_2_name                                                          Josh Gad
actor_1_facebook_likes                                                   22000
gross                                                              1.07225e+08
genres                                          Action|Animation|Comedy|Family
actor_1_name                                                    Peter Dinklage
movie_title                                             The Angry Birds Movie 
num_voted_users                                                          27130
cast_total_facebook_likes                                                24350
actor_3_name                                                Keegan-Michael Key
facenumber_in_poster                                                         0
plot_keywords                           butt|downward duck|fish|kingfisher|pig
movie_imdb_link              http://www.imdb.com/title/tt1985949/?ref_=fn_t...
num_user_for_reviews                                                       126
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.3e+07
title_year                                                                2016
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 567, dtype: object
color                                                                    Color
director_name                                                     Andy Tennant
num_critic_for_reviews                                                     176
duration                                                                   112
director_facebook_likes                                                     72
actor_3_facebook_likes                                                     715
actor_2_name                                                      Ray Winstone
actor_1_facebook_likes                                                   11000
gross                                                              7.02242e+07
genres                                Action|Adventure|Comedy|Romance|Thriller
actor_1_name                                               Matthew McConaughey
movie_title                                                       Fool's Gold 
num_voted_users                                                          59352
cast_total_facebook_likes                                                13827
actor_3_name                                                     Alexis Dziena
facenumber_in_poster                                                         0
plot_keywords                       debt|rapper|treasure|treasure hunter|yacht
movie_imdb_link              http://www.imdb.com/title/tt0770752/?ref_=fn_t...
num_user_for_reviews                                                       138
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2008
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 568, dtype: object
color                                                                    Color
director_name                                                      Judd Apatow
num_critic_for_reviews                                                     230
duration                                                                   153
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     130
actor_2_name                                                               RZA
actor_1_facebook_likes                                                   11000
gross                                                              5.18142e+07
genres                                                            Comedy|Drama
actor_1_name                                                      Adam Sandler
movie_title                                                      Funny People 
num_voted_users                                                         100837
cast_total_facebook_likes                                                11852
actor_3_name                                                      Maude Apatow
facenumber_in_poster                                                         1
plot_keywords                breasts|comedian|craigslist|infidelity|stand u...
movie_imdb_link              http://www.imdb.com/title/tt1201167/?ref_=fn_t...
num_user_for_reviews                                                       301
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     561
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 569, dtype: object
color                                                                    Color
director_name                                                       Peter Berg
num_critic_for_reviews                                                     234
duration                                                                   110
director_facebook_likes                                                    532
actor_3_facebook_likes                                                     461
actor_2_name                                                    Frances Fisher
actor_1_facebook_likes                                                    3000
gross                                                              4.74564e+07
genres                                                   Action|Drama|Thriller
actor_1_name                                                   Jennifer Garner
movie_title                                                       The Kingdom 
num_voted_users                                                         101386
cast_total_facebook_likes                                                 5187
actor_3_name                                                        Tim McGraw
facenumber_in_poster                                                         1
plot_keywords                al qaeda|bomb making|fbi|saudi arabia|stabbed ...
movie_imdb_link              http://www.imdb.com/title/tt0431197/?ref_=fn_t...
num_user_for_reviews                                                       289
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2007
actor_2_facebook_likes                                                     638
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 570, dtype: object
color                                                                    Color
director_name                                                       Adam McKay
num_critic_for_reviews                                                     164
duration                                                                   122
director_facebook_likes                                                    285
actor_3_facebook_likes                                                     989
actor_2_name                                                       Leslie Bibb
actor_1_facebook_likes                                                    8000
gross                                                              1.48213e+08
genres                                                     Action|Comedy|Sport
actor_1_name                                                      Will Ferrell
movie_title                       Talladega Nights: The Ballad of Ricky Bobby 
num_voted_users                                                         130776
cast_total_facebook_likes                                                12410
actor_3_name                                                         Gary Cole
facenumber_in_poster                                                         5
plot_keywords                           car racing|french|friend|nascar|racing
movie_imdb_link              http://www.imdb.com/title/tt0415306/?ref_=fn_t...
num_user_for_reviews                                                       437
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.3e+07
title_year                                                                2006
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 571, dtype: object
color                                                                    Color
director_name                                                       Steve Carr
num_critic_for_reviews                                                      91
duration                                                                    87
director_facebook_likes                                                     41
actor_3_facebook_likes                                                     574
actor_2_name                                                     Jeffrey Jones
actor_1_facebook_likes                                                    1000
gross                                                              1.12951e+08
genres                                                   Comedy|Family|Fantasy
actor_1_name                                                      Raven-Symoné
movie_title                                                    Dr. Dolittle 2 
num_voted_users                                                          33884
cast_total_facebook_likes                                                 3287
actor_3_name                                                      Kevin Pollak
facenumber_in_poster                                                         0
plot_keywords                bear|doctor|false accusation|man with glasses|...
movie_imdb_link              http://www.imdb.com/title/tt0240462/?ref_=fn_t...
num_user_for_reviews                                                        79
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.2e+07
title_year                                                                2001
actor_2_facebook_likes                                                     692
imdb_score                                                                 4.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       266
Name: 572, dtype: object
color                                                                    Color
director_name                                                       Mel Gibson
num_critic_for_reviews                                                     132
duration                                                                   178
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     403
actor_2_name                                                  Patrick McGoohan
actor_1_facebook_likes                                                     906
gross                                                                 7.56e+07
genres                                             Biography|Drama|History|War
actor_1_name                                                     Mhairi Calvey
movie_title                                                        Braveheart 
num_voted_users                                                         736638
cast_total_facebook_likes                                                 1976
actor_3_name                                                    James Robinson
facenumber_in_poster                                                         1
plot_keywords                      14th century|legend|revolt|scotland|tyranny
movie_imdb_link              http://www.imdb.com/title/tt0112573/?ref_=fn_t...
num_user_for_reviews                                                      1065
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.2e+07
title_year                                                                1995
actor_2_facebook_likes                                                     466
imdb_score                                                                 8.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     17000
Name: 573, dtype: object
color                                                                    Color
director_name                                                       Sam Mendes
num_critic_for_reviews                                                     262
duration                                                                   125
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     210
actor_2_name                                                    Brian Geraghty
actor_1_facebook_likes                                                   15000
gross                                                              6.26475e+07
genres                                                        Action|Drama|War
actor_1_name                                                   Jake Gyllenhaal
movie_title                                                           Jarhead 
num_voted_users                                                         143525
cast_total_facebook_likes                                                15850
actor_3_name                                                    James Morrison
facenumber_in_poster                                                         0
plot_keywords                american abroad|gulf war|u.s. military|u.s. so...
movie_imdb_link              http://www.imdb.com/title/tt0418763/?ref_=fn_t...
num_user_for_reviews                                                       657
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2005
actor_2_facebook_likes                                                     383
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 574, dtype: object
color                                                                    Color
director_name                                                  David Silverman
num_critic_for_reviews                                                     299
duration                                                                    87
director_facebook_likes                                                     30
actor_3_facebook_likes                                                     433
actor_2_name                                                    Yeardley Smith
actor_1_facebook_likes                                                     745
gross                                                              1.83132e+08
genres                                              Adventure|Animation|Comedy
actor_1_name                                                     Albert Brooks
movie_title                                                The Simpsons Movie 
num_voted_users                                                         259083
cast_total_facebook_likes                                                 3086
actor_3_name                                                    Marcia Wallace
facenumber_in_poster                                                         0
plot_keywords                                alaska|dome|lake|pig|the simpsons
movie_imdb_link              http://www.imdb.com/title/tt0462538/?ref_=fn_t...
num_user_for_reviews                                                       763
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     440
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 575, dtype: object
color                                                                    Color
director_name                                                   Frank Darabont
num_critic_for_reviews                                                     128
duration                                                                   152
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     745
actor_2_name                                                      Hal Holbrook
actor_1_facebook_likes                                                     940
gross                                                               2.7796e+07
genres                                                           Drama|Romance
actor_1_name                                                     Martin Landau
movie_title                                                      The Majestic 
num_voted_users                                                          45031
cast_total_facebook_likes                                                 4310
actor_3_name                                                    Jeffrey DeMunn
facenumber_in_poster                                                         1
plot_keywords                   amnesia|california|communist|small town|writer
movie_imdb_link              http://www.imdb.com/title/tt0268995/?ref_=fn_t...
num_user_for_reviews                                                       376
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.2e+07
title_year                                                                2001
actor_2_facebook_likes                                                     826
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 576, dtype: object
color                                                                    Color
director_name                                                     Renny Harlin
num_critic_for_reviews                                                     109
duration                                                                   116
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     462
actor_2_name                                                    Estella Warren
actor_1_facebook_likes                                                   13000
gross                                                              3.26169e+07
genres                                                      Action|Drama|Sport
actor_1_name                                                Sylvester Stallone
movie_title                                                            Driven 
num_voted_users                                                          34435
cast_total_facebook_likes                                                14780
actor_3_name                                             Cristián de la Fuente
facenumber_in_poster                                                         0
plot_keywords                  car race|german|race car|race car driver|rookie
movie_imdb_link              http://www.imdb.com/title/tt0132245/?ref_=fn_t...
num_user_for_reviews                                                       346
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.2e+07
title_year                                                                2001
actor_2_facebook_likes                                                     658
imdb_score                                                                 4.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       886
Name: 577, dtype: object
color                                                                    Color
director_name                                              Jean-Jacques Annaud
num_critic_for_reviews                                                      88
duration                                                                   109
director_facebook_likes                                                    218
actor_3_facebook_likes                                                       8
actor_2_name                                               Jean-Claude Dreyfus
actor_1_facebook_likes                                                      21
gross                                                              1.89476e+07
genres                                                  Adventure|Drama|Family
actor_1_name                                                        David Gant
movie_title                                                      Two Brothers 
num_voted_users                                                          11798
cast_total_facebook_likes                                                   55
actor_3_name                                                       Oanh Nguyen
facenumber_in_poster                                                         0
plot_keywords                circus|death of protagonist|jungle|killing an ...
movie_imdb_link              http://www.imdb.com/title/tt0338512/?ref_=fn_t...
num_user_for_reviews                                                       124
language                                                               English
country                                                                 France
content_rating                                                              PG
budget                                                               5.966e+07
title_year                                                                2004
actor_2_facebook_likes                                                      17
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 578, dtype: object
color                                                                    Color
director_name                                               M. Night Shyamalan
num_critic_for_reviews                                                     261
duration                                                                   108
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     882
actor_2_name                                                        Judy Greer
actor_1_facebook_likes                                                    3000
gross                                                              1.14196e+08
genres                                          Drama|Mystery|Romance|Thriller
actor_1_name                                               Bryce Dallas Howard
movie_title                                                       The Village 
num_voted_users                                                         193770
cast_total_facebook_likes                                                 7273
actor_3_name                                                      William Hurt
facenumber_in_poster                                                         0
plot_keywords                           creature|pact|plot twist|village|woods
movie_imdb_link              http://www.imdb.com/title/tt0368447/?ref_=fn_t...
num_user_for_reviews                                                      2003
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2004
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 579, dtype: object
color                                                                    Color
director_name                                                     Betty Thomas
num_critic_for_reviews                                                      73
duration                                                                    85
director_facebook_likes                                                     84
actor_3_facebook_likes                                                     595
actor_2_name                                                      Raven-Symoné
actor_1_facebook_likes                                                    1000
gross                                                              1.44156e+08
genres                                                   Comedy|Family|Fantasy
actor_1_name                                                      Oliver Platt
movie_title                                                   Doctor Dolittle 
num_voted_users                                                          74343
cast_total_facebook_likes                                                 4166
actor_3_name                                                       Peter Boyle
facenumber_in_poster                                                         0
plot_keywords                       box office hit|doctor|dog|first part|tiger
movie_imdb_link              http://www.imdb.com/title/tt0118998/?ref_=fn_t...
num_user_for_reviews                                                        98
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                7.15e+07
title_year                                                                1998
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       694
Name: 580, dtype: object
color                                                                    Color
director_name                                               M. Night Shyamalan
num_critic_for_reviews                                                     208
duration                                                                   106
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     242
actor_2_name                                                     Merritt Wever
actor_1_facebook_likes                                                     710
gross                                                              2.27966e+08
genres                                                   Drama|Sci-Fi|Thriller
actor_1_name                                                       Rory Culkin
movie_title                                                             Signs 
num_voted_users                                                         271592
cast_total_facebook_likes                                                 1675
actor_3_name                                                      Cherry Jones
facenumber_in_poster                                                         0
plot_keywords                crop circle|faith|farm|glass of water|loss of ...
movie_imdb_link              http://www.imdb.com/title/tt0286106/?ref_=fn_t...
num_user_for_reviews                                                      2335
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.2e+07
title_year                                                                2002
actor_2_facebook_likes                                                     529
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 581, dtype: object
color                                                                    Color
director_name                                                   Andrew Adamson
num_critic_for_reviews                                                     205
duration                                                                    93
director_facebook_likes                                                     80
actor_3_facebook_likes                                                      48
actor_2_name                                                 Jennifer Saunders
actor_1_facebook_likes                                                     692
gross                                                              4.36471e+08
genres                       Adventure|Animation|Comedy|Family|Fantasy|Romance
actor_1_name                                                    Rupert Everett
movie_title                                                           Shrek 2 
num_voted_users                                                         314630
cast_total_facebook_likes                                                 1148
actor_3_name                                                     Conrad Vernon
facenumber_in_poster                                                         1
plot_keywords                drag queen|physical appearance|princess|queen|...
movie_imdb_link              http://www.imdb.com/title/tt0298148/?ref_=fn_t...
num_user_for_reviews                                                       483
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+08
title_year                                                                2004
actor_2_facebook_likes                                                     309
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 582, dtype: object
color                                                                    Color
director_name                                                    John Lasseter
num_critic_for_reviews                                                     256
duration                                                                   117
director_facebook_likes                                                    487
actor_3_facebook_likes                                                     769
actor_2_name                                                      Cheech Marin
actor_1_facebook_likes                                                    1000
gross                                                              2.44053e+08
genres                                 Adventure|Animation|Comedy|Family|Sport
actor_1_name                                                 John Ratzenberger
movie_title                                                              Cars 
num_voted_users                                                         263853
cast_total_facebook_likes                                                 4905
actor_3_name                                                     George Carlin
facenumber_in_poster                                                         0
plot_keywords                              car|desert|route 66|tow truck|truck
movie_imdb_link              http://www.imdb.com/title/tt0317219/?ref_=fn_t...
num_user_for_reviews                                                       584
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 1.2e+08
title_year                                                                2006
actor_2_facebook_likes                                                     843
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 583, dtype: object
color                                                                    Color
director_name                                                   Garry Marshall
num_critic_for_reviews                                                     103
duration                                                                   116
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     995
actor_2_name                                                Christopher Meloni
actor_1_facebook_likes                                                    8000
gross                                                               1.5215e+08
genres                                                          Comedy|Romance
actor_1_name                                                     Julia Roberts
movie_title                                                     Runaway Bride 
num_voted_users                                                          74274
cast_total_facebook_likes                                                12790
actor_3_name                                                   Hector Elizondo
facenumber_in_poster                                                         2
plot_keywords                      bride|columnist|journalist|maryland|wedding
movie_imdb_link              http://www.imdb.com/title/tt0163187/?ref_=fn_t...
num_user_for_reviews                                                       255
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   7e+07
title_year                                                                1999
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 584, dtype: object
color                                                                    Color
director_name                                                        Rob Cohen
num_critic_for_reviews                                                     191
duration                                                                   132
director_facebook_likes                                                    357
actor_3_facebook_likes                                                     212
actor_2_name                                                               Eve
actor_1_facebook_likes                                                   14000
gross                                                              1.41204e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                        Vin Diesel
movie_title                                                               xXx 
num_voted_users                                                         142569
cast_total_facebook_likes                                                14790
actor_3_name                                                     Leila Arcieri
facenumber_in_poster                                                         0
plot_keywords                               agent|nsa|nsa agent|prague|russian
movie_imdb_link              http://www.imdb.com/title/tt0295701/?ref_=fn_t...
num_user_for_reviews                                                       737
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2002
actor_2_facebook_likes                                                     223
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 585, dtype: object
color                                                                    Color
director_name                                                     Paul Tibbitt
num_critic_for_reviews                                                     147
duration                                                                    92
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     726
actor_2_name                                                        Billy West
actor_1_facebook_likes                                                     870
gross                                                              1.62496e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                        Tim Conway
movie_title                          The SpongeBob Movie: Sponge Out of Water 
num_voted_users                                                          34359
cast_total_facebook_likes                                                 5217
actor_3_name                                                      Eddie Deezen
facenumber_in_poster                                                         0
plot_keywords                          book|magic|pirate|plankton|time machine
movie_imdb_link              http://www.imdb.com/title/tt2279373/?ref_=fn_t...
num_user_for_reviews                                                       133
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.4e+07
title_year                                                                2015
actor_2_facebook_likes                                                     861
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     16000
Name: 586, dtype: object
color                                                                    Color
director_name                                                       Ron Howard
num_critic_for_reviews                                                      79
duration                                                                   139
director_facebook_likes                                                   2000
actor_3_facebook_likes                                                     808
actor_2_name                                                      Delroy Lindo
actor_1_facebook_likes                                                     960
gross                                                              1.36449e+08
genres                                                          Crime|Thriller
actor_1_name                                                       Lili Taylor
movie_title                                                            Ransom 
num_voted_users                                                          98989
cast_total_facebook_likes                                                 3667
actor_3_name                                                        Rene Russo
facenumber_in_poster                                                         1
plot_keywords                              bounty|fbi|millionaire|money|ransom
movie_imdb_link              http://www.imdb.com/title/tt0117438/?ref_=fn_t...
num_user_for_reviews                                                       158
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+07
title_year                                                                1996
actor_2_facebook_likes                                                     848
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 587, dtype: object
color                                                                    Color
director_name                                                Quentin Tarantino
num_critic_for_reviews                                                     486
duration                                                                   153
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                   11000
actor_2_name                                                         Brad Pitt
actor_1_facebook_likes                                                   13000
gross                                                              1.20523e+08
genres                                                     Adventure|Drama|War
actor_1_name                                                Michael Fassbender
movie_title                                              Inglourious Basterds 
num_voted_users                                                         885175
cast_total_facebook_likes                                                36741
actor_3_name                                                   Christoph Waltz
facenumber_in_poster                                                         1
plot_keywords                             france|german|nazis|revenge|scalping
movie_imdb_link              http://www.imdb.com/title/tt0361748/?ref_=fn_t...
num_user_for_reviews                                                      1527
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                   11000
imdb_score                                                                 8.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     42000
Name: 588, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                      75
duration                                                                   142
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                    5000
actor_2_name                                                     Julia Roberts
actor_1_facebook_likes                                                   49000
gross                                                              1.19655e+08
genres                                         Adventure|Comedy|Family|Fantasy
actor_1_name                                                    Robin Williams
movie_title                                                              Hook 
num_voted_users                                                         182802
cast_total_facebook_likes                                                64259
actor_3_name                                                       Bob Hoskins
facenumber_in_poster                                                         1
plot_keywords                         1990s|caught in a net|children|duel|hero
movie_imdb_link              http://www.imdb.com/title/tt0102057/?ref_=fn_t...
num_user_for_reviews                                                       363
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   7e+07
title_year                                                                1991
actor_2_facebook_likes                                                    8000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 589, dtype: object
color                                                                    Color
director_name                                                     Brett Ratner
num_critic_for_reviews                                                     245
duration                                                                   101
director_facebook_likes                                                    420
actor_3_facebook_likes                                                     467
actor_2_name                                                      Rufus Sewell
actor_1_facebook_likes                                                   12000
gross                                                                7.266e+07
genres                                                        Action|Adventure
actor_1_name                                                    Dwayne Johnson
movie_title                                                          Hercules 
num_voted_users                                                         115687
cast_total_facebook_likes                                                16235
actor_3_name                                               Ingrid Bolsø Berdal
facenumber_in_poster                                                         0
plot_keywords                     army|greek mythology|hercules|king|mercenary
movie_imdb_link              http://www.imdb.com/title/tt1267297/?ref_=fn_t...
num_user_for_reviews                                                       269
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2014
actor_2_facebook_likes                                                    3000
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     21000
Name: 590, dtype: object
color                                                                    Color
director_name                                                     Renny Harlin
num_critic_for_reviews                                                     142
duration                                                                   124
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     576
actor_2_name                                                         John Amos
actor_1_facebook_likes                                                   13000
gross                                                              1.17541e+08
genres                                                         Action|Thriller
actor_1_name                                                      Bruce Willis
movie_title                                                        Die Hard 2 
num_voted_users                                                         269858
cast_total_facebook_likes                                                16595
actor_3_name                                                       Franco Nero
facenumber_in_poster                                                         0
plot_keywords                              airport|fuel|plane|police|terrorist
movie_imdb_link              http://www.imdb.com/title/tt0099423/?ref_=fn_t...
num_user_for_reviews                                                       316
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                1990
actor_2_facebook_likes                                                     982
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 591, dtype: object
color                                                                    Color
director_name                                                    Clark Johnson
num_critic_for_reviews                                                     144
duration                                                                   117
director_facebook_likes                                                     69
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Josh Charles
actor_1_facebook_likes                                                   10000
gross                                                              1.16643e+08
genres                                         Action|Adventure|Crime|Thriller
actor_1_name                                                     Jeremy Renner
movie_title                                                          S.W.A.T. 
num_voted_users                                                         119807
cast_total_facebook_likes                                                14486
actor_3_name                                                         LL Cool J
facenumber_in_poster                                                         1
plot_keywords                         hostage|police|prison|swat team|training
movie_imdb_link              http://www.imdb.com/title/tt0257076/?ref_=fn_t...
num_user_for_reviews                                                       340
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2003
actor_2_facebook_likes                                                    1000
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 592, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      39
duration                                                                    45
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     160
actor_2_name                                                      Katia Winter
actor_1_facebook_likes                                                     898
gross                                                                      NaN
genres                                Adventure|Drama|Fantasy|Mystery|Thriller
actor_1_name                                                    Nicole Beharie
movie_title                                         Sleepy Hollow             
num_voted_users                                                          49049
cast_total_facebook_likes                                                 1430
actor_3_name                                                  Lyndie Greenwood
facenumber_in_poster                                                         0
plot_keywords                apocalypse|death|husband wife relationship|mot...
movie_imdb_link              http://www.imdb.com/title/tt2647544/?ref_=fn_t...
num_user_for_reviews                                                       110
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     372
imdb_score                                                                 7.5
aspect_ratio                                                                16
movie_facebook_likes                                                     14000
Name: 593, dtype: object
color                                                                    Color
director_name                                                    Cameron Crowe
num_critic_for_reviews                                                     153
duration                                                                   141
director_facebook_likes                                                    488
actor_3_facebook_likes                                                     509
actor_2_name                                                   Ivana Milicevic
actor_1_facebook_likes                                                   10000
gross                                                              1.00615e+08
genres                                 Fantasy|Mystery|Romance|Sci-Fi|Thriller
actor_1_name                                                        Tom Cruise
movie_title                                                       Vanilla Sky 
num_voted_users                                                         206776
cast_total_facebook_likes                                                11458
actor_3_name                                                       Noah Taylor
facenumber_in_poster                                                         1
plot_keywords                                death|dream|love|lynchian|reality
movie_imdb_link              http://www.imdb.com/title/tt0259711/?ref_=fn_t...
num_user_for_reviews                                                      1248
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.8e+07
title_year                                                                2001
actor_2_facebook_likes                                                     834
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 594, dtype: object
color                                                                    Color
director_name                                               M. Night Shyamalan
num_critic_for_reviews                                                     284
duration                                                                   110
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     559
actor_2_name                                                  Freddy Rodríguez
actor_1_facebook_likes                                                    3000
gross                                                              4.22727e+07
genres                                          Drama|Fantasy|Mystery|Thriller
actor_1_name                                               Bryce Dallas Howard
movie_title                                                 Lady in the Water 
num_voted_users                                                          78635
cast_total_facebook_likes                                                 5609
actor_3_name                                                       Bob Balaban
facenumber_in_poster                                                         1
plot_keywords                apartment|bedtime story|eagle|stuttering|swimm...
movie_imdb_link              http://www.imdb.com/title/tt0452637/?ref_=fn_t...
num_user_for_reviews                                                      1040
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2006
actor_2_facebook_likes                                                     579
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 595, dtype: object
color                                                                    Color
director_name                                               Paul W.S. Anderson
num_critic_for_reviews                                                     247
duration                                                                   109
director_facebook_likes                                                    545
actor_3_facebook_likes                                                     727
actor_2_name                                                      Colin Salmon
actor_1_facebook_likes                                                     886
gross                                                              8.02811e+07
genres                                           Action|Horror|Sci-Fi|Thriller
actor_1_name                                                      Sanaa Lathan
movie_title                                           AVP: Alien vs. Predator 
num_voted_users                                                         143628
cast_total_facebook_likes                                                 3222
actor_3_name                                                        Raoul Bova
facenumber_in_poster                                                         0
plot_keywords                      alien|antarctica|predator|pyramid|satellite
movie_imdb_link              http://www.imdb.com/title/tt0370263/?ref_=fn_t...
num_user_for_reviews                                                      1283
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2004
actor_2_facebook_likes                                                     766
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 596, dtype: object
color                                                                    Color
director_name                                                     Betty Thomas
num_critic_for_reviews                                                     107
duration                                                                    88
director_facebook_likes                                                     84
actor_3_facebook_likes                                                    1000
actor_2_name                                                   Bridgit Mendler
actor_1_facebook_likes                                                    1000
gross                                                              2.19613e+08
genres                                   Animation|Comedy|Family|Fantasy|Music
actor_1_name                                                       Amy Poehler
movie_title                           Alvin and the Chipmunks: The Squeakquel 
num_voted_users                                                          31649
cast_total_facebook_likes                                                 5227
actor_3_name                                                   Jesse McCartney
facenumber_in_poster                                                         0
plot_keywords                  adidas|chipmunk|hospital|school|waste container
movie_imdb_link              http://www.imdb.com/title/tt1231580/?ref_=fn_t...
num_user_for_reviews                                                        98
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                    1000
imdb_score                                                                 4.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                      2000
Name: 597, dtype: object
color                                                                    Color
director_name                                                  Randall Wallace
num_critic_for_reviews                                                     141
duration                                                                   124
director_facebook_likes                                                    130
actor_3_facebook_likes                                                     841
actor_2_name                                                       Marc Blucas
actor_1_facebook_likes                                                    4000
gross                                                              7.81202e+07
genres                                                Action|Drama|History|War
actor_1_name                                                          Jon Hamm
movie_title                                                  We Were Soldiers 
num_voted_users                                                         103241
cast_total_facebook_likes                                                 6181
actor_3_name                                                       Chris Klein
facenumber_in_poster                                                         0
plot_keywords                      air cavalry|battle|major|soldier|vietnamese
movie_imdb_link              http://www.imdb.com/title/tt0277434/?ref_=fn_t...
num_user_for_reviews                                                       742
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     973
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                      5000
Name: 598, dtype: object
color                                                                    Color
director_name                                                    Antoine Fuqua
num_critic_for_reviews                                                     358
duration                                                                   119
director_facebook_likes                                                    845
actor_3_facebook_likes                                                     992
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   18000
gross                                                              9.88954e+07
genres                                                         Action|Thriller
actor_1_name                                                     Gerard Butler
movie_title                                                Olympus Has Fallen 
num_voted_users                                                         203154
cast_total_facebook_likes                                                31782
actor_3_name                                                    Radha Mitchell
facenumber_in_poster                                                         3
plot_keywords                political thriller|politics|president|speaker ...
movie_imdb_link              http://www.imdb.com/title/tt2302755/?ref_=fn_t...
num_user_for_reviews                                                       698
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2013
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     45000
Name: 599, dtype: object
color                                                                    Color
director_name                                                  Jonathan Frakes
num_critic_for_reviews                                                     160
duration                                                                   103
director_facebook_likes                                                    906
actor_3_facebook_likes                                                     748
actor_2_name                                                   Jonathan Frakes
actor_1_facebook_likes                                                    1000
gross                                                              7.01176e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                      LeVar Burton
movie_title                                           Star Trek: Insurrection 
num_voted_users                                                          56741
cast_total_facebook_likes                                                 6207
actor_3_name                                                      Michael Dorn
facenumber_in_poster                                                         0
plot_keywords                        alien|captain|commander|conspiracy|planet
movie_imdb_link              http://www.imdb.com/title/tt0120844/?ref_=fn_t...
num_user_for_reviews                                                       515
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 5.8e+07
title_year                                                                1998
actor_2_facebook_likes                                                     906
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 600, dtype: object
color                                                                    Color
director_name                                               Jonathan Liebesman
num_critic_for_reviews                                                     355
duration                                                                   116
director_facebook_likes                                                    473
actor_3_facebook_likes                                                     464
actor_2_name                                                       Jim Parrack
actor_1_facebook_likes                                                     833
gross                                                              8.35524e+07
genres                                                           Action|Sci-Fi
actor_1_name                                                       Noel Fisher
movie_title                                                Battle Los Angeles 
num_voted_users                                                         154955
cast_total_facebook_likes                                                 4001
actor_3_name                                                   Ramon Rodriguez
facenumber_in_poster                                                         0
plot_keywords                   alien|extraterrestrial|invasion|marine|mission
movie_imdb_link              http://www.imdb.com/title/tt1217613/?ref_=fn_t...
num_user_for_reviews                                                       800
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2011
actor_2_facebook_likes                                                     697
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     25000
Name: 601, dtype: object
color                                                                    Color
director_name                                                       Tim Burton
num_critic_for_reviews                                                     235
duration                                                                   125
director_facebook_likes                                                  13000
actor_3_facebook_likes                                                     883
actor_2_name                                                     Alison Lohman
actor_1_facebook_likes                                                   12000
gross                                                               6.6257e+07
genres                                                 Adventure|Drama|Fantasy
actor_1_name                                                     Steve Buscemi
movie_title                                                          Big Fish 
num_voted_users                                                         350698
cast_total_facebook_likes                                                16138
actor_3_name                                                     Albert Finney
facenumber_in_poster                                                         0
plot_keywords                dog saved from a fire|flashback|growing up|mul...
movie_imdb_link              http://www.imdb.com/title/tt0319061/?ref_=fn_t...
num_user_for_reviews                                                       816
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2003
actor_2_facebook_likes                                                    1000
imdb_score                                                                   8
aspect_ratio                                                              1.37
movie_facebook_likes                                                     26000
Name: 602, dtype: object
color                                                                    Color
director_name                                                     Mike Nichols
num_critic_for_reviews                                                      59
duration                                                                   125
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     184
actor_2_name                                                      Peter Gerety
actor_1_facebook_likes                                                     443
gross                                                               6.5012e+07
genres                                           Drama|Horror|Romance|Thriller
actor_1_name                                                 David Hyde Pierce
movie_title                                                              Wolf 
num_voted_users                                                          43559
cast_total_facebook_likes                                                 1439
actor_3_name                                                        Ron Rifkin
facenumber_in_poster                                                         1
plot_keywords                   blood|publisher|publishing house|werewolf|wolf
movie_imdb_link              http://www.imdb.com/title/tt0111742/?ref_=fn_t...
num_user_for_reviews                                                       137
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                1994
actor_2_facebook_likes                                                     277
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 603, dtype: object
color                                                          Black and White
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     388
duration                                                                   146
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     979
actor_2_name                                              Benedict Cumberbatch
actor_1_facebook_likes                                                   25000
gross                                                              7.98834e+07
genres                                                               Drama|War
actor_1_name                                                     Jeremy Irvine
movie_title                                                         War Horse 
num_voted_users                                                         116159
cast_total_facebook_likes                                                46726
actor_3_name                                                      Eddie Marsan
facenumber_in_poster                                                         1
plot_keywords                  barbed wire|british|cavalry|horse|world war one
movie_imdb_link              http://www.imdb.com/title/tt1568911/?ref_=fn_t...
num_user_for_reviews                                                       488
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.6e+07
title_year                                                                2011
actor_2_facebook_likes                                                   19000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     28000
Name: 604, dtype: object
color                                                                    Color
director_name                                                   George Clooney
num_critic_for_reviews                                                     371
duration                                                                   118
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     559
actor_2_name                                                        Matt Damon
actor_1_facebook_likes                                                   13000
gross                                                              7.80316e+07
genres                                                               Drama|War
actor_1_name                                                       Bill Murray
movie_title                                                 The Monuments Men 
num_voted_users                                                         102248
cast_total_facebook_likes                                                27674
actor_3_name                                                       Bob Balaban
facenumber_in_poster                                                         7
plot_keywords                art|art expert|nazi stolen art|soldier|world w...
movie_imdb_link              http://www.imdb.com/title/tt2177771/?ref_=fn_t...
num_user_for_reviews                                                       403
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2014
actor_2_facebook_likes                                                   13000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     34000
Name: 605, dtype: object
color                                                                    Color
director_name                                                    James Cameron
num_critic_for_reviews                                                      82
duration                                                                   171
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     638
actor_2_name                                                        Todd Graff
actor_1_facebook_likes                                                    2000
gross                                                               5.4222e+07
genres                                         Adventure|Drama|Sci-Fi|Thriller
actor_1_name                                                     Michael Biehn
movie_title                                                         The Abyss 
num_voted_users                                                         131217
cast_total_facebook_likes                                                 4074
actor_3_name                                       Mary Elizabeth Mastrantonio
facenumber_in_poster                                                         0
plot_keywords                alien|estranged couple|ocean|submarine|underwater
movie_imdb_link              http://www.imdb.com/title/tt0096754/?ref_=fn_t...
num_user_for_reviews                                                       380
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                6.95e+07
title_year                                                                1989
actor_2_facebook_likes                                                     650
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 606, dtype: object
color                                                                    Color
director_name                                                     Oliver Stone
num_critic_for_reviews                                                     297
duration                                                                   136
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      17
actor_2_name                                                  Austin Pendleton
actor_1_facebook_likes                                                     903
gross                                                              5.24746e+07
genres                                                                   Drama
actor_1_name                                                    Frank Langella
movie_title                                   Wall Street: Money Never Sleeps 
num_voted_users                                                          84118
cast_total_facebook_likes                                                 1579
actor_3_name                                               John Buffalo Mailer
facenumber_in_poster                                                         2
plot_keywords                      corporate greed|crisis|economy|greed|mentor
movie_imdb_link              http://www.imdb.com/title/tt1027718/?ref_=fn_t...
num_user_for_reviews                                                       245
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2010
actor_2_facebook_likes                                                     592
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 607, dtype: object
color                                                                    Color
director_name                                                       Gary Shore
num_critic_for_reviews                                                     261
duration                                                                    92
director_facebook_likes                                                     28
actor_3_facebook_likes                                                     423
actor_2_name                                                       Sarah Gadon
actor_1_facebook_likes                                                    3000
gross                                                              5.59428e+07
genres                                         Action|Drama|Fantasy|Horror|War
actor_1_name                                                    Dominic Cooper
movie_title                                                    Dracula Untold 
num_voted_users                                                         138582
cast_total_facebook_likes                                                 5178
actor_3_name                                                      Zach McGowan
facenumber_in_poster                                                         1
plot_keywords                     death of wife|dracula|tarantula|turk|vampire
movie_imdb_link              http://www.imdb.com/title/tt0829150/?ref_=fn_t...
num_user_for_reviews                                                       423
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2014
actor_2_facebook_likes                                                     692
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     37000
Name: 608, dtype: object
color                                                                    Color
director_name                                                     Edward Zwick
num_critic_for_reviews                                                     120
duration                                                                   116
director_facebook_likes                                                    380
actor_3_facebook_likes                                                     774
actor_2_name                                                      Bruce Willis
actor_1_facebook_likes                                                   18000
gross                                                              4.09324e+07
genres                                                         Action|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                                         The Siege 
num_voted_users                                                          58023
cast_total_facebook_likes                                                32563
actor_3_name                                                       Mark Valley
facenumber_in_poster                                                         0
plot_keywords                abduction|martial law|military|new york city|t...
movie_imdb_link              http://www.imdb.com/title/tt0133952/?ref_=fn_t...
num_user_for_reviews                                                       281
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                1998
actor_2_facebook_likes                                                   13000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 609, dtype: object
color                                                                    Color
director_name                                                   Matthew Vaughn
num_critic_for_reviews                                                     228
duration                                                                   127
director_facebook_likes                                                    905
actor_3_facebook_likes                                                     271
actor_2_name                                                       David Kelly
actor_1_facebook_likes                                                   15000
gross                                                              3.83454e+07
genres                                        Adventure|Family|Fantasy|Romance
actor_1_name                                                      Henry Cavill
movie_title                                                          Stardust 
num_voted_users                                                         212085
cast_total_facebook_likes                                                16034
actor_3_name                                                  Nathaniel Parker
facenumber_in_poster                                                         8
plot_keywords                         king|magic|one word title|pirate|village
movie_imdb_link              http://www.imdb.com/title/tt0486655/?ref_=fn_t...
num_user_for_reviews                                                       492
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2007
actor_2_facebook_likes                                                     588
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 610, dtype: object
color                                                                    Color
director_name                                              Jean-Jacques Annaud
num_critic_for_reviews                                                      76
duration                                                                   136
director_facebook_likes                                                    218
actor_3_facebook_likes                                                     400
actor_2_name                                                              Mako
actor_1_facebook_likes                                                   11000
gross                                                              3.79015e+07
genres                                   Adventure|Biography|Drama|History|War
actor_1_name                                                         Brad Pitt
movie_title                                              Seven Years in Tibet 
num_voted_users                                                          96385
cast_total_facebook_likes                                                12226
actor_3_name                                                       Victor Wong
facenumber_in_poster                                                         1
plot_keywords                       austria|dalai lama|himalaya|mountain|tibet
movie_imdb_link              http://www.imdb.com/title/tt0120102/?ref_=fn_t...
num_user_for_reviews                                                       119
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                1997
actor_2_facebook_likes                                                     691
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 611, dtype: object
color                                                                    Color
director_name                                                       Ron Howard
num_critic_for_reviews                                                     185
duration                                                                   111
director_facebook_likes                                                   2000
actor_3_facebook_likes                                                     244
actor_2_name                                                      Clint Howard
actor_1_facebook_likes                                                   17000
gross                                                              4.84304e+07
genres                                                            Comedy|Drama
actor_1_name                                                    Channing Tatum
movie_title                                                       The Dilemma 
num_voted_users                                                          43709
cast_total_facebook_likes                                                18510
actor_3_name                                                      Chelcie Ross
facenumber_in_poster                                                         2
plot_keywords                best friend|friend|investigation|secret|two wo...
movie_imdb_link              http://www.imdb.com/title/tt1578275/?ref_=fn_t...
num_user_for_reviews                                                       141
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2011
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 612, dtype: object
color                                                                    Color
director_name                                                  Joel Schumacher
num_critic_for_reviews                                                     128
duration                                                                   116
director_facebook_likes                                                    541
actor_3_facebook_likes                                                     384
actor_2_name                                                      Brooke Smith
actor_1_facebook_likes                                                   12000
gross                                                               3.0157e+07
genres                                        Action|Adventure|Comedy|Thriller
actor_1_name                                                   Anthony Hopkins
movie_title                                                       Bad Company 
num_voted_users                                                          39659
cast_total_facebook_likes                                                12993
actor_3_name                                                 Garcelle Beauvais
facenumber_in_poster                                                         2
plot_keywords                        cia|cia agent|terrorist|twin|twin brother
movie_imdb_link              http://www.imdb.com/title/tt0280486/?ref_=fn_t...
num_user_for_reviews                                                       189
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2002
actor_2_facebook_likes                                                     405
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       792
Name: 613, dtype: object
color                                                                    Color
director_name                                               Andrzej Bartkowiak
num_critic_for_reviews                                                     237
duration                                                                   113
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     452
actor_2_name                                                       Ben Daniels
actor_1_facebook_likes                                                   12000
gross                                                              2.80312e+07
genres                                          Action|Adventure|Horror|Sci-Fi
actor_1_name                                                    Dwayne Johnson
movie_title                                                              Doom 
num_voted_users                                                          88146
cast_total_facebook_likes                                                13517
actor_3_name                                                   Dexter Fletcher
facenumber_in_poster                                                         0
plot_keywords                commando unit|extra chromosome|first person sh...
movie_imdb_link              http://www.imdb.com/title/tt0419706/?ref_=fn_t...
num_user_for_reviews                                                       814
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                2005
actor_2_facebook_likes                                                     585
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 614, dtype: object
color                                                                    Color
director_name                                                     Betty Thomas
num_critic_for_reviews                                                     105
duration                                                                    97
director_facebook_likes                                                     84
actor_3_facebook_likes                                                     150
actor_2_name                                                       Phill Lewis
actor_1_facebook_likes                                                     989
gross                                                              3.31056e+07
genres                                        Action|Adventure|Comedy|Thriller
actor_1_name                                                         Gary Cole
movie_title                                                             I Spy 
num_voted_users                                                          41663
cast_total_facebook_likes                                                 1576
actor_3_name                                                       Tate Taylor
facenumber_in_poster                                                         1
plot_keywords                           boxer|espionage|spy|stealth|top secret
movie_imdb_link              http://www.imdb.com/title/tt0297181/?ref_=fn_t...
num_user_for_reviews                                                       141
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2002
actor_2_facebook_likes                                                     229
imdb_score                                                                 5.4
aspect_ratio                                                              1.37
movie_facebook_likes                                                       531
Name: 615, dtype: object
color                                                                    Color
director_name                                                     Måns Mårlind
num_critic_for_reviews                                                     242
duration                                                                    88
director_facebook_likes                                                     24
actor_3_facebook_likes                                                     324
actor_2_name                                                       Stephen Rea
actor_1_facebook_likes                                                    5000
gross                                                               6.2321e+07
genres                                                   Action|Fantasy|Horror
actor_1_name                                                        Theo James
movie_title                                             Underworld: Awakening 
num_voted_users                                                         117096
cast_total_facebook_likes                                                 5861
actor_3_name                                                     Sandrine Holt
facenumber_in_poster                                                         1
plot_keywords                    battle|cryogenics|detective|scientist|vampire
movie_imdb_link              http://www.imdb.com/title/tt1496025/?ref_=fn_t...
num_user_for_reviews                                                       271
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2012
actor_2_facebook_likes                                                     327
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     24000
Name: 616, dtype: object
color                                                                    Color
director_name                                                    Adam Shankman
num_critic_for_reviews                                                     360
duration                                                                   136
director_facebook_likes                                                    163
actor_3_facebook_likes                                                      66
actor_2_name                                                    Shane Hartline
actor_1_facebook_likes                                                     394
gross                                                              3.85093e+07
genres                                            Comedy|Drama|Musical|Romance
actor_1_name                                                James Martin Kelly
movie_title                                                      Rock of Ages 
num_voted_users                                                          61995
cast_total_facebook_likes                                                  712
actor_3_name                                                      Celina Beach
facenumber_in_poster                                                         7
plot_keywords                  concert|love|music industry|panties|pole dancer
movie_imdb_link              http://www.imdb.com/title/tt1336608/?ref_=fn_t...
num_user_for_reviews                                                       356
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     217
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     33000
Name: 617, dtype: object
color                                                                    Color
director_name                                                   Gregory Hoblit
num_critic_for_reviews                                                     112
duration                                                                   125
director_facebook_likes                                                     40
actor_3_facebook_likes                                                     407
actor_2_name                                                       Cole Hauser
actor_1_facebook_likes                                                   13000
gross                                                              1.90768e+07
genres                                                               Drama|War
actor_1_name                                                      Bruce Willis
movie_title                                                        Hart's War 
num_voted_users                                                          43651
cast_total_facebook_likes                                                15916
actor_3_name                                                     Rory Cochrane
facenumber_in_poster                                                         0
plot_keywords                            colonel|honor|lieutenant|pilot|racism
movie_imdb_link              http://www.imdb.com/title/tt0251114/?ref_=fn_t...
num_user_for_reviews                                                       196
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                2002
actor_2_facebook_likes                                                     787
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       997
Name: 618, dtype: object
color                                                                    Color
director_name                                                    Gary McKendry
num_critic_for_reviews                                                     189
duration                                                                   116
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     748
actor_2_name                                                    Robert De Niro
actor_1_facebook_likes                                                   26000
gross                                                              2.50936e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                     Jason Statham
movie_title                                                      Killer Elite 
num_voted_users                                                         105556
cast_total_facebook_likes                                                49608
actor_3_name                                                    Ben Mendelsohn
facenumber_in_poster                                                         2
plot_keywords                    australia|death|mentor|revenge|secret society
movie_imdb_link              http://www.imdb.com/title/tt1448755/?ref_=fn_t...
num_user_for_reviews                                                       157
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 3.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                   22000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     17000
Name: 619, dtype: object
color                                                                    Color
director_name                                                   John McTiernan
num_critic_for_reviews                                                     151
duration                                                                    98
director_facebook_likes                                                    323
actor_3_facebook_likes                                                     390
actor_2_name                                                       Chris Klein
actor_1_facebook_likes                                                    1000
gross                                                              1.89905e+07
genres                                                     Action|Sci-Fi|Sport
actor_1_name                                                         LL Cool J
movie_title                                                        Rollerball 
num_voted_users                                                          22264
cast_total_facebook_likes                                                 2763
actor_3_name                                                 Andrew Bryniarski
facenumber_in_poster                                                         3
plot_keywords                                ball|blood|skating|song|year 2005
movie_imdb_link              http://www.imdb.com/title/tt0246894/?ref_=fn_t...
num_user_for_reviews                                                       289
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2002
actor_2_facebook_likes                                                     841
imdb_score                                                                   3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       584
Name: 620, dtype: object
color                                                                    Color
director_name                                                Wych Kaosayananda
num_critic_for_reviews                                                      92
duration                                                                    91
director_facebook_likes                                                      8
actor_3_facebook_likes                                                     298
actor_2_name                                                     Sandrine Holt
actor_1_facebook_likes                                                     349
gross                                                              1.42948e+07
genres                                            Action|Crime|Sci-Fi|Thriller
actor_1_name                                                       Talisa Soto
movie_title                                         Ballistic: Ecks vs. Sever 
num_voted_users                                                          16761
cast_total_facebook_likes                                                 1846
actor_3_name                                                       Gregg Henry
facenumber_in_poster                                                         1
plot_keywords                blood splatter|camera shot from inside human b...
movie_imdb_link              http://www.imdb.com/title/tt0308208/?ref_=fn_t...
num_user_for_reviews                                                       277
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2002
actor_2_facebook_likes                                                     324
imdb_score                                                                 3.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       391
Name: 621, dtype: object
color                                                                    Color
director_name                                                   Mikael Salomon
num_critic_for_reviews                                                      79
duration                                                                    97
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     695
actor_2_name                                                     Minnie Driver
actor_1_facebook_likes                                                   11000
gross                                                              1.98195e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                    Morgan Freeman
movie_title                                                         Hard Rain 
num_voted_users                                                          26893
cast_total_facebook_likes                                                13628
actor_3_name                                                       Randy Quaid
facenumber_in_poster                                                         0
plot_keywords                                   dam|flood|money|police|sheriff
movie_imdb_link              http://www.imdb.com/title/tt0120696/?ref_=fn_t...
num_user_for_reviews                                                       126
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                1998
actor_2_facebook_likes                                                     893
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                       815
Name: 622, dtype: object
color                                                                    Color
director_name                                                   Bobby Farrelly
num_critic_for_reviews                                                      81
duration                                                                    95
director_facebook_likes                                                    101
actor_3_facebook_likes                                                     443
actor_2_name                                                    Brandy Norwood
actor_1_facebook_likes                                                    2000
gross                                                              1.35969e+07
genres                       Action|Adventure|Animation|Comedy|Crime|Family...
actor_1_name                                                        Ron Howard
movie_title                                                     Osmosis Jones 
num_voted_users                                                          25572
cast_total_facebook_likes                                                 3734
actor_3_name                                                 David Hyde Pierce
facenumber_in_poster                                                         0
plot_keywords                            blood|body|egg|virus|white blood cell
movie_imdb_link              http://www.imdb.com/title/tt0181739/?ref_=fn_t...
num_user_for_reviews                                                       123
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   7e+07
title_year                                                                2001
actor_2_facebook_likes                                                     509
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 623, dtype: object
color                                                                    Color
director_name                                                        Will Finn
num_critic_for_reviews                                                      51
duration                                                                    88
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     854
actor_2_name                                                      Oliver Platt
actor_1_facebook_likes                                                    2000
gross                                                              8.46099e+06
genres                              Adventure|Animation|Family|Fantasy|Musical
actor_1_name                                                       Lea Michele
movie_title                                   Legends of Oz: Dorothy's Return 
num_voted_users                                                           5116
cast_total_facebook_likes                                                 6946
actor_3_name                                                       Jim Belushi
facenumber_in_poster                                                         1
plot_keywords                                jester|kansas|oz|princess|tornado
movie_imdb_link              http://www.imdb.com/title/tt0884726/?ref_=fn_t...
num_user_for_reviews                                                        54
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   7e+07
title_year                                                                2013
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.6
aspect_ratio                                                               NaN
movie_facebook_likes                                                      5000
Name: 624, dtype: object
color                                                                    Color
director_name                                                     Michael Mann
num_critic_for_reviews                                                     261
duration                                                                   133
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     301
actor_2_name                                                        Archie Kao
actor_1_facebook_likes                                                   26000
gross                                                              7.09712e+06
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                   Chris Hemsworth
movie_title                                                          Blackhat 
num_voted_users                                                          38983
cast_total_facebook_likes                                                28129
actor_3_name                                                    Brandon Molale
facenumber_in_poster                                                         1
plot_keywords                chinese|computer|cybercrime|hacker|one word title
movie_imdb_link              http://www.imdb.com/title/tt2717822/?ref_=fn_t...
num_user_for_reviews                                                       207
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2015
actor_2_facebook_likes                                                     326
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 625, dtype: object
color                                                                    Color
director_name                                                     Kerry Conran
num_critic_for_reviews                                                     197
duration                                                                   106
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     582
actor_2_name                                                  Laurence Olivier
actor_1_facebook_likes                                                   11000
gross                                                              3.77601e+07
genres                                Action|Adventure|Mystery|Sci-Fi|Thriller
actor_1_name                                               Angelina Jolie Pitt
movie_title                             Sky Captain and the World of Tomorrow 
num_voted_users                                                          72868
cast_total_facebook_likes                                                12871
actor_3_name                                                          Bai Ling
facenumber_in_poster                                                         2
plot_keywords                           captain|pilot|reporter|robot|scientist
movie_imdb_link              http://www.imdb.com/title/tt0346156/?ref_=fn_t...
num_user_for_reviews                                                       618
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   7e+07
title_year                                                                2004
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 626, dtype: object
color                                                                    Color
director_name                                              Michael Caton-Jones
num_critic_for_reviews                                                     159
duration                                                                   116
director_facebook_likes                                                    105
actor_3_facebook_likes                                                     246
actor_2_name                                                      Indira Varma
actor_1_facebook_likes                                                     844
gross                                                              5.85119e+06
genres                                                  Crime|Mystery|Thriller
actor_1_name                                                Charlotte Rampling
movie_title                                                  Basic Instinct 2 
num_voted_users                                                          31124
cast_total_facebook_likes                                                 1899
actor_3_name                                                      Neil Maskell
facenumber_in_poster                                                         1
plot_keywords                      drugs|murder|psychiatrist|scotland yard|sex
movie_imdb_link              http://www.imdb.com/title/tt0430912/?ref_=fn_t...
num_user_for_reviews                                                       313
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2006
actor_2_facebook_likes                                                     729
imdb_score                                                                 4.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       764
Name: 627, dtype: object
color                                                                    Color
director_name                                                  Mikael Håfström
num_critic_for_reviews                                                     286
duration                                                                   115
director_facebook_likes                                                    101
actor_3_facebook_likes                                                     585
actor_2_name                                                           50 Cent
actor_1_facebook_likes                                                   13000
gross                                                              2.51213e+07
genres                                    Action|Crime|Mystery|Sci-Fi|Thriller
actor_1_name                                                Sylvester Stallone
movie_title                                                       Escape Plan 
num_voted_users                                                         177653
cast_total_facebook_likes                                                15708
actor_3_name                                                       Matt Gerald
facenumber_in_poster                                                         1
plot_keywords                              cia agent|escape|muslim|prison|ship
movie_imdb_link              http://www.imdb.com/title/tt1211956/?ref_=fn_t...
num_user_for_reviews                                                       279
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2013
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     34000
Name: 628, dtype: object
color                                                                    Color
director_name                                                     Renny Harlin
num_critic_for_reviews                                                     156
duration                                                                    99
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     182
actor_2_name                                                     Luke Newberry
actor_1_facebook_likes                                                     576
gross                                                              1.88213e+07
genres                                                Action|Adventure|Fantasy
actor_1_name                                                     Roxanne McKee
movie_title                                            The Legend of Hercules 
num_voted_users                                                          44891
cast_total_facebook_likes                                                 1520
actor_3_name                                                        Gaia Weiss
facenumber_in_poster                                                         0
plot_keywords                ancient greece|forbidden love|hercules|king|sl...
movie_imdb_link              http://www.imdb.com/title/tt1043726/?ref_=fn_t...
num_user_for_reviews                                                       202
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2014
actor_2_facebook_likes                                                     358
imdb_score                                                                 4.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 629, dtype: object
color                                                                    Color
director_name                                              Phil Alden Robinson
num_critic_for_reviews                                                     176
duration                                                                   124
director_facebook_likes                                                     31
actor_3_facebook_likes                                                     497
actor_2_name                                                      Bruce McGill
actor_1_facebook_likes                                                   11000
gross                                                              1.18471e+08
genres                                                   Action|Drama|Thriller
actor_1_name                                                    Morgan Freeman
movie_title                                              The Sum of All Fears 
num_voted_users                                                          86504
cast_total_facebook_likes                                                12556
actor_3_name                                                 Philip Baker Hall
facenumber_in_poster                                                         0
plot_keywords                  analyst|cia|nuclear bomb|nuclear weapons|russia
movie_imdb_link              http://www.imdb.com/title/tt0164184/?ref_=fn_t...
num_user_for_reviews                                                       568
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.8e+07
title_year                                                                2002
actor_2_facebook_likes                                                     655
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 630, dtype: object
color                                                                    Color
director_name                                                      David Slade
num_critic_for_reviews                                                     293
duration                                                                   124
director_facebook_likes                                                    171
actor_3_facebook_likes                                                   10000
actor_2_name                                                   Kristen Stewart
actor_1_facebook_likes                                                   21000
gross                                                              3.00523e+08
genres                                         Adventure|Drama|Fantasy|Romance
actor_1_name                                                  Robert Pattinson
movie_title                                        The Twilight Saga: Eclipse 
num_voted_users                                                         184637
cast_total_facebook_likes                                                52547
actor_3_name                                                     Anna Kendrick
facenumber_in_poster                                                         3
plot_keywords                   friendship|graduation|revenge|vampire|werewolf
movie_imdb_link              http://www.imdb.com/title/tt1325004/?ref_=fn_t...
num_user_for_reviews                                                       498
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.8e+07
title_year                                                                2010
actor_2_facebook_likes                                                   17000
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     29000
Name: 631, dtype: object
color                                                                    Color
director_name                                                         Frank Oz
num_critic_for_reviews                                                     141
duration                                                                   124
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     580
actor_2_name                                                     Marlon Brando
actor_1_facebook_likes                                                   22000
gross                                                              7.10699e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                    Robert De Niro
movie_title                                                         The Score 
num_voted_users                                                         101899
cast_total_facebook_likes                                                32871
actor_3_name                                                       Gary Farmer
facenumber_in_poster                                                         0
plot_keywords                       partner|running|scepter|surveillance|thief
movie_imdb_link              http://www.imdb.com/title/tt0227445/?ref_=fn_t...
num_user_for_reviews                                                       445
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.8e+07
title_year                                                                2001
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 632, dtype: object
color                                                                    Color
director_name                                                    Pierre Coffin
num_critic_for_reviews                                                     304
duration                                                                    87
director_facebook_likes                                                    275
actor_3_facebook_likes                                                     975
actor_2_name                                                  Miranda Cosgrove
actor_1_facebook_likes                                                    7000
gross                                                              2.51502e+08
genres                                                 Animation|Comedy|Family
actor_1_name                                                      Steve Carell
movie_title                                                     Despicable Me 
num_voted_users                                                         385943
cast_total_facebook_likes                                                11608
actor_3_name                                                     Jack McBrayer
facenumber_in_poster                                                         0
plot_keywords                      girl|minion|moon|pyramid|white picket fence
movie_imdb_link              http://www.imdb.com/title/tt1323594/?ref_=fn_t...
num_user_for_reviews                                                       296
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.9e+07
title_year                                                                2010
actor_2_facebook_likes                                                    2000
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     31000
Name: 633, dtype: object
color                                                                    Color
director_name                                                     Joseph Ruben
num_critic_for_reviews                                                      40
duration                                                                   105
director_facebook_likes                                                     29
actor_3_facebook_likes                                                      97
actor_2_name                                                      Robert Blake
actor_1_facebook_likes                                                     584
gross                                                              3.53242e+07
genres                                      Action|Comedy|Crime|Drama|Thriller
actor_1_name                                                   Vincent Pastore
movie_title                                                       Money Train 
num_voted_users                                                          32224
cast_total_facebook_likes                                                 1132
actor_3_name                                                     Aida Turturro
facenumber_in_poster                                                         1
plot_keywords                      bare breasts|breast|loan shark|subway|train
movie_imdb_link              http://www.imdb.com/title/tt0113845/?ref_=fn_t...
num_user_for_reviews                                                        62
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.8e+07
title_year                                                                1995
actor_2_facebook_likes                                                     220
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       617
Name: 634, dtype: object
color                                                                    Color
director_name                                                  Seth MacFarlane
num_critic_for_reviews                                                     280
duration                                                                   125
director_facebook_likes                                                   3000
actor_3_facebook_likes                                                    3000
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   14000
gross                                                              8.12575e+07
genres                                                                  Comedy
actor_1_name                                                       Liam Neeson
movie_title                                                             Ted 2 
num_voted_users                                                         117739
cast_total_facebook_likes                                                30010
actor_3_name                                                   Seth MacFarlane
facenumber_in_poster                                                         0
plot_keywords                                baby|f word|fight|lawyer|marriage
movie_imdb_link              http://www.imdb.com/title/tt2637276/?ref_=fn_t...
num_user_for_reviews                                                       229
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.8e+07
title_year                                                                2015
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     30000
Name: 635, dtype: object
color                                                                    Color
director_name                                               Alejandro Amenábar
num_critic_for_reviews                                                     180
duration                                                                   141
director_facebook_likes                                                    448
actor_3_facebook_likes                                                     334
actor_2_name                                                     Ashraf Barhom
actor_1_facebook_likes                                                     614
gross                                                                   617840
genres                                         Adventure|Drama|History|Romance
actor_1_name                                                     Max Minghella
movie_title                                                             Agora 
num_voted_users                                                          52496
cast_total_facebook_likes                                                 1829
actor_3_name                                                      Rupert Evans
facenumber_in_poster                                                         2
plot_keywords                          christian|love|philosophy|prefect|slave
movie_imdb_link              http://www.imdb.com/title/tt1186830/?ref_=fn_t...
num_user_for_reviews                                                       172
language                                                               English
country                                                                  Spain
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2009
actor_2_facebook_likes                                                     451
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     29000
Name: 636, dtype: object
color                                                                    Color
director_name                                                      Kinka Usher
num_critic_for_reviews                                                     125
duration                                                                   121
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     776
actor_2_name                                                         Wes Studi
actor_1_facebook_likes                                                    1000
gross                                                              2.96556e+07
genres                                            Action|Comedy|Fantasy|Sci-Fi
actor_1_name                                                  Janeane Garofalo
movie_title                                                       Mystery Men 
num_voted_users                                                          53970
cast_total_facebook_likes                                                 3986
actor_3_name                                                      Eddie Izzard
facenumber_in_poster                                                         4
plot_keywords                            bowling|rajah|sphinx|spleen|superhero
movie_imdb_link              http://www.imdb.com/title/tt0132347/?ref_=fn_t...
num_user_for_reviews                                                       435
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     855
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 637, dtype: object
color                                                                    Color
director_name                                                   Bobby Farrelly
num_critic_for_reviews                                                     237
duration                                                                   111
director_facebook_likes                                                    101
actor_3_facebook_likes                                                     681
actor_2_name                                                Larry Joe Campbell
actor_1_facebook_likes                                                     966
gross                                                               4.5045e+07
genres                                                          Comedy|Romance
actor_1_name                                                     Jenna Fischer
movie_title                                                         Hall Pass 
num_voted_users                                                         103230
cast_total_facebook_likes                                                 3393
actor_3_name                                                  Stephen Merchant
facenumber_in_poster                                                         3
plot_keywords                drugged food|female frontal nudity|male fronta...
movie_imdb_link              http://www.imdb.com/title/tt0480687/?ref_=fn_t...
num_user_for_reviews                                                       143
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 3.6e+07
title_year                                                                2011
actor_2_facebook_likes                                                     919
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 638, dtype: object
color                                                                    Color
director_name                                                     Michael Mann
num_critic_for_reviews                                                     209
duration                                                                   157
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     680
actor_2_name                                                          Rip Torn
actor_1_facebook_likes                                                   14000
gross                                                              2.89652e+07
genres                                                Biography|Drama|Thriller
actor_1_name                                                         Al Pacino
movie_title                                                       The Insider 
num_voted_users                                                         133526
cast_total_facebook_likes                                                18216
actor_3_name                                                        Debi Mazar
facenumber_in_poster                                                         1
plot_keywords                      cbs|cbs news|research|tobacco|whistleblower
movie_imdb_link              http://www.imdb.com/title/tt0140352/?ref_=fn_t...
num_user_for_reviews                                                       521
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.8e+07
title_year                                                                1999
actor_2_facebook_likes                                                     826
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 639, dtype: object
color                                                                    Color
director_name                                                  Craig Gillespie
num_critic_for_reviews                                                     178
duration                                                                   117
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     531
actor_2_name                                                   Abraham Benrubi
actor_1_facebook_likes                                                     788
gross                                                              2.75507e+07
genres                                           Action|Drama|History|Thriller
actor_1_name                                             Michael Raymond-James
movie_title                                                  The Finest Hours 
num_voted_users                                                          27481
cast_total_facebook_likes                                                 3524
actor_3_name                                                   Graham McTavish
facenumber_in_poster                                                         0
plot_keywords                1950s|coast guard|oil tanker|sinking ship|surv...
movie_imdb_link              http://www.imdb.com/title/tt2025690/?ref_=fn_t...
num_user_for_reviews                                                       113
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2016
actor_2_facebook_likes                                                     562
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 640, dtype: object
color                                                                    Color
director_name                                                     Ridley Scott
num_critic_for_reviews                                                     238
duration                                                                   128
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     135
actor_2_name                                                    Simon McBurney
actor_1_facebook_likes                                                   29000
gross                                                              3.93804e+07
genres                                                   Action|Drama|Thriller
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                      Body of Lies 
num_voted_users                                                         174248
cast_total_facebook_likes                                                29824
actor_3_name                                                    Michael Gaston
facenumber_in_poster                                                         1
plot_keywords                             cia|jordan|middle east|spy|terrorist
movie_imdb_link              http://www.imdb.com/title/tt0758774/?ref_=fn_t...
num_user_for_reviews                                                       263
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2008
actor_2_facebook_likes                                                     149
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 641, dtype: object
color                                                                    Color
director_name                                                        Jay Roach
num_critic_for_reviews                                                     190
duration                                                                   114
director_facebook_likes                                                    116
actor_3_facebook_likes                                                     982
actor_2_name                                                 Stephanie Szostak
actor_1_facebook_likes                                                    7000
gross                                                              7.29801e+07
genres                                                                  Comedy
actor_1_name                                                      Steve Carell
movie_title                                               Dinner for Schmucks 
num_voted_users                                                          80338
cast_total_facebook_likes                                                10419
actor_3_name                                                   Bruce Greenwood
facenumber_in_poster                                                         2
plot_keywords                                   dinner|diorama|idiot|irs|mouse
movie_imdb_link              http://www.imdb.com/title/tt0427152/?ref_=fn_t...
num_user_for_reviews                                                       264
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 642, dtype: object
color                                                                    Color
director_name                                                Timur Bekmambetov
num_critic_for_reviews                                                     393
duration                                                                   105
director_facebook_likes                                                    335
actor_3_facebook_likes                                                     911
actor_2_name                                                    Dominic Cooper
actor_1_facebook_likes                                                    3000
gross                                                               3.7516e+07
genres                                                   Action|Fantasy|Horror
actor_1_name                                                      Rufus Sewell
movie_title                                   Abraham Lincoln: Vampire Hunter 
num_voted_users                                                         128629
cast_total_facebook_likes                                                 8281
actor_3_name                                                   Benjamin Walker
facenumber_in_poster                                                         0
plot_keywords                chopping down a tree|hanging upside down|shopk...
movie_imdb_link              http://www.imdb.com/title/tt1611224/?ref_=fn_t...
num_user_for_reviews                                                       348
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.9e+07
title_year                                                                2012
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     98000
Name: 643, dtype: object
color                                                                    Color
director_name                                                        Jon Amiel
num_critic_for_reviews                                                     138
duration                                                                   113
director_facebook_likes                                                     36
actor_3_facebook_likes                                                     232
actor_2_name                                                     Kevin McNally
actor_1_facebook_likes                                                     537
gross                                                              8.77044e+07
genres                                           Action|Crime|Romance|Thriller
actor_1_name                                                       Will Patton
movie_title                                                        Entrapment 
num_voted_users                                                          88132
cast_total_facebook_likes                                                 1302
actor_3_name                                                     Maury Chaykin
facenumber_in_poster                                                         1
plot_keywords                art thief|insurance|mask|master thief|referenc...
movie_imdb_link              http://www.imdb.com/title/tt0137494/?ref_=fn_t...
num_user_for_reviews                                                       274
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.6e+07
title_year                                                                1999
actor_2_facebook_likes                                                     427
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 644, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                       4
duration                                                                    30
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     359
actor_2_name                                                     Kaitlyn Dever
actor_1_facebook_likes                                                     995
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                   Hector Elizondo
movie_title                                     Last Man Standing             
num_voted_users                                                          15114
cast_total_facebook_likes                                                 2465
actor_3_name                                                      Nancy Travis
facenumber_in_poster                                                         1
plot_keywords                family relationships|husband wife relationship...
movie_imdb_link              http://www.imdb.com/title/tt1828327/?ref_=fn_t...
num_user_for_reviews                                                        87
language                                                               English
country                                                                    USA
content_rating                                                           TV-PG
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     363
imdb_score                                                                 7.4
aspect_ratio                                                                16
movie_facebook_likes                                                         0
Name: 645, dtype: object
color                                                                    Color
director_name                                                       Rob Bowman
num_critic_for_reviews                                                     142
duration                                                                   121
director_facebook_likes                                                     38
actor_3_facebook_likes                                                     745
actor_2_name                                                     Mitch Pileggi
actor_1_facebook_likes                                                     940
gross                                                              8.38924e+07
genres                                           Drama|Mystery|Sci-Fi|Thriller
actor_1_name                                                     Martin Landau
movie_title                                                       The X Files 
num_voted_users                                                          85720
cast_total_facebook_likes                                                 4230
actor_3_name                                                    Jeffrey DeMunn
facenumber_in_poster                                                         0
plot_keywords                                  agent|alien|bomb|fbi|government
movie_imdb_link              http://www.imdb.com/title/tt0120902/?ref_=fn_t...
num_user_for_reviews                                                       297
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.6e+07
title_year                                                                1998
actor_2_facebook_likes                                                     826
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 646, dtype: object
color                                                                    Color
director_name                                                      Doug Lefler
num_critic_for_reviews                                                      90
duration                                                                   102
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     112
actor_2_name                                                      Nonso Anozie
actor_1_facebook_likes                                                   14000
gross                                                              5.93206e+06
genres                                            Action|Adventure|Fantasy|War
actor_1_name                                                       Colin Firth
movie_title                                                   The Last Legion 
num_voted_users                                                          29285
cast_total_facebook_likes                                                14625
actor_3_name                                                        Owen Teale
facenumber_in_poster                                                         0
plot_keywords                       5th century|boy|capri|roman legion|soldier
movie_imdb_link              http://www.imdb.com/title/tt0462396/?ref_=fn_t...
num_user_for_reviews                                                       174
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 3.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     394
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 647, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     219
duration                                                                   169
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                   13000
actor_2_name                                                        Vin Diesel
actor_1_facebook_likes                                                   15000
gross                                                              2.16119e+08
genres                                                        Action|Drama|War
actor_1_name                                                         Tom Hanks
movie_title                                               Saving Private Ryan 
num_voted_users                                                         881236
cast_total_facebook_likes                                                44998
actor_3_name                                                        Matt Damon
facenumber_in_poster                                                         2
plot_keywords                  army|invasion|killed in action|normandy|soldier
movie_imdb_link              http://www.imdb.com/title/tt0120815/?ref_=fn_t...
num_user_for_reviews                                                      2277
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                1998
actor_2_facebook_likes                                                   14000
imdb_score                                                                 8.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     22000
Name: 648, dtype: object
color                                                                    Color
director_name                                                      Scott Waugh
num_critic_for_reviews                                                     327
duration                                                                   132
director_facebook_likes                                                     76
actor_3_facebook_likes                                                     464
actor_2_name                                                    Dominic Cooper
actor_1_facebook_likes                                                    3000
gross                                                              4.35685e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                        Rami Malek
movie_title                                                    Need for Speed 
num_voted_users                                                         136954
cast_total_facebook_likes                                                 7081
actor_3_name                                                   Ramon Rodriguez
facenumber_in_poster                                                         1
plot_keywords                cross country|custom car|illegal street racing...
movie_imdb_link              http://www.imdb.com/title/tt2369135/?ref_=fn_t...
num_user_for_reviews                                                       346
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.6e+07
title_year                                                                2014
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     32000
Name: 649, dtype: object
color                                                                    Color
director_name                                                     Nancy Meyers
num_critic_for_reviews                                                     149
duration                                                                   127
director_facebook_likes                                                    278
actor_3_facebook_likes                                                     912
actor_2_name                                                    Lisa Edelstein
actor_1_facebook_likes                                                    2000
gross                                                              1.82805e+08
genres                                                  Comedy|Fantasy|Romance
actor_1_name                                                        Judy Greer
movie_title                                                   What Women Want 
num_voted_users                                                         158864
cast_total_facebook_likes                                                 5838
actor_3_name                                                    Loretta Devine
facenumber_in_poster                                                         1
plot_keywords                advertising|battle of the sexes|ex husband ex ...
movie_imdb_link              http://www.imdb.com/title/tt0207201/?ref_=fn_t...
num_user_for_reviews                                                       395
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2000
actor_2_facebook_likes                                                     955
imdb_score                                                                 6.4
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 650, dtype: object
color                                                                    Color
director_name                                                      Chris Wedge
num_critic_for_reviews                                                     193
duration                                                                   103
director_facebook_likes                                                     77
actor_3_facebook_likes                                                     835
actor_2_name                                                      Stephen Root
actor_1_facebook_likes                                                    1000
gross                                                              1.76387e+08
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                     Goran Visnjic
movie_title                                                           Ice Age 
num_voted_users                                                         328159
cast_total_facebook_likes                                                 5437
actor_3_name                                                       Denis Leary
facenumber_in_poster                                                         0
plot_keywords                                  baby|ice|ice age|sleeping|sloth
movie_imdb_link              http://www.imdb.com/title/tt0268380/?ref_=fn_t...
num_user_for_reviews                                                       467
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 5.9e+07
title_year                                                                2002
actor_2_facebook_likes                                                     939
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                      3000
Name: 651, dtype: object
color                                                                    Color
director_name                                                  Lawrence Kasdan
num_critic_for_reviews                                                     175
duration                                                                   136
director_facebook_likes                                                    759
actor_3_facebook_likes                                                     354
actor_2_name                                                   Michael O'Neill
actor_1_facebook_likes                                                   11000
gross                                                              3.36853e+07
genres                                            Drama|Horror|Sci-Fi|Thriller
actor_1_name                                                    Morgan Freeman
movie_title                                                      Dreamcatcher 
num_voted_users                                                          75573
cast_total_facebook_likes                                                12194
actor_3_name                                                    Reece Thompson
facenumber_in_poster                                                         1
plot_keywords                                alien|friend|maine|military|woods
movie_imdb_link              http://www.imdb.com/title/tt0285531/?ref_=fn_t...
num_user_for_reviews                                                       662
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.8e+07
title_year                                                                2003
actor_2_facebook_likes                                                     599
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                      4000
Name: 652, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     538
duration                                                                   150
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     655
actor_2_name                                                      Hal Holbrook
actor_1_facebook_likes                                                   23000
gross                                                              1.82204e+08
genres                                             Biography|Drama|History|War
actor_1_name                                              Joseph Gordon-Levitt
movie_title                                                           Lincoln 
num_voted_users                                                         197412
cast_total_facebook_likes                                                25517
actor_3_name                                                      Bruce McGill
facenumber_in_poster                                                         0
plot_keywords                cultural conflict|politics|president|slavery|u...
movie_imdb_link              http://www.imdb.com/title/tt0443272/?ref_=fn_t...
num_user_for_reviews                                                       720
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     826
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     71000
Name: 653, dtype: object
color                                                                    Color
director_name                                                   Lana Wachowski
num_critic_for_reviews                                                     313
duration                                                                   136
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      99
actor_2_name                                                      Marcus Chong
actor_1_facebook_likes                                                   18000
gross                                                              1.71383e+08
genres                                                           Action|Sci-Fi
actor_1_name                                                      Keanu Reeves
movie_title                                                        The Matrix 
num_voted_users                                                        1217752
cast_total_facebook_likes                                                18563
actor_3_name                                                     Gloria Foster
facenumber_in_poster                                                         3
plot_keywords                artificial reality|computer|matrix|questioning...
movie_imdb_link              http://www.imdb.com/title/tt0133093/?ref_=fn_t...
num_user_for_reviews                                                      3646
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.3e+07
title_year                                                                1999
actor_2_facebook_likes                                                     145
imdb_score                                                                 8.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     25000
Name: 654, dtype: object
color                                                                    Color
director_name                                                       Ron Howard
num_critic_for_reviews                                                     159
duration                                                                   140
director_facebook_likes                                                   2000
actor_3_facebook_likes                                                     552
actor_2_name                                                       Miko Hughes
actor_1_facebook_likes                                                   15000
gross                                                              1.72071e+08
genres                                                 Adventure|Drama|History
actor_1_name                                                         Tom Hanks
movie_title                                                         Apollo 13 
num_voted_users                                                         208817
cast_total_facebook_likes                                                17171
actor_3_name                                                  Kathleen Quinlan
facenumber_in_poster                                                         0
plot_keywords                cape kennedy|news footage|reference to christo...
movie_imdb_link              http://www.imdb.com/title/tt0112384/?ref_=fn_t...
num_user_for_reviews                                                       296
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.2e+07
title_year                                                                1995
actor_2_facebook_likes                                                     968
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                      5000
Name: 655, dtype: object
color                                                                    Color
director_name                                                   Paul Verhoeven
num_critic_for_reviews                                                     196
duration                                                                   113
director_facebook_likes                                                    719
actor_3_facebook_likes                                                     217
actor_2_name                                                    Rachel Ticotin
actor_1_facebook_likes                                                     605
gross                                                              1.19413e+08
genres                                                           Action|Sci-Fi
actor_1_name                                                         Ronny Cox
movie_title                                                      Total Recall 
num_voted_users                                                         240241
cast_total_facebook_likes                                                 1441
actor_3_name                                                     Marshall Bell
facenumber_in_poster                                                         0
plot_keywords                ambiguous ending|false memory|implanted memory...
movie_imdb_link              http://www.imdb.com/title/tt0100802/?ref_=fn_t...
num_user_for_reviews                                                       391
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                1990
actor_2_facebook_likes                                                     308
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 656, dtype: object
color                                                                    Color
director_name                                                  Michael Lembeck
num_critic_for_reviews                                                      80
duration                                                                   104
director_facebook_likes                                                     54
actor_3_facebook_likes                                                     775
actor_2_name                                                       Aisha Tyler
actor_1_facebook_likes                                                     901
gross                                                              1.39226e+08
genres                                                   Comedy|Family|Fantasy
actor_1_name                                                    Judge Reinhold
movie_title                                                The Santa Clause 2 
num_voted_users                                                          34561
cast_total_facebook_likes                                                 5265
actor_3_name                                                        Eric Lloyd
facenumber_in_poster                                                         0
plot_keywords                              christmas|magic|santa claus|son|toy
movie_imdb_link              http://www.imdb.com/title/tt0304669/?ref_=fn_t...
num_user_for_reviews                                                       116
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   6e+07
title_year                                                                2002
actor_2_facebook_likes                                                     857
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 657, dtype: object
color                                                                    Color
director_name                                                       Tom Hooper
num_critic_for_reviews                                                     488
duration                                                                   158
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   11000
actor_2_name                                                    Eddie Redmayne
actor_1_facebook_likes                                                   20000
gross                                                              1.48775e+08
genres                                                   Drama|Musical|Romance
actor_1_name                                                      Hugh Jackman
movie_title                                                    Les Misérables 
num_voted_users                                                         243834
cast_total_facebook_likes                                                46204
actor_3_name                                                     Anne Hathaway
facenumber_in_poster                                                         1
plot_keywords                     barricade|innkeeper|parole|rebellion|student
movie_imdb_link              http://www.imdb.com/title/tt1707386/?ref_=fn_t...
num_user_for_reviews                                                       845
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.1e+07
title_year                                                                2012
actor_2_facebook_likes                                                   13000
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                    144000
Name: 658, dtype: object
color                                                                    Color
director_name                                                      Nora Ephron
num_critic_for_reviews                                                     153
duration                                                                   119
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     744
actor_2_name                                                    Jean Stapleton
actor_1_facebook_likes                                                   15000
gross                                                              1.15732e+08
genres                                                    Comedy|Drama|Romance
actor_1_name                                                         Tom Hanks
movie_title                                                   You've Got Mail 
num_voted_users                                                         151812
cast_total_facebook_likes                                                17768
actor_3_name                                                    Dave Chappelle
facenumber_in_poster                                                         2
plot_keywords                bookstore|competing businesses|instant messagi...
movie_imdb_link              http://www.imdb.com/title/tt0128853/?ref_=fn_t...
num_user_for_reviews                                                       556
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     793
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 659, dtype: object
color                                                                    Color
director_name                                                       Adam McKay
num_critic_for_reviews                                                     173
duration                                                                   106
director_facebook_likes                                                    285
actor_3_facebook_likes                                                     105
actor_2_name                                                        Adam Scott
actor_1_facebook_likes                                                    8000
gross                                                              1.00469e+08
genres                                                                  Comedy
actor_1_name                                                      Will Ferrell
movie_title                                                     Step Brothers 
num_voted_users                                                         212499
cast_total_facebook_likes                                                11264
actor_3_name                                                     Andrea Savage
facenumber_in_poster                                                         2
plot_keywords                            dream|friendship|karaoke|love|slacker
movie_imdb_link              http://www.imdb.com/title/tt0838283/?ref_=fn_t...
num_user_for_reviews                                                       277
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 660, dtype: object
color                                                                    Color
director_name                                                  Martin Campbell
num_critic_for_reviews                                                     156
duration                                                                   136
director_facebook_likes                                                    258
actor_3_facebook_likes                                                      94
actor_2_name                                                     Tony Amendola
actor_1_facebook_likes                                                   12000
gross                                                              9.37711e+07
genres                        Action|Adventure|Comedy|Romance|Thriller|Western
actor_1_name                                                   Anthony Hopkins
movie_title                                                 The Mask of Zorro 
num_voted_users                                                         135404
cast_total_facebook_likes                                                12396
actor_3_name                                                     Stuart Wilson
facenumber_in_poster                                                         0
plot_keywords                   19th century|california|revenge|training|zorro
movie_imdb_link              http://www.imdb.com/title/tt0120746/?ref_=fn_t...
num_user_for_reviews                                                       318
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     174
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 661, dtype: object
color                                                                    Color
director_name                                                    Todd Phillips
num_critic_for_reviews                                                     307
duration                                                                    95
director_facebook_likes                                                    480
actor_3_facebook_likes                                                     490
actor_2_name                                                               RZA
actor_1_facebook_likes                                                   21000
gross                                                              1.00448e+08
genres                                                            Comedy|Drama
actor_1_name                                                 Robert Downey Jr.
movie_title                                                          Due Date 
num_voted_users                                                         272789
cast_total_facebook_likes                                                23018
actor_3_name                                                        Matt Walsh
facenumber_in_poster                                                         3
plot_keywords                 actor|aspiring actor|birth|misadventure|suitcase
movie_imdb_link              http://www.imdb.com/title/tt1231583/?ref_=fn_t...
num_user_for_reviews                                                       285
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                     561
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     25000
Name: 662, dtype: object
color                                                                    Color
director_name                                              Angelina Jolie Pitt
num_critic_for_reviews                                                     322
duration                                                                   137
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     465
actor_2_name                                                    Jack O'Connell
actor_1_facebook_likes                                                     769
gross                                                              1.15604e+08
genres                                               Biography|Drama|Sport|War
actor_1_name                                                     Finn Wittrock
movie_title                                                          Unbroken 
num_voted_users                                                         103589
cast_total_facebook_likes                                                 2938
actor_3_name                                                      Alex Russell
facenumber_in_poster                                                         0
plot_keywords                emaciation|male nudity|plane crash|prisoner of...
movie_imdb_link              http://www.imdb.com/title/tt1809398/?ref_=fn_t...
num_user_for_reviews                                                       351
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     698
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     35000
Name: 663, dtype: object
color                                                          Black and White
director_name                                                   Clint Eastwood
num_critic_for_reviews                                                     169
duration                                                                   130
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     416
actor_2_name                                                 Courtney B. Vance
actor_1_facebook_likes                                                   16000
gross                                                               9.0454e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                    Clint Eastwood
movie_title                                                     Space Cowboys 
num_voted_users                                                          60165
cast_total_facebook_likes                                                17771
actor_3_name                                                    William Devane
facenumber_in_poster                                                         1
plot_keywords                       nasa|old age|satellite|space|space shuttle
movie_imdb_link              http://www.imdb.com/title/tt0186566/?ref_=fn_t...
num_user_for_reviews                                                       326
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     495
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 664, dtype: object
color                                                                    Color
director_name                                                     Renny Harlin
num_critic_for_reviews                                                      74
duration                                                                   124
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     369
actor_2_name                                                              Leon
actor_1_facebook_likes                                                   13000
gross                                                              8.40492e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                Sylvester Stallone
movie_title                                                       Cliffhanger 
num_voted_users                                                          96096
cast_total_facebook_likes                                                15229
actor_3_name                                                     Janine Turner
facenumber_in_poster                                                         1
plot_keywords                     money|mountain|rocky mountains|snow|suitcase
movie_imdb_link              http://www.imdb.com/title/tt0106582/?ref_=fn_t...
num_user_for_reviews                                                       172
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                1993
actor_2_facebook_likes                                                     730
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 665, dtype: object
color                                                                    Color
director_name                                                         John Woo
num_critic_for_reviews                                                      72
duration                                                                   108
director_facebook_likes                                                    610
actor_3_facebook_likes                                                     461
actor_2_name                                                   Samantha Mathis
actor_1_facebook_likes                                                     848
gross                                                                7.045e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                      Delroy Lindo
movie_title                                                      Broken Arrow 
num_voted_users                                                          77390
cast_total_facebook_likes                                                 2913
actor_3_name                                                        Bob Gunton
facenumber_in_poster                                                         2
plot_keywords                            captain|desert|major|park ranger|utah
movie_imdb_link              http://www.imdb.com/title/tt0115759/?ref_=fn_t...
num_user_for_reviews                                                       189
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1996
actor_2_facebook_likes                                                     517
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 666, dtype: object
color                                                                    Color
director_name                                                   Jon Turteltaub
num_critic_for_reviews                                                      86
duration                                                                   104
director_facebook_likes                                                    226
actor_3_facebook_likes                                                     577
actor_2_name                                                       Lily Tomlin
actor_1_facebook_likes                                                   13000
gross                                                              6.96884e+07
genres                                                   Comedy|Family|Fantasy
actor_1_name                                                      Bruce Willis
movie_title                                                           The Kid 
num_voted_users                                                          34473
cast_total_facebook_likes                                                16452
actor_3_name                                                 Daniel von Bargen
facenumber_in_poster                                                         1
plot_keywords                altering history|cartoon on tv|childhood|image...
movie_imdb_link              http://www.imdb.com/title/tt0219854/?ref_=fn_t...
num_user_for_reviews                                                       139
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2000
actor_2_facebook_likes                                                     718
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 667, dtype: object
color                                                                    Color
director_name                                                     Oliver Stone
num_critic_for_reviews                                                     242
duration                                                                   129
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     625
actor_2_name                                                     Jay Hernandez
actor_1_facebook_likes                                                   12000
gross                                                              7.02365e+07
genres                                                  Drama|History|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                                World Trade Center 
num_voted_users                                                          67395
cast_total_facebook_likes                                                14421
actor_3_name                                                    Armando Riesco
facenumber_in_poster                                                         0
plot_keywords                 based on true story|police|rescue|rubble|trapped
movie_imdb_link              http://www.imdb.com/title/tt0469641/?ref_=fn_t...
num_user_for_reviews                                                       564
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.3e+07
title_year                                                                2006
actor_2_facebook_likes                                                    1000
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 668, dtype: object
color                                                                    Color
director_name                                                      Mike Newell
num_critic_for_reviews                                                     141
duration                                                                   117
director_facebook_likes                                                    179
actor_3_facebook_likes                                                     403
actor_2_name                                                     Kirsten Dunst
actor_1_facebook_likes                                                    8000
gross                                                              6.36958e+07
genres                                                                   Drama
actor_1_name                                                     Julia Roberts
movie_title                                                   Mona Lisa Smile 
num_voted_users                                                          61490
cast_total_facebook_likes                                                12850
actor_3_name                                                     Marian Seldes
facenumber_in_poster                                                         1
plot_keywords                     art|college|school|student|wellesley college
movie_imdb_link              http://www.imdb.com/title/tt0304415/?ref_=fn_t...
num_user_for_reviews                                                       264
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+07
title_year                                                                2003
actor_2_facebook_likes                                                    4000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 669, dtype: object
color                                                                    Color
director_name                                                    Larry Charles
num_critic_for_reviews                                                     313
duration                                                                    99
director_facebook_likes                                                    119
actor_3_facebook_likes                                                     174
actor_2_name                                                      Aasif Mandvi
actor_1_facebook_likes                                                     600
gross                                                              5.96171e+07
genres                                                          Comedy|Romance
actor_1_name                                                     Sayed Badreya
movie_title                                                      The Dictator 
num_voted_users                                                         213863
cast_total_facebook_likes                                                 1375
actor_3_name                                                      Horatio Sanz
facenumber_in_poster                                                         0
plot_keywords                           dictator|hotel|oil|overalls|sunglasses
movie_imdb_link              http://www.imdb.com/title/tt1645170/?ref_=fn_t...
num_user_for_reviews                                                       310
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     346
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     59000
Name: 670, dtype: object
color                                                                    Color
director_name                                                  Stanley Kubrick
num_critic_for_reviews                                                     280
duration                                                                   159
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     521
actor_2_name                                                      Vinessa Shaw
actor_1_facebook_likes                                                   10000
gross                                                              5.56377e+07
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                        Tom Cruise
movie_title                                                    Eyes Wide Shut 
num_voted_users                                                         227071
cast_total_facebook_likes                                                11424
actor_3_name                                                    Sydney Pollack
facenumber_in_poster                                                         1
plot_keywords                         doctor|orgy|party|pianist|sexual fantasy
movie_imdb_link              http://www.imdb.com/title/tt0120663/?ref_=fn_t...
num_user_for_reviews                                                      1500
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     580
imdb_score                                                                 7.3
aspect_ratio                                                              1.66
movie_facebook_likes                                                     10000
Name: 671, dtype: object
color                                                                    Color
director_name                                                       Will Gluck
num_critic_for_reviews                                                     176
duration                                                                   118
director_facebook_likes                                                     87
actor_3_facebook_likes                                                     929
actor_2_name                                                    Dorian Missick
actor_1_facebook_likes                                                    2000
gross                                                              8.59113e+07
genres                                             Comedy|Drama|Family|Musical
actor_1_name                                                 Quvenzhané Wallis
movie_title                                                             Annie 
num_voted_users                                                          24735
cast_total_facebook_likes                                                 4796
actor_3_name                                                       David Zayas
facenumber_in_poster                                                         6
plot_keywords                billionaire|business tycoon|mayoral candidate|...
movie_imdb_link              http://www.imdb.com/title/tt1823664/?ref_=fn_t...
num_user_for_reviews                                                       213
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.2
aspect_ratio                                                              2.39
movie_facebook_likes                                                     16000
Name: 672, dtype: object
color                                                                    Color
director_name                                                    Glenn Ficarra
num_critic_for_reviews                                                     279
duration                                                                   105
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     523
actor_2_name                                                   Adrian Martinez
actor_1_facebook_likes                                                   10000
gross                                                              5.38469e+07
genres                                              Comedy|Crime|Drama|Romance
actor_1_name                                                        Will Smith
movie_title                                                             Focus 
num_voted_users                                                         149337
cast_total_facebook_likes                                                11943
actor_3_name                                                    Gerald McRaney
facenumber_in_poster                                                         0
plot_keywords                   con artist|con man|deception|rivalry|seduction
movie_imdb_link              http://www.imdb.com/title/tt2381941/?ref_=fn_t...
num_user_for_reviews                                                       221
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                5.01e+07
title_year                                                                2015
actor_2_facebook_likes                                                     806
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     23000
Name: 673, dtype: object
color                                                                    Color
director_name                                                              McG
num_critic_for_reviews                                                     241
duration                                                                   103
director_facebook_likes                                                    368
actor_3_facebook_likes                                                     520
actor_2_name                                                   Abigail Spencer
actor_1_facebook_likes                                                   27000
gross                                                              5.47585e+07
genres                                                   Action|Comedy|Romance
actor_1_name                                                         Tom Hardy
movie_title                                                    This Means War 
num_voted_users                                                         147641
cast_total_facebook_likes                                                29808
actor_3_name                                                   Warren Christie
facenumber_in_poster                                                         3
plot_keywords                      best friend|cia|cia agent|dating|undercover
movie_imdb_link              http://www.imdb.com/title/tt1596350/?ref_=fn_t...
num_user_for_reviews                                                       238
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 674, dtype: object
color                                                                    Color
director_name                                                   David S. Goyer
num_critic_for_reviews                                                     185
duration                                                                   122
director_facebook_likes                                                    687
actor_3_facebook_likes                                                     957
actor_2_name                                                    Natasha Lyonne
actor_1_facebook_likes                                                   16000
gross                                                              5.23974e+07
genres                         Action|Adventure|Fantasy|Horror|Sci-Fi|Thriller
actor_1_name                                                     Ryan Reynolds
movie_title                                                    Blade: Trinity 
num_voted_users                                                         132954
cast_total_facebook_likes                                                19764
actor_3_name                                              John Michael Higgins
facenumber_in_poster                                                         0
plot_keywords                blade|blood|dracula|vampire hunter|vampire slayer
movie_imdb_link              http://www.imdb.com/title/tt0359013/?ref_=fn_t...
num_user_for_reviews                                                       514
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                2004
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 675, dtype: object
color                                                                    Color
director_name                                                      John Milius
num_critic_for_reviews                                                      97
duration                                                                   114
director_facebook_likes                                                    468
actor_3_facebook_likes                                                     919
actor_2_name                                                     Jennifer Grey
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                        Action|Drama|War
actor_1_name                                                      Lea Thompson
movie_title                                                          Red Dawn 
num_voted_users                                                          41776
cast_total_facebook_likes                                                 3860
actor_3_name                                                     William Smith
facenumber_in_poster                                                         0
plot_keywords                  guerrilla|high school|invasion|soviet|wolverine
movie_imdb_link              http://www.imdb.com/title/tt0087985/?ref_=fn_t...
num_user_for_reviews                                                       383
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.69e+07
title_year                                                                1984
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 676, dtype: object
color                                                                    Color
director_name                                                     Mike Nichols
num_critic_for_reviews                                                     117
duration                                                                   143
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     210
actor_2_name                                                     Adrian Lester
actor_1_facebook_likes                                                     509
gross                                                              3.89661e+07
genres                                                            Comedy|Drama
actor_1_name                                                     Maura Tierney
movie_title                                                    Primary Colors 
num_voted_users                                                          23940
cast_total_facebook_likes                                                 1409
actor_3_name                                                    Paul Guilfoyle
facenumber_in_poster                                                         0
plot_keywords                campaigning|candidate|election|governor|president
movie_imdb_link              http://www.imdb.com/title/tt0119942/?ref_=fn_t...
num_user_for_reviews                                                       157
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     317
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       688
Name: 677, dtype: object
color                                                                    Color
director_name                                               Paul W.S. Anderson
num_critic_for_reviews                                                     239
duration                                                                    96
director_facebook_likes                                                    545
actor_3_facebook_likes                                                     974
actor_2_name                                                      Boris Kodjoe
actor_1_facebook_likes                                                   14000
gross                                                              4.23455e+07
genres                                           Action|Horror|Sci-Fi|Thriller
actor_1_name                                                    Milla Jovovich
movie_title                                        Resident Evil: Retribution 
num_voted_users                                                         104831
cast_total_facebook_likes                                                17913
actor_3_name                                                       Bingbing Li
facenumber_in_poster                                                         0
plot_keywords                         corporation|fight|rescue|umbrella|zombie
movie_imdb_link              http://www.imdb.com/title/tt1855325/?ref_=fn_t...
num_user_for_reviews                                                       423
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     32000
Name: 678, dtype: object
color                                                                    Color
director_name                                               Paul W.S. Anderson
num_critic_for_reviews                                                     230
duration                                                                   111
director_facebook_likes                                                    545
actor_3_facebook_likes                                                     805
actor_2_name                                                          Max Ryan
actor_1_facebook_likes                                                   26000
gross                                                              3.60649e+07
genres                                                  Action|Sci-Fi|Thriller
actor_1_name                                                     Jason Statham
movie_title                                                        Death Race 
num_voted_users                                                         166610
cast_total_facebook_likes                                                28643
actor_3_name                                                        Joan Allen
facenumber_in_poster                                                         4
plot_keywords                             armored car|car|murder|prison|warden
movie_imdb_link              http://www.imdb.com/title/tt0452608/?ref_=fn_t...
num_user_for_reviews                                                       211
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                     872
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 679, dtype: object
color                                                                    Color
director_name                                                     Renny Harlin
num_critic_for_reviews                                                      94
duration                                                                   121
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     263
actor_2_name                                                      Craig Bierko
actor_1_facebook_likes                                                     394
gross                                                              3.33281e+07
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                Melina Kanakaredes
movie_title                                           The Long Kiss Goodnight 
num_voted_users                                                          60508
cast_total_facebook_likes                                                 1531
actor_3_name                                                       Yvonne Zima
facenumber_in_poster                                                         2
plot_keywords                amnesia|chase|foot chase|strong female charact...
movie_imdb_link              http://www.imdb.com/title/tt0116908/?ref_=fn_t...
num_user_for_reviews                                                       285
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                1996
actor_2_facebook_likes                                                     380
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      4000
Name: 680, dtype: object
color                                                                    Color
director_name                                                  Taylor Hackford
num_critic_for_reviews                                                     134
duration                                                                   135
director_facebook_likes                                                    138
actor_3_facebook_likes                                                     184
actor_2_name                                                    Alun Armstrong
actor_1_facebook_likes                                                     324
gross                                                              3.25989e+07
genres                                                   Action|Drama|Thriller
actor_1_name                                                       Pamela Reed
movie_title                                                     Proof of Life 
num_voted_users                                                          49300
cast_total_facebook_likes                                                 1013
actor_3_name                                                   Michael Kitchen
facenumber_in_poster                                                         1
plot_keywords                    jungle|pipeline|prisoner|ransom|south america
movie_imdb_link              http://www.imdb.com/title/tt0228750/?ref_=fn_t...
num_user_for_reviews                                                       265
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     192
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       892
Name: 681, dtype: object
color                                                                    Color
director_name                                                      Jon Favreau
num_critic_for_reviews                                                     136
duration                                                                   101
director_facebook_likes                                                   4000
actor_3_facebook_likes                                                     539
actor_2_name                                                   Josh Hutcherson
actor_1_facebook_likes                                                   17000
gross                                                              2.80455e+07
genres                           Action|Adventure|Comedy|Family|Fantasy|Sci-Fi
actor_1_name                                                   Kristen Stewart
movie_title                                        Zathura: A Space Adventure 
num_voted_users                                                          67707
cast_total_facebook_likes                                                32232
actor_3_name                                                        Jonah Bobo
facenumber_in_poster                                                         0
plot_keywords                2000s|coke|meeting future self|reference to sp...
movie_imdb_link              http://www.imdb.com/title/tt0406375/?ref_=fn_t...
num_user_for_reviews                                                       202
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                   14000
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 682, dtype: object
color                                                                    Color
director_name                                                    David Fincher
num_critic_for_reviews                                                     315
duration                                                                   151
director_facebook_likes                                                  21000
actor_3_facebook_likes                                                     637
actor_2_name                                                         Meat Loaf
actor_1_facebook_likes                                                   11000
gross                                                              3.70234e+07
genres                                                                   Drama
actor_1_name                                                         Brad Pitt
movie_title                                                        Fight Club 
num_voted_users                                                        1347461
cast_total_facebook_likes                                                13209
actor_3_name                                                 Eugenie Bondurant
facenumber_in_poster                                                         2
plot_keywords                anti establishment|dark humor|fighting|multipl...
movie_imdb_link              http://www.imdb.com/title/tt0137523/?ref_=fn_t...
num_user_for_reviews                                                      2968
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.3e+07
title_year                                                                1999
actor_2_facebook_likes                                                     783
imdb_score                                                                 8.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     48000
Name: 683, dtype: object
color                                                                    Color
director_name                                                              McG
num_critic_for_reviews                                                      96
duration                                                                   131
director_facebook_likes                                                    368
actor_3_facebook_likes                                                     383
actor_2_name                                         Kimberly Williams-Paisley
actor_1_facebook_likes                                                   11000
gross                                                              4.35323e+07
genres                                                             Drama|Sport
actor_1_name                                               Matthew McConaughey
movie_title                                                   We Are Marshall 
num_voted_users                                                          46951
cast_total_facebook_likes                                                12088
actor_3_name                                                    Brian Geraghty
facenumber_in_poster                                                         0
plot_keywords                coach|football|football team|marshall universi...
movie_imdb_link              http://www.imdb.com/title/tt0758794/?ref_=fn_t...
num_user_for_reviews                                                       175
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     529
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 684, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      14
duration                                                                    60
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     575
actor_2_name                                                     James Nesbitt
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                     Crime|Drama|Mystery
actor_1_name                                                     Jason Flemyng
movie_title                                           The Missing             
num_voted_users                                                           8739
cast_total_facebook_likes                                                 3537
actor_3_name                                                  Frances O'Connor
facenumber_in_poster                                                         0
plot_keywords                 france|journalist|limp|police detective|reporter
movie_imdb_link              http://www.imdb.com/title/tt3877200/?ref_=fn_t...
num_user_for_reviews                                                        28
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     773
imdb_score                                                                 8.1
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 685, dtype: object
color                                                                    Color
director_name                                                  Michael Lehmann
num_critic_for_reviews                                                      60
duration                                                                   100
director_facebook_likes                                                     36
actor_3_facebook_likes                                                     554
actor_2_name                                                      James Coburn
actor_1_facebook_likes                                                   13000
gross                                                              1.72181e+07
genres                                                 Action|Adventure|Comedy
actor_1_name                                                      Bruce Willis
movie_title                                                       Hudson Hawk 
num_voted_users                                                          43376
cast_total_facebook_likes                                                15944
actor_3_name                                                  Richard E. Grant
facenumber_in_poster                                                         0
plot_keywords                blackmail|burglar|critically bashed|leonardo d...
movie_imdb_link              http://www.imdb.com/title/tt0102070/?ref_=fn_t...
num_user_for_reviews                                                       249
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                1991
actor_2_facebook_likes                                                     773
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 686, dtype: object
color                                                                    Color
director_name                                                      Nora Ephron
num_critic_for_reviews                                                      60
duration                                                                   105
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     506
actor_2_name                                                     Michael Moore
actor_1_facebook_likes                                                     975
gross                                                              1.00142e+07
genres                                                            Comedy|Crime
actor_1_name                                                  Michael Rapaport
movie_title                                                     Lucky Numbers 
num_voted_users                                                           8560
cast_total_facebook_likes                                                 3580
actor_3_name                                                    Richard Schiff
facenumber_in_poster                                                         1
plot_keywords                   celebrity|lottery|murder|snowmobile|weatherman
movie_imdb_link              http://www.imdb.com/title/tt0219952/?ref_=fn_t...
num_user_for_reviews                                                        69
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     909
imdb_score                                                                   5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       177
Name: 687, dtype: object
color                                                                    Color
director_name                                                   Stuart Beattie
num_critic_for_reviews                                                     308
duration                                                                    92
director_facebook_likes                                                     72
actor_3_facebook_likes                                                     568
actor_2_name                                                    Kevin Grevioux
actor_1_facebook_likes                                                     623
gross                                                               1.9059e+07
genres                                          Action|Fantasy|Sci-Fi|Thriller
actor_1_name                                                    Caitlin Stasey
movie_title                                                   I, Frankenstein 
num_voted_users                                                          65709
cast_total_facebook_likes                                                 3165
actor_3_name                                                      Miranda Otto
facenumber_in_poster                                                         0
plot_keywords                        army|creature|demon|frankenstein|gargoyle
movie_imdb_link              http://www.imdb.com/title/tt1418377/?ref_=fn_t...
num_user_for_reviews                                                       194
language                                                               English
country                                                              Australia
content_rating                                                           PG-13
budget                                                                 6.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     593
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 688, dtype: object
color                                                                    Color
director_name                                                   Roman Polanski
num_critic_for_reviews                                                     127
duration                                                                   130
director_facebook_likes                                                   2000
actor_3_facebook_likes                                                      25
actor_2_name                                                      Barney Clark
actor_1_facebook_likes                                                     268
gross                                                              1.98729e+06
genres                                                             Crime|Drama
actor_1_name                                                       Ian McNeice
movie_title                                                      Oliver Twist 
num_voted_users                                                          25474
cast_total_facebook_likes                                                  450
actor_3_name                                                        Tony Noble
facenumber_in_poster                                                         0
plot_keywords                boy|character name in title|orphan|pickpocket|...
movie_imdb_link              http://www.imdb.com/title/tt0380599/?ref_=fn_t...
num_user_for_reviews                                                       138
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2005
actor_2_facebook_likes                                                      85
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 689, dtype: object
color                                                                    Color
director_name                                                       Rob Bowman
num_critic_for_reviews                                                     196
duration                                                                   100
director_facebook_likes                                                     38
actor_3_facebook_likes                                                    1000
actor_2_name                                              Cary-Hiroyuki Tagawa
actor_1_facebook_likes                                                    3000
gross                                                              2.44079e+07
genres                                           Action|Crime|Fantasy|Thriller
actor_1_name                                                   Jennifer Garner
movie_title                                                           Elektra 
num_voted_users                                                          71202
cast_total_facebook_likes                                                 7048
actor_3_name                                                     Goran Visnjic
facenumber_in_poster                                                         0
plot_keywords                    assassin|battle|heroine|martial arts|spin off
movie_imdb_link              http://www.imdb.com/title/tt0357277/?ref_=fn_t...
num_user_for_reviews                                                       380
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                 4.3e+07
title_year                                                                2005
actor_2_facebook_likes                                                    1000
imdb_score                                                                 4.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 690, dtype: object
color                                                          Black and White
director_name                                                     Frank Miller
num_critic_for_reviews                                                     339
duration                                                                   102
director_facebook_likes                                                    436
actor_3_facebook_likes                                                    6000
actor_2_name                                                      Bruce Willis
actor_1_facebook_likes                                                   23000
gross                                                              1.37506e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                              Joseph Gordon-Levitt
movie_title                                      Sin City: A Dame to Kill For 
num_voted_users                                                         111102
cast_total_facebook_likes                                                49433
actor_3_name                                                         Eva Green
facenumber_in_poster                                                         3
plot_keywords                box office flop|female frontal nudity|female r...
movie_imdb_link              http://www.imdb.com/title/tt0458481/?ref_=fn_t...
num_user_for_reviews                                                       239
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                   13000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     32000
Name: 691, dtype: object
color                                                                    Color
director_name                                                   Sydney Pollack
num_critic_for_reviews                                                      96
duration                                                                   133
director_facebook_likes                                                    521
actor_3_facebook_likes                                                     970
actor_2_name                                              Kristin Scott Thomas
actor_1_facebook_likes                                                   11000
gross                                                              3.10549e+07
genres                                                   Drama|Mystery|Romance
actor_1_name                                                     Harrison Ford
movie_title                                                     Random Hearts 
num_voted_users                                                          17025
cast_total_facebook_likes                                                16710
actor_3_name                                                        Bill Cobbs
facenumber_in_poster                                                         1
plot_keywords                death|plane crash|police|police sergeant|polit...
movie_imdb_link              http://www.imdb.com/title/tt0156934/?ref_=fn_t...
num_user_for_reviews                                                       290
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.4e+07
title_year                                                                1999
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       295
Name: 692, dtype: object
color                                                                    Color
director_name                                                Baltasar Kormákur
num_critic_for_reviews                                                     361
duration                                                                   121
director_facebook_likes                                                    175
actor_3_facebook_likes                                                     221
actor_2_name                                                  Martin Henderson
actor_1_facebook_likes                                                     963
gross                                                              4.32471e+07
genres                        Adventure|Biography|Drama|History|Sport|Thriller
actor_1_name                                                     Michael Kelly
movie_title                                                           Everest 
num_voted_users                                                         134625
cast_total_facebook_likes                                                 2131
actor_3_name                                                  Tom Goodman-Hill
facenumber_in_poster                                                         0
plot_keywords                blizzard|mount everest|mountain|mountain climb...
movie_imdb_link              http://www.imdb.com/title/tt2719848/?ref_=fn_t...
num_user_for_reviews                                                       265
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2015
actor_2_facebook_likes                                                     580
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     40000
Name: 693, dtype: object
color                                                                    Color
director_name                                                       Tom Tykwer
num_critic_for_reviews                                                     226
duration                                                                   147
director_facebook_likes                                                    670
actor_3_facebook_likes                                                      16
actor_2_name                                                      David Calder
actor_1_facebook_likes                                                     177
gross                                                              2.20894e+06
genres                                                     Crime|Drama|Fantasy
actor_1_name                                                    Michael Smiley
movie_title                                  Perfume: The Story of a Murderer 
num_voted_users                                                         190490
cast_total_facebook_likes                                                  253
actor_3_name                                                    Simon Chandler
facenumber_in_poster                                                         0
plot_keywords                  18th century|perfume|scent|sense of smell|smell
movie_imdb_link              http://www.imdb.com/title/tt0396171/?ref_=fn_t...
num_user_for_reviews                                                       482
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2006
actor_2_facebook_likes                                                      27
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     26000
Name: 694, dtype: object
color                                                                    Color
director_name                                                        Jay Roach
num_critic_for_reviews                                                     194
duration                                                                    94
director_facebook_likes                                                    116
actor_3_facebook_likes                                                     481
actor_2_name                                                    Josh Zuckerman
actor_1_facebook_likes                                                     645
gross                                                              2.13079e+08
genres                                                     Action|Comedy|Crime
actor_1_name                                                      Verne Troyer
movie_title                                       Austin Powers in Goldmember 
num_voted_users                                                         162909
cast_total_facebook_likes                                                 2725
actor_3_name                                                     Robert Wagner
facenumber_in_poster                                                         2
plot_keywords                  fem bot|prison|seductive fembot|spy|time travel
movie_imdb_link              http://www.imdb.com/title/tt0295178/?ref_=fn_t...
num_user_for_reviews                                                       795
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.3e+07
title_year                                                                2002
actor_2_facebook_likes                                                     522
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 695, dtype: object
color                                                                    Color
director_name                                                     David Bowers
num_critic_for_reviews                                                     138
duration                                                                    94
director_facebook_likes                                                     42
actor_3_facebook_likes                                                     668
actor_2_name                                                   Charlize Theron
actor_1_facebook_likes                                                   12000
gross                                                              1.95481e+07
genres                                   Action|Animation|Comedy|Family|Sci-Fi
actor_1_name                                                      Nicolas Cage
movie_title                                                         Astro Boy 
num_voted_users                                                          25681
cast_total_facebook_likes                                                23365
actor_3_name                                                 Dee Bradley Baker
facenumber_in_poster                                                         1
plot_keywords                    betrayal|futuristic|gladiator|robot|scientist
movie_imdb_link              http://www.imdb.com/title/tt0375568/?ref_=fn_t...
num_user_for_reviews                                                        77
language                                                               English
country                                                              Hong Kong
content_rating                                                              PG
budget                                                                 6.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                    9000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 696, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     308
duration                                                                   127
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     191
actor_2_name                                                   Ariana Richards
actor_1_facebook_likes                                                     967
gross                                                              3.56784e+08
genres                                               Adventure|Sci-Fi|Thriller
actor_1_name                                                      Wayne Knight
movie_title                                                     Jurassic Park 
num_voted_users                                                         613473
cast_total_facebook_likes                                                 2129
actor_3_name                                                          Bob Peck
facenumber_in_poster                                                         0
plot_keywords                dinosaur|jurassic park|survival|theme park|tyr...
movie_imdb_link              http://www.imdb.com/title/tt0107290/?ref_=fn_t...
num_user_for_reviews                                                       895
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.3e+07
title_year                                                                1993
actor_2_facebook_likes                                                     610
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     19000
Name: 697, dtype: object
color                                                                    Color
director_name                                                  Lawrence Kasdan
num_critic_for_reviews                                                      40
duration                                                                   212
director_facebook_likes                                                    759
actor_3_facebook_likes                                                     812
actor_2_name                                                  Catherine O'Hara
actor_1_facebook_likes                                                    2000
gross                                                               2.5052e+07
genres                                 Adventure|Biography|Crime|Drama|Western
actor_1_name                                                      Dennis Quaid
movie_title                                                        Wyatt Earp 
num_voted_users                                                          35314
cast_total_facebook_likes                                                 5708
actor_3_name                                               Isabella Rossellini
facenumber_in_poster                                                         0
plot_keywords                historically inaccurate|name calling|penis slu...
movie_imdb_link              http://www.imdb.com/title/tt0111756/?ref_=fn_t...
num_user_for_reviews                                                       145
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.3e+07
title_year                                                                1994
actor_2_facebook_likes                                                     925
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 698, dtype: object
color                                                                    Color
director_name                                                    Phillip Noyce
num_critic_for_reviews                                                      42
duration                                                                   141
director_facebook_likes                                                    176
actor_3_facebook_likes                                                     672
actor_2_name                                                        Dean Jones
actor_1_facebook_likes                                                   11000
gross                                                              1.22013e+08
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                     Harrison Ford
movie_title                                          Clear and Present Danger 
num_voted_users                                                          69663
cast_total_facebook_likes                                                14178
actor_3_name                                                      Raymond Cruz
facenumber_in_poster                                                         1
plot_keywords                cia|colombia|colombian drug cartel|drugs|presi...
movie_imdb_link              http://www.imdb.com/title/tt0109444/?ref_=fn_t...
num_user_for_reviews                                                       133
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.2e+07
title_year                                                                1994
actor_2_facebook_likes                                                     913
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 699, dtype: object
color                                                                    Color
director_name                                                       Daniel Lee
num_critic_for_reviews                                                      68
duration                                                                   103
director_facebook_likes                                                     10
actor_3_facebook_likes                                                       7
actor_2_name                                                          Peng Lin
actor_1_facebook_likes                                                      21
gross                                                                    72413
genres                                          Action|Adventure|Drama|History
actor_1_name                                                       Si Won Choi
movie_title                                                      Dragon Blade 
num_voted_users                                                          11584
cast_total_facebook_likes                                                   58
actor_3_name                                                      Sung-jun Yoo
facenumber_in_poster                                                         3
plot_keywords                child fugitive|final battle|martial art|silk r...
movie_imdb_link              http://www.imdb.com/title/tt3672840/?ref_=fn_t...
num_user_for_reviews                                                        86
language                                                              Mandarin
country                                                                  China
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                2015
actor_2_facebook_likes                                                      18
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 700, dtype: object
color                                                                    Color
director_name                                              Keenen Ivory Wayans
num_critic_for_reviews                                                      78
duration                                                                    98
director_facebook_likes                                                    322
actor_3_facebook_likes                                                     723
actor_2_name                                                   Brittany Daniel
actor_1_facebook_likes                                                     979
gross                                                              5.82553e+07
genres                                                            Comedy|Crime
actor_1_name                                                  Chazz Palminteri
movie_title                                                         Littleman 
num_voted_users                                                          39471
cast_total_facebook_likes                                                 6334
actor_3_name                                                  John Witherspoon
facenumber_in_poster                                                         1
plot_keywords                      diamond|infant|parody|spoof|sports violence
movie_imdb_link              http://www.imdb.com/title/tt0430304/?ref_=fn_t...
num_user_for_reviews                                                       187
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.4e+07
title_year                                                                2006
actor_2_facebook_likes                                                     862
imdb_score                                                                 4.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 701, dtype: object
color                                                                    Color
director_name                                                  Jonathan Mostow
num_critic_for_reviews                                                     178
duration                                                                   116
director_facebook_likes                                                     84
actor_3_facebook_likes                                                     563
actor_2_name                                                Thomas Kretschmann
actor_1_facebook_likes                                                   11000
gross                                                               7.7086e+07
genres                                                              Action|War
actor_1_name                                               Matthew McConaughey
movie_title                                                             U-571 
num_voted_users                                                          65297
cast_total_facebook_likes                                                14931
actor_3_name                                                       David Keith
facenumber_in_poster                                                         0
plot_keywords                battle|historically inaccurate|submarine movie...
movie_imdb_link              http://www.imdb.com/title/tt0141926/?ref_=fn_t...
num_user_for_reviews                                                       602
language                                                               English
country                                                                 France
content_rating                                                           PG-13
budget                                                                 6.2e+07
title_year                                                                2000
actor_2_facebook_likes                                                     919
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 702, dtype: object
color                                                                    Color
director_name                                                       Rob Reiner
num_critic_for_reviews                                                      75
duration                                                                   114
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     452
actor_2_name                                                   Samantha Mathis
actor_1_facebook_likes                                                     524
gross                                                                  6.5e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                    Shawna Waldron
movie_title                                            The American President 
num_voted_users                                                          43027
cast_total_facebook_likes                                                 2668
actor_3_name                                                     Wendie Malick
facenumber_in_poster                                                         0
plot_keywords                  lobbyist|president|senator|state dinner|widower
movie_imdb_link              http://www.imdb.com/title/tt0112346/?ref_=fn_t...
num_user_for_reviews                                                       214
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.2e+07
title_year                                                                1995
actor_2_facebook_likes                                                     517
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 703, dtype: object
color                                                                    Color
director_name                                                   Marco Schnabel
num_critic_for_reviews                                                     150
duration                                                                    87
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     645
actor_2_name                                                      Romany Malco
actor_1_facebook_likes                                                    3000
gross                                                              3.21788e+07
genres                                                    Comedy|Romance|Sport
actor_1_name                                                 Justin Timberlake
movie_title                                                     The Love Guru 
num_voted_users                                                          43300
cast_total_facebook_likes                                                 6658
actor_3_name                                                      Verne Troyer
facenumber_in_poster                                                         6
plot_keywords                bloopers during credits|bucket of popcorn|chas...
movie_imdb_link              http://www.imdb.com/title/tt0811138/?ref_=fn_t...
num_user_for_reviews                                                       250
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.2e+07
title_year                                                                2008
actor_2_facebook_likes                                                     966
imdb_score                                                                 3.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 704, dtype: object
color                                                                    Color
director_name                                              Demian Lichtenstein
num_critic_for_reviews                                                     113
duration                                                                   125
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     867
actor_2_name                                                   Bokeem Woodbine
actor_1_facebook_likes                                                   11000
gross                                                              1.57386e+07
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                                        Jon Lovitz
movie_title                                           3000 Miles to Graceland 
num_voted_users                                                          38076
cast_total_facebook_likes                                                14536
actor_3_name                                                             Ice-T
facenumber_in_poster                                                         2
plot_keywords                       casino|elvis impersonator|gun|heist|rascal
movie_imdb_link              http://www.imdb.com/title/tt0233142/?ref_=fn_t...
num_user_for_reviews                                                       399
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.2e+07
title_year                                                                2001
actor_2_facebook_likes                                                     904
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 705, dtype: object
color                                                                    Color
director_name                                                Quentin Tarantino
num_critic_for_reviews                                                     596
duration                                                                   187
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                    1000
actor_2_name                                              Jennifer Jason Leigh
actor_1_facebook_likes                                                   46000
gross                                                              5.41162e+07
genres                                    Crime|Drama|Mystery|Thriller|Western
actor_1_name                                                       Craig Stark
movie_title                                                 The Hateful Eight 
num_voted_users                                                         272839
cast_total_facebook_likes                                                49912
actor_3_name                                                          Zoë Bell
facenumber_in_poster                                                         1
plot_keywords                blizzard|blood vomiting|bounty hunter|murder|s...
movie_imdb_link              http://www.imdb.com/title/tt3460252/?ref_=fn_t...
num_user_for_reviews                                                      1018
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.4e+07
title_year                                                                2015
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.9
aspect_ratio                                                              2.76
movie_facebook_likes                                                    114000
Name: 706, dtype: object
color                                                                    Color
director_name                                                      Josh Gordon
num_critic_for_reviews                                                     191
duration                                                                    93
director_facebook_likes                                                      8
actor_3_facebook_likes                                                     970
actor_2_name                                                       Amy Poehler
actor_1_facebook_likes                                                    8000
gross                                                              1.18154e+08
genres                                                            Comedy|Sport
actor_1_name                                                      Will Ferrell
movie_title                                                   Blades of Glory 
num_voted_users                                                         129995
cast_total_facebook_likes                                                13232
actor_3_name                                                         Jon Heder
facenumber_in_poster                                                         2
plot_keywords                competition|fight|ice|jock strap|nintendo game...
movie_imdb_link              http://www.imdb.com/title/tt0445934/?ref_=fn_t...
num_user_for_reviews                                                       246
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.1e+07
title_year                                                                2007
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 707, dtype: object
color                                                                    Color
director_name                                                         Tim Hill
num_critic_for_reviews                                                     156
duration                                                                    95
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     439
actor_2_name                                                 Elizabeth Perkins
actor_1_facebook_likes                                                     989
gross                                                              1.08012e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                         Gary Cole
movie_title                                                               Hop 
num_voted_users                                                          24089
cast_total_facebook_likes                                                 2558
actor_3_name                                                   Chelsea Handler
facenumber_in_poster                                                         0
plot_keywords                drummer|easter|easter bunny|piaggio vespa gtv ...
movie_imdb_link              http://www.imdb.com/title/tt1411704/?ref_=fn_t...
num_user_for_reviews                                                        82
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.3e+07
title_year                                                                2011
actor_2_facebook_likes                                                     664
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 708, dtype: object
color                                                                    Color
director_name                                                      Zack Snyder
num_critic_for_reviews                                                     460
duration                                                                   117
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     447
actor_2_name                                                Michael Fassbender
actor_1_facebook_likes                                                   18000
gross                                                              2.10593e+08
genres                                                Action|Drama|Fantasy|War
actor_1_name                                                     Gerard Butler
movie_title                                                               300 
num_voted_users                                                         607235
cast_total_facebook_likes                                                32360
actor_3_name                                                     Vincent Regan
facenumber_in_poster                                                         0
plot_keywords                               battle|epic|greece|spartan|warrior
movie_imdb_link              http://www.imdb.com/title/tt0416449/?ref_=fn_t...
num_user_for_reviews                                                      2073
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                   13000
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 709, dtype: object
color                                                                    Color
director_name                                                        Jay Roach
num_critic_for_reviews                                                     141
duration                                                                   106
director_facebook_likes                                                    116
actor_3_facebook_likes                                                     708
actor_2_name                                                     Blythe Danner
actor_1_facebook_likes                                                   22000
gross                                                              2.79168e+08
genres                                                          Comedy|Romance
actor_1_name                                                    Robert De Niro
movie_title                                                  Meet the Fockers 
num_voted_users                                                         211296
cast_total_facebook_likes                                                24938
actor_3_name                                                         Teri Polo
facenumber_in_poster                                                         6
plot_keywords                bare butt|defecation|father in law son in law ...
movie_imdb_link              http://www.imdb.com/title/tt0290002/?ref_=fn_t...
num_user_for_reviews                                                       428
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+07
title_year                                                                2004
actor_2_facebook_likes                                                     713
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 710, dtype: object
color                                                                    Color
director_name                                                    David Frankel
num_critic_for_reviews                                                     180
duration                                                                   115
director_facebook_likes                                                     64
actor_3_facebook_likes                                                     664
actor_2_name                                                   Kathleen Turner
actor_1_facebook_likes                                                    2000
gross                                                              1.43151e+08
genres                                                     Comedy|Drama|Family
actor_1_name                                                         Eric Dane
movie_title                                                       Marley & Me 
num_voted_users                                                         116681
cast_total_facebook_likes                                                 4811
actor_3_name                                                     Haley Bennett
facenumber_in_poster                                                         0
plot_keywords                box office hit|dog|dog movie|florida|pet name ...
movie_imdb_link              http://www.imdb.com/title/tt0822832/?ref_=fn_t...
num_user_for_reviews                                                       320
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2008
actor_2_facebook_likes                                                     899
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 711, dtype: object
color                                                                    Color
director_name                                                   Frank Darabont
num_critic_for_reviews                                                     186
duration                                                                   189
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     693
actor_2_name                                                    Jeffrey DeMunn
actor_1_facebook_likes                                                   15000
gross                                                              1.36801e+08
genres                                             Crime|Drama|Fantasy|Mystery
actor_1_name                                                         Tom Hanks
movie_title                                                    The Green Mile 
num_voted_users                                                         782610
cast_total_facebook_likes                                                17716
actor_3_name                                                     Michael Jeter
facenumber_in_poster                                                         0
plot_keywords                1930s|death row inmate|healing|prison guard|so...
movie_imdb_link              http://www.imdb.com/title/tt0120689/?ref_=fn_t...
num_user_for_reviews                                                      1377
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                1999
actor_2_facebook_likes                                                     745
imdb_score                                                                 8.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     30000
Name: 712, dtype: object
color                                                                    Color
director_name                                                      Walt Becker
num_critic_for_reviews                                                     177
duration                                                                   100
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     311
actor_2_name                                                    Tichina Arnold
actor_1_facebook_likes                                                     419
gross                                                              1.68214e+08
genres                                                 Action|Adventure|Comedy
actor_1_name                                                     Jill Hennessy
movie_title                                                         Wild Hogs 
num_voted_users                                                          99989
cast_total_facebook_likes                                                 1412
actor_3_name                                                       Drew Sidora
facenumber_in_poster                                                         3
plot_keywords                biker gang|friend|motorcycle|new mexico|road trip
movie_imdb_link              http://www.imdb.com/title/tt0486946/?ref_=fn_t...
num_user_for_reviews                                                       255
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2007
actor_2_facebook_likes                                                     330
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 713, dtype: object
color                                                                    Color
director_name                                                      Mark Dindal
num_critic_for_reviews                                                     161
duration                                                                    81
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     397
actor_2_name                                                      Fred Willard
actor_1_facebook_likes                                                     925
gross                                                              1.35382e+08
genres                                Adventure|Animation|Comedy|Family|Sci-Fi
actor_1_name                                                  Catherine O'Hara
movie_title                                                    Chicken Little 
num_voted_users                                                          63912
cast_total_facebook_likes                                                 2252
actor_3_name                                                       Amy Sedaris
facenumber_in_poster                                                         0
plot_keywords                         alien invasion|chicken|fish|friend|panic
movie_imdb_link              http://www.imdb.com/title/tt0371606/?ref_=fn_t...
num_user_for_reviews                                                       251
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 1.5e+08
title_year                                                                2005
actor_2_facebook_likes                                                     729
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       912
Name: 714, dtype: object
color                                                                    Color
director_name                                                    David Fincher
num_critic_for_reviews                                                     568
duration                                                                   149
director_facebook_likes                                                  21000
actor_3_facebook_likes                                                     625
actor_2_name                                                         Sela Ward
actor_1_facebook_likes                                                     835
gross                                                              1.67735e+08
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                     Patrick Fugit
movie_title                                                         Gone Girl 
num_voted_users                                                         569841
cast_total_facebook_likes                                                 4348
actor_3_name                                                 Emily Ratajkowski
facenumber_in_poster                                                         0
plot_keywords                based on novel|disappearance|missing person|mi...
movie_imdb_link              http://www.imdb.com/title/tt2267998/?ref_=fn_t...
num_user_for_reviews                                                      1127
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.1e+07
title_year                                                                2014
actor_2_facebook_likes                                                     812
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                    146000
Name: 715, dtype: object
color                                                                    Color
director_name                                                       Doug Liman
num_critic_for_reviews                                                     249
duration                                                                   119
director_facebook_likes                                                    218
actor_3_facebook_likes                                                      73
actor_2_name                                                     Josh Hamilton
actor_1_facebook_likes                                                   13000
gross                                                              1.21469e+08
genres                                                 Action|Mystery|Thriller
actor_1_name                                                        Matt Damon
movie_title                                               The Bourne Identity 
num_voted_users                                                         407601
cast_total_facebook_likes                                                13249
actor_3_name                                                       Nicky Naudé
facenumber_in_poster                                                         1
plot_keywords                amnesia|assassin|money|political thriller|thre...
movie_imdb_link              http://www.imdb.com/title/tt0258463/?ref_=fn_t...
num_user_for_reviews                                                       849
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2002
actor_2_facebook_likes                                                     147
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 716, dtype: object
color                                                                    Color
director_name                                                  Martin Campbell
num_critic_for_reviews                                                     137
duration                                                                   130
director_facebook_likes                                                    258
actor_3_facebook_likes                                                     345
actor_2_name                                                     Joe Don Baker
actor_1_facebook_likes                                                     394
gross                                                              1.06636e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                 Izabella Scorupco
movie_title                                                         GoldenEye 
num_voted_users                                                         199025
cast_total_facebook_likes                                                 1784
actor_3_name                                                      Tchéky Karyo
facenumber_in_poster                                                         2
plot_keywords                agent|cossack|official james bond series|russi...
movie_imdb_link              http://www.imdb.com/title/tt0113189/?ref_=fn_t...
num_user_for_reviews                                                       416
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 5.8e+07
title_year                                                                1995
actor_2_facebook_likes                                                     387
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 717, dtype: object
color                                                                    Color
director_name                                                       Simon West
num_critic_for_reviews                                                     113
duration                                                                   116
director_facebook_likes                                                    165
actor_3_facebook_likes                                                     475
actor_2_name                                                    Timothy Hutton
actor_1_facebook_likes                                                     577
gross                                                              1.02678e+08
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                 Daniel von Bargen
movie_title                                            The General's Daughter 
num_voted_users                                                          42705
cast_total_facebook_likes                                                 2321
actor_3_name                                             Clarence Williams III
facenumber_in_poster                                                         0
plot_keywords                army cid|cover up|military|murder|woman in mil...
movie_imdb_link              http://www.imdb.com/title/tt0144214/?ref_=fn_t...
num_user_for_reviews                                                       274
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 9.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     501
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       885
Name: 718, dtype: object
color                                                                    Color
director_name                                                       Peter Weir
num_critic_for_reviews                                                     213
duration                                                                   103
director_facebook_likes                                                    608
actor_3_facebook_likes                                                     576
actor_2_name                                                     Noah Emmerich
actor_1_facebook_likes                                                    2000
gross                                                              1.25603e+08
genres                                                     Comedy|Drama|Sci-Fi
actor_1_name                                                 Natascha McElhone
movie_title                                                   The Truman Show 
num_voted_users                                                         667983
cast_total_facebook_likes                                                 3698
actor_3_name                                                      Peter Krause
facenumber_in_poster                                                         1
plot_keywords                controlled environment|fictional reality show|...
movie_imdb_link              http://www.imdb.com/title/tt0120382/?ref_=fn_t...
num_user_for_reviews                                                       877
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                1998
actor_2_facebook_likes                                                     617
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     18000
Name: 719, dtype: object
color                                                                    Color
director_name                                                   Brenda Chapman
num_critic_for_reviews                                                     120
duration                                                                    99
director_facebook_likes                                                     59
actor_3_facebook_likes                                                     145
actor_2_name                                                Aria Noelle Curzon
actor_1_facebook_likes                                                     770
gross                                                              1.01218e+08
genres                       Adventure|Animation|Biography|Drama|Family|Fan...
actor_1_name                                                      Martin Short
movie_title                                               The Prince of Egypt 
num_voted_users                                                          91093
cast_total_facebook_likes                                                 1195
actor_3_name                                                       Eden Riegel
facenumber_in_poster                                                         2
plot_keywords                ancient egypt|hebrew|nudity|pharaoh|title dire...
movie_imdb_link              http://www.imdb.com/title/tt0120794/?ref_=fn_t...
num_user_for_reviews                                                       353
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   7e+07
title_year                                                                1998
actor_2_facebook_likes                                                     263
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 720, dtype: object
color                                                                    Color
director_name                                                       Steve Carr
num_critic_for_reviews                                                      81
duration                                                                    92
director_facebook_likes                                                     41
actor_3_facebook_likes                                                     522
actor_2_name                                                    Lisa Edelstein
actor_1_facebook_likes                                                    1000
gross                                                              1.04149e+08
genres                                                           Comedy|Family
actor_1_name                                                   Anjelica Huston
movie_title                                                    Daddy Day Care 
num_voted_users                                                          49486
cast_total_facebook_likes                                                 4050
actor_3_name                                                       Jeff Garlin
facenumber_in_poster                                                         1
plot_keywords                bloopers during credits|breakfast cereal|depar...
movie_imdb_link              http://www.imdb.com/title/tt0317303/?ref_=fn_t...
num_user_for_reviews                                                       116
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2003
actor_2_facebook_likes                                                     955
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       886
Name: 721, dtype: object
color                                                                    Color
director_name                                                Baltasar Kormákur
num_critic_for_reviews                                                     265
duration                                                                   109
director_facebook_likes                                                    175
actor_3_facebook_likes                                                     459
actor_2_name                                                  Patrick Fischler
actor_1_facebook_likes                                                   18000
gross                                                              7.55733e+07
genres                                      Action|Comedy|Crime|Drama|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                                            2 Guns 
num_voted_users                                                         156898
cast_total_facebook_likes                                                20148
actor_3_name                                                         Fred Ward
facenumber_in_poster                                                         1
plot_keywords                close up of breasts|female nudity|fugitive|mon...
movie_imdb_link              http://www.imdb.com/title/tt1272878/?ref_=fn_t...
num_user_for_reviews                                                       172
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.1e+07
title_year                                                                2013
actor_2_facebook_likes                                                     497
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     22000
Name: 722, dtype: object
color                                                                    Color
director_name                                                Lawrence Guterman
num_critic_for_reviews                                                     105
duration                                                                    87
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     405
actor_2_name                                                 Elizabeth Perkins
actor_1_facebook_likes                                                    3000
gross                                                              9.33752e+07
genres                                            Action|Comedy|Family|Fantasy
actor_1_name                                                    Carol Ann Susi
movie_title                                                       Cats & Dogs 
num_voted_users                                                          46031
cast_total_facebook_likes                                                 4171
actor_3_name                                                  Miriam Margolyes
facenumber_in_poster                                                         0
plot_keywords                     cartoon on tv|cat|dog|scientist|secret agent
movie_imdb_link              http://www.imdb.com/title/tt0239395/?ref_=fn_t...
num_user_for_reviews                                                       235
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2001
actor_2_facebook_likes                                                     664
imdb_score                                                                 5.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 723, dtype: object
color                                                                    Color
director_name                                                     F. Gary Gray
num_critic_for_reviews                                                     155
duration                                                                   111
director_facebook_likes                                                    473
actor_3_facebook_likes                                                      82
actor_2_name                                                   Charlize Theron
actor_1_facebook_likes                                                   26000
gross                                                              1.06126e+08
genres                                                   Action|Crime|Thriller
actor_1_name                                                     Jason Statham
movie_title                                                   The Italian Job 
num_voted_users                                                         285623
cast_total_facebook_likes                                                35084
actor_3_name                                                     Jimmy Shubert
facenumber_in_poster                                                         6
plot_keywords                      gold|heist|revenge|traffic jam|venice italy
movie_imdb_link              http://www.imdb.com/title/tt0317740/?ref_=fn_t...
num_user_for_reviews                                                       497
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2003
actor_2_facebook_likes                                                    9000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 724, dtype: object
color                                                                    Color
director_name                                                    Marc Lawrence
num_critic_for_reviews                                                     118
duration                                                                   101
director_facebook_likes                                                     30
actor_3_facebook_likes                                                     268
actor_2_name                                                       Alicia Witt
actor_1_facebook_likes                                                    1000
gross                                                              9.33078e+07
genres                                                          Comedy|Romance
actor_1_name                                                    Dorian Missick
movie_title                                                  Two Weeks Notice 
num_voted_users                                                          85673
cast_total_facebook_likes                                                 2636
actor_3_name                                                         Dana Ivey
facenumber_in_poster                                                         2
plot_keywords                      developer|divorce|lawyer|love|new york city
movie_imdb_link              http://www.imdb.com/title/tt0313737/?ref_=fn_t...
num_user_for_reviews                                                       269
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2002
actor_2_facebook_likes                                                     976
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 725, dtype: object
color                                                                    Color
director_name                                                     Eric Darnell
num_critic_for_reviews                                                     131
duration                                                                    83
director_facebook_likes                                                     35
actor_3_facebook_likes                                                     754
actor_2_name                                                       Woody Allen
actor_1_facebook_likes                                                   13000
gross                                                              9.06466e+07
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                Sylvester Stallone
movie_title                                                              Antz 
num_voted_users                                                         124641
cast_total_facebook_likes                                                25788
actor_3_name                                                     Anne Bancroft
facenumber_in_poster                                                         0
plot_keywords                               ant|friend|princess|soldier|worker
movie_imdb_link              http://www.imdb.com/title/tt0120587/?ref_=fn_t...
num_user_for_reviews                                                       289
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.05e+08
title_year                                                                1998
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 726, dtype: object
color                                                                    Color
director_name                                                Peter Billingsley
num_critic_for_reviews                                                     166
duration                                                                   113
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     721
actor_2_name                                                     Kristin Davis
actor_1_facebook_likes                                                    4000
gross                                                              1.09176e+08
genres                                                                  Comedy
actor_1_name                                                       Jon Favreau
movie_title                                                   Couples Retreat 
num_voted_users                                                          83506
cast_total_facebook_likes                                                 8172
actor_3_name                                                       Tasha Smith
facenumber_in_poster                                                         6
plot_keywords                        couple|island|marriage|tropical|voyeurism
movie_imdb_link              http://www.imdb.com/title/tt1078940/?ref_=fn_t...
num_user_for_reviews                                                       144
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2009
actor_2_facebook_likes                                                     722
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 727, dtype: object
color                                                                    Color
director_name                                                       Tony Scott
num_critic_for_reviews                                                      60
duration                                                                   107
director_facebook_likes                                                  12000
actor_3_facebook_likes                                                     695
actor_2_name                                                     Robert Duvall
actor_1_facebook_likes                                                   10000
gross                                                              8.26707e+07
genres                                                      Action|Drama|Sport
actor_1_name                                                        Tom Cruise
movie_title                                                   Days of Thunder 
num_voted_users                                                          60476
cast_total_facebook_likes                                                14006
actor_3_name                                                       Randy Quaid
facenumber_in_poster                                                         0
plot_keywords                     driver|hot shot|racing|stock car driver|team
movie_imdb_link              http://www.imdb.com/title/tt0099371/?ref_=fn_t...
num_user_for_reviews                                                        97
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                1990
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 728, dtype: object
color                                                                    Color
director_name                                                    Adam Shankman
num_critic_for_reviews                                                      77
duration                                                                    94
director_facebook_likes                                                    163
actor_3_facebook_likes                                                    2000
actor_2_name                                                       Tom Welling
actor_1_facebook_likes                                                   12000
gross                                                              8.25695e+07
genres                                                 Adventure|Comedy|Family
actor_1_name                                                    Taylor Lautner
movie_title                                            Cheaper by the Dozen 2 
num_voted_users                                                          42737
cast_total_facebook_likes                                                20348
actor_3_name                                                     Alyson Stoner
facenumber_in_poster                                                         6
plot_keywords                  children|competition|rival|second part|vacation
movie_imdb_link              http://www.imdb.com/title/tt0452598/?ref_=fn_t...
num_user_for_reviews                                                       128
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2005
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       781
Name: 729, dtype: object
color                                                                    Color
director_name                                                         Wes Ball
num_critic_for_reviews                                                     249
duration                                                                   132
director_facebook_likes                                                     47
actor_3_facebook_likes                                                     240
actor_2_name                                                       Lili Taylor
actor_1_facebook_likes                                                     988
gross                                                              8.16876e+07
genres                                                  Action|Sci-Fi|Thriller
actor_1_name                                                       Ki Hong Lee
movie_title                                                 The Scorch Trials 
num_voted_users                                                         138246
cast_total_facebook_likes                                                 2517
actor_3_name                                                      Rosa Salazar
facenumber_in_poster                                                         0
plot_keywords                           desert|disease|escape|resistance|virus
movie_imdb_link              http://www.imdb.com/title/tt4046784/?ref_=fn_t...
num_user_for_reviews                                                       360
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.1e+07
title_year                                                                2015
actor_2_facebook_likes                                                     960
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     24000
Name: 730, dtype: object
color                                                                    Color
director_name                                                      Ryan Murphy
num_critic_for_reviews                                                     213
duration                                                                   140
director_facebook_likes                                                    708
actor_3_facebook_likes                                                     745
actor_2_name                                                     Julia Roberts
actor_1_facebook_likes                                                   11000
gross                                                               8.0574e+07
genres                                                           Drama|Romance
actor_1_name                                                      James Franco
movie_title                                                     Eat Pray Love 
num_voted_users                                                          63493
cast_total_facebook_likes                                                20440
actor_3_name                                                      Billy Crudup
facenumber_in_poster                                                         1
plot_keywords                divorce|emotional balance|female protagonist|i...
movie_imdb_link              http://www.imdb.com/title/tt0879870/?ref_=fn_t...
num_user_for_reviews                                                       302
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2010
actor_2_facebook_likes                                                    8000
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     26000
Name: 731, dtype: object
color                                                                    Color
director_name                                                     Brett Ratner
num_critic_for_reviews                                                     121
duration                                                                   125
director_facebook_likes                                                    420
actor_3_facebook_likes                                                     627
actor_2_name                                                       Don Cheadle
actor_1_facebook_likes                                                   12000
gross                                                              7.57641e+07
genres                                            Comedy|Drama|Fantasy|Romance
actor_1_name                                                      Nicolas Cage
movie_title                                                    The Family Man 
num_voted_users                                                          85844
cast_total_facebook_likes                                                16646
actor_3_name                                                    Amber Valletta
facenumber_in_poster                                                         1
plot_keywords                bowling|christmas|parallel universe|salesman|u...
movie_imdb_link              http://www.imdb.com/title/tt0218967/?ref_=fn_t...
num_user_for_reviews                                                       322
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2000
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 732, dtype: object
color                                                                    Color
director_name                                                 Robert Schwentke
num_critic_for_reviews                                                     315
duration                                                                   111
director_facebook_likes                                                    124
actor_3_facebook_likes                                                     357
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   13000
gross                                                              9.03569e+07
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                                      Bruce Willis
movie_title                                                               RED 
num_voted_users                                                         238916
cast_total_facebook_likes                                                24928
actor_3_name                                                 Jaqueline Fleming
facenumber_in_poster                                                         4
plot_keywords                cia|female assassin|interrogation|office cubic...
movie_imdb_link              http://www.imdb.com/title/tt1245526/?ref_=fn_t...
num_user_for_reviews                                                       328
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.8e+07
title_year                                                                2010
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     32000
Name: 733, dtype: object
color                                                                    Color
director_name                                                     Oliver Stone
num_critic_for_reviews                                                     171
duration                                                                   156
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Dennis Quaid
actor_1_facebook_likes                                                   14000
gross                                                              7.55308e+07
genres                                                             Drama|Sport
actor_1_name                                                         Al Pacino
movie_title                                                  Any Given Sunday 
num_voted_users                                                          97047
cast_total_facebook_likes                                                20761
actor_3_name                                                         LL Cool J
facenumber_in_poster                                                         5
plot_keywords                    breasts|coach|football|in medias res|vomiting
movie_imdb_link              http://www.imdb.com/title/tt0146838/?ref_=fn_t...
num_user_for_reviews                                                       452
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 734, dtype: object
color                                                                    Color
director_name                                                   Robert Redford
num_critic_for_reviews                                                      96
duration                                                                   170
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     380
actor_2_name                                              Kristin Scott Thomas
actor_1_facebook_likes                                                   19000
gross                                                              7.53708e+07
genres                                                   Drama|Romance|Western
actor_1_name                                                Scarlett Johansson
movie_title                                               The Horse Whisperer 
num_voted_users                                                          32353
cast_total_facebook_likes                                                20683
actor_3_name                                                   Jessalyn Gilsig
facenumber_in_poster                                                         0
plot_keywords                           grace|groom|horse|montana|western u.s.
movie_imdb_link              http://www.imdb.com/title/tt0119314/?ref_=fn_t...
num_user_for_reviews                                                       263
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                1998
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 735, dtype: object
color                                                                    Color
director_name                                                     Michael Mann
num_critic_for_reviews                                                     299
duration                                                                   120
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     680
actor_2_name                                                Jada Pinkett Smith
actor_1_facebook_likes                                                   10000
gross                                                              1.00003e+08
genres                                                    Crime|Drama|Thriller
actor_1_name                                                        Tom Cruise
movie_title                                                        Collateral 
num_voted_users                                                         293662
cast_total_facebook_likes                                                13581
actor_3_name                                                        Debi Mazar
facenumber_in_poster                                                         0
plot_keywords                city by night|contract killer|driving at night...
movie_imdb_link              http://www.imdb.com/title/tt0369339/?ref_=fn_t...
num_user_for_reviews                                                       836
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     851
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 736, dtype: object
color                                                                    Color
director_name                                                    Chuck Russell
num_critic_for_reviews                                                     167
duration                                                                   100
director_facebook_likes                                                     55
actor_3_facebook_likes                                                     416
actor_2_name                                                        Roger Rees
actor_1_facebook_likes                                                   12000
gross                                                              9.03417e+07
genres                                       Action|Adventure|Fantasy|Thriller
actor_1_name                                                    Dwayne Johnson
movie_title                                                 The Scorpion King 
num_voted_users                                                         102129
cast_total_facebook_likes                                                14611
actor_3_name                                                      Bernard Hill
facenumber_in_poster                                                         4
plot_keywords                           desert|king|showdown|sorceress|warrior
movie_imdb_link              http://www.imdb.com/title/tt0277296/?ref_=fn_t...
num_user_for_reviews                                                       432
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2002
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 737, dtype: object
color                                                                    Color
director_name                                                      Jay Russell
num_critic_for_reviews                                                     125
duration                                                                   115
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     579
actor_2_name                                                     Jay Hernandez
actor_1_facebook_likes                                                    2000
gross                                                              7.45408e+07
genres                                                   Action|Drama|Thriller
actor_1_name                                                       Billy Burke
movie_title                                                         Ladder 49 
num_voted_users                                                          48753
cast_total_facebook_likes                                                 4496
actor_3_name                                                   Jacinda Barrett
facenumber_in_poster                                                         2
plot_keywords                death of husband|fire|firefighter|funeral|main...
movie_imdb_link              http://www.imdb.com/title/tt0349710/?ref_=fn_t...
num_user_for_reviews                                                       323
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2004
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 738, dtype: object
color                                                                    Color
director_name                                            Christopher McQuarrie
num_critic_for_reviews                                                     387
duration                                                                   130
director_facebook_likes                                                    188
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Robert Duvall
actor_1_facebook_likes                                                   10000
gross                                                              8.00336e+07
genres                                           Action|Crime|Mystery|Thriller
actor_1_name                                                        Tom Cruise
movie_title                                                      Jack Reacher 
num_voted_users                                                         226570
cast_total_facebook_likes                                                16385
actor_3_name                                                     David Oyelowo
facenumber_in_poster                                                         2
plot_keywords                coma|mysterious villain|police chase|shooting ...
movie_imdb_link              http://www.imdb.com/title/tt0790724/?ref_=fn_t...
num_user_for_reviews                                                       448
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2012
actor_2_facebook_likes                                                    3000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     38000
Name: 739, dtype: object
color                                                                    Color
director_name                                                     Renny Harlin
num_critic_for_reviews                                                     199
duration                                                                   105
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     811
actor_2_name                                                  Michael Rapaport
actor_1_facebook_likes                                                    1000
gross                                                              7.36481e+07
genres                                                  Action|Sci-Fi|Thriller
actor_1_name                                                         LL Cool J
movie_title                                                     Deep Blue Sea 
num_voted_users                                                          99043
cast_total_facebook_likes                                                 3697
actor_3_name                                                   Saffron Burrows
facenumber_in_poster                                                         1
plot_keywords                alzheimer's disease|experiment|human versus sh...
movie_imdb_link              http://www.imdb.com/title/tt0149261/?ref_=fn_t...
num_user_for_reviews                                                       643
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                1999
actor_2_facebook_likes                                                     975
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 740, dtype: object
color                                                                    Color
director_name                                                     Kenny Ortega
num_critic_for_reviews                                                     136
duration                                                                   111
director_facebook_likes                                                    197
actor_3_facebook_likes                                                       6
actor_2_name                                                         Mekia Cox
actor_1_facebook_likes                                                     433
gross                                                              7.18444e+07
genres                                                       Documentary|Music
actor_1_name                                            Misha Gabriel Hamilton
movie_title                                                        This Is It 
num_voted_users                                                          33158
cast_total_facebook_likes                                                  679
actor_3_name                                                       Judith Hill
facenumber_in_poster                                                         0
plot_keywords                2000s|box office hit|comeback|rehearsal|year 2009
movie_imdb_link              http://www.imdb.com/title/tt1477715/?ref_=fn_t...
num_user_for_reviews                                                       223
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2009
actor_2_facebook_likes                                                     208
imdb_score                                                                 7.3
aspect_ratio                                                              1.78
movie_facebook_likes                                                         0
Name: 741, dtype: object
color                                                                    Color
director_name                                                Steven Soderbergh
num_critic_for_reviews                                                     436
duration                                                                   106
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     175
actor_2_name                                           Monique Gabriela Curnen
actor_1_facebook_likes                                                   13000
gross                                                              7.56387e+07
genres                                                          Drama|Thriller
actor_1_name                                                        Matt Damon
movie_title                                                         Contagion 
num_voted_users                                                         180479
cast_total_facebook_likes                                                13634
actor_3_name                                                      Griffin Kane
facenumber_in_poster                                                         4
plot_keywords                             contagion|cure|infection|panic|virus
movie_imdb_link              http://www.imdb.com/title/tt1598778/?ref_=fn_t...
num_user_for_reviews                                                       411
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2011
actor_2_facebook_likes                                                     240
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     42000
Name: 742, dtype: object
color                                                                    Color
director_name                                                    David McNally
num_critic_for_reviews                                                      73
duration                                                                    89
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     226
actor_2_name                                                       Dyan Cannon
actor_1_facebook_likes                                                     658
gross                                                               6.6735e+07
genres                                           Action|Adventure|Comedy|Crime
actor_1_name                                                    Estella Warren
movie_title                                                     Kangaroo Jack 
num_voted_users                                                          23476
cast_total_facebook_likes                                                 1233
actor_3_name                                                       Bill Hunter
facenumber_in_poster                                                         0
plot_keywords                          australia|body paint|kangaroo|mob|money
movie_imdb_link              http://www.imdb.com/title/tt0257568/?ref_=fn_t...
num_user_for_reviews                                                       181
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2003
actor_2_facebook_likes                                                     257
imdb_score                                                                 4.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       858
Name: 743, dtype: object
color                                                          Black and White
director_name                                                     Henry Selick
num_critic_for_reviews                                                     310
duration                                                                   100
director_facebook_likes                                                    253
actor_3_facebook_likes                                                      57
actor_2_name                                                       Dawn French
actor_1_facebook_likes                                                     309
gross                                                              7.52801e+07
genres                                                Animation|Family|Fantasy
actor_1_name                                                 Jennifer Saunders
movie_title                                                          Coraline 
num_voted_users                                                         143121
cast_total_facebook_likes                                                  647
actor_3_name                                                      John Hodgman
facenumber_in_poster                                                         1
plot_keywords                dream|new home|parallel worlds|scissors|secret...
movie_imdb_link              http://www.imdb.com/title/tt0327597/?ref_=fn_t...
num_user_for_reviews                                                       279
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2009
actor_2_facebook_likes                                                     229
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 744, dtype: object
color                                                                    Color
director_name                                               M. Night Shyamalan
num_critic_for_reviews                                                     323
duration                                                                    91
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     751
actor_2_name                                                         Alan Ruck
actor_1_facebook_likes                                                   11000
gross                                                              6.45059e+07
genres                                                         Sci-Fi|Thriller
actor_1_name                                                   Zooey Deschanel
movie_title                                                     The Happening 
num_voted_users                                                         163130
cast_total_facebook_likes                                                13654
actor_3_name                                                  Kristen Connolly
facenumber_in_poster                                                         0
plot_keywords                                   bee|nature|park|school|teacher
movie_imdb_link              http://www.imdb.com/title/tt0949731/?ref_=fn_t...
num_user_for_reviews                                                      1264
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.8e+07
title_year                                                                2008
actor_2_facebook_likes                                                     946
imdb_score                                                                   5
aspect_ratio                                                              1.85
movie_facebook_likes                                                      6000
Name: 745, dtype: object
color                                                                    Color
director_name                                                       Tony Scott
num_critic_for_reviews                                                     171
duration                                                                   146
director_facebook_likes                                                  12000
actor_3_facebook_likes                                                     451
actor_2_name                                                    Radha Mitchell
actor_1_facebook_likes                                                   18000
gross                                                              7.78625e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                                       Man on Fire 
num_voted_users                                                         266310
cast_total_facebook_likes                                                20454
actor_3_name                                                Giancarlo Giannini
facenumber_in_poster                                                         2
plot_keywords                bodyguard|journalist|kidnapping|mexico|police ...
movie_imdb_link              http://www.imdb.com/title/tt0328107/?ref_=fn_t...
num_user_for_reviews                                                       690
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2004
actor_2_facebook_likes                                                     992
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     14000
Name: 746, dtype: object
color                                                                    Color
director_name                                                    Brian Robbins
num_critic_for_reviews                                                      76
duration                                                                    98
director_facebook_likes                                                     48
actor_3_facebook_likes                                                     722
actor_2_name                                                  Joel David Moore
actor_1_facebook_likes                                                   21000
gross                                                              6.11129e+07
genres                                                   Comedy|Family|Fantasy
actor_1_name                                                 Robert Downey Jr.
movie_title                                                    The Shaggy Dog 
num_voted_users                                                          14888
cast_total_facebook_likes                                                24664
actor_3_name                                                     Kristin Davis
facenumber_in_poster                                                         0
plot_keywords                animal as human|dog movie|elevator|human becom...
movie_imdb_link              http://www.imdb.com/title/tt0393735/?ref_=fn_t...
num_user_for_reviews                                                        83
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     936
imdb_score                                                                 4.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       747
Name: 747, dtype: object
color                                                                    Color
director_name                                                    Todd Phillips
num_critic_for_reviews                                                     173
duration                                                                   101
director_facebook_likes                                                    480
actor_3_facebook_likes                                                     767
actor_2_name                                                    Carmen Electra
actor_1_facebook_likes                                                     881
gross                                                              8.82002e+07
genres                                                            Comedy|Crime
actor_1_name                                                        Snoop Dogg
movie_title                                                   Starsky & Hutch 
num_voted_users                                                         120795
cast_total_facebook_likes                                                 3943
actor_3_name                                                   Fred Williamson
facenumber_in_poster                                                         5
plot_keywords                              cocaine|cop|criminal|partner|police
movie_imdb_link              http://www.imdb.com/title/tt0335438/?ref_=fn_t...
num_user_for_reviews                                                       308
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2004
actor_2_facebook_likes                                                     869
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 748, dtype: object
color                                                                    Color
director_name                                                     Brian Levant
num_critic_for_reviews                                                      81
duration                                                                    94
director_facebook_likes                                                     32
actor_3_facebook_likes                                                     626
actor_2_name                                                     Harvey Korman
actor_1_facebook_likes                                                     854
gross                                                              6.05736e+07
genres                                                           Comedy|Family
actor_1_name                                                       Jim Belushi
movie_title                                                Jingle All the Way 
num_voted_users                                                          68406
cast_total_facebook_likes                                                 4530
actor_3_name                                                        Jake Lloyd
facenumber_in_poster                                                         1
plot_keywords                          action figure|christmas|hero|karate|toy
movie_imdb_link              http://www.imdb.com/title/tt0116705/?ref_=fn_t...
num_user_for_reviews                                                       162
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                1996
actor_2_facebook_likes                                                     628
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 749, dtype: object
color                                                                    Color
director_name                                               Guillermo del Toro
num_critic_for_reviews                                                     242
duration                                                                   132
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     160
actor_2_name                                                      Rupert Evans
actor_1_facebook_likes                                                     366
gross                                                              5.90351e+07
genres                                            Action|Fantasy|Horror|Sci-Fi
actor_1_name                                                      James Babson
movie_title                                                           Hellboy 
num_voted_users                                                         244566
cast_total_facebook_likes                                                 1112
actor_3_name                                                      Brian Steele
facenumber_in_poster                                                         1
plot_keywords                               assassin|demon|hero|nazi|superhero
movie_imdb_link              http://www.imdb.com/title/tt0167190/?ref_=fn_t...
num_user_for_reviews                                                       597
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.6e+07
title_year                                                                2004
actor_2_facebook_likes                                                     334
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 750, dtype: object
color                                                                    Color
director_name                                                  Steven Zaillian
num_critic_for_reviews                                                     110
duration                                                                   115
director_facebook_likes                                                    234
actor_3_facebook_likes                                                     521
actor_2_name                                                  Kathleen Quinlan
actor_1_facebook_likes                                                    3000
gross                                                              5.67029e+07
genres                                                                   Drama
actor_1_name                                                     Robert Duvall
movie_title                                                    A Civil Action 
num_voted_users                                                          23302
cast_total_facebook_likes                                                 4713
actor_3_name                                                    Sydney Pollack
facenumber_in_poster                                                         1
plot_keywords                        1980s|law firm|lawsuit|lawyer|toxic waste
movie_imdb_link              http://www.imdb.com/title/tt0120633/?ref_=fn_t...
num_user_for_reviews                                                       181
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                1998
actor_2_facebook_likes                                                     552
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 751, dtype: object
color                                                                    Color
director_name                                                     Chris Butler
num_critic_for_reviews                                                     328
duration                                                                    92
director_facebook_likes                                                     28
actor_3_facebook_likes                                                     586
actor_2_name                                                  Kodi Smit-McPhee
actor_1_facebook_likes                                                   10000
gross                                                              5.59946e+07
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                     Anna Kendrick
movie_title                                                        ParaNorman 
num_voted_users                                                          72287
cast_total_facebook_likes                                                13597
actor_3_name                                                    Elaine Stritch
facenumber_in_poster                                                         0
plot_keywords                                 curse|ghost|outcast|witch|zombie
movie_imdb_link              http://www.imdb.com/title/tt1623288/?ref_=fn_t...
num_user_for_reviews                                                       176
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2012
actor_2_facebook_likes                                                     884
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 752, dtype: object
color                                                                    Color
director_name                                              Michael Caton-Jones
num_critic_for_reviews                                                      83
duration                                                                   124
director_facebook_likes                                                    105
actor_3_facebook_likes                                                     460
actor_2_name                                                      Bruce Willis
actor_1_facebook_likes                                                   24000
gross                                                              5.49106e+07
genres                                         Action|Adventure|Crime|Thriller
actor_1_name                                                      J.K. Simmons
movie_title                                                        The Jackal 
num_voted_users                                                          88225
cast_total_facebook_likes                                                38227
actor_3_name                                                    Sophie Okonedo
facenumber_in_poster                                                         0
plot_keywords                                  assassin|fbi|ira|jackal|russian
movie_imdb_link              http://www.imdb.com/title/tt0119395/?ref_=fn_t...
num_user_for_reviews                                                       227
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                1997
actor_2_facebook_likes                                                   13000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 753, dtype: object
color                                                                    Color
director_name                                                         John Woo
num_critic_for_reviews                                                     196
duration                                                                   119
director_facebook_likes                                                    610
actor_3_facebook_likes                                                     716
actor_2_name                                                        Joe Morton
actor_1_facebook_likes                                                     834
gross                                                              5.37893e+07
genres                                          Action|Mystery|Sci-Fi|Thriller
actor_1_name                                                   Ivana Milicevic
movie_title                                                          Paycheck 
num_voted_users                                                          89816
cast_total_facebook_likes                                                 3637
actor_3_name                                                     Callum Rennie
facenumber_in_poster                                                         0
plot_keywords                   anti hero|babe scientist|engineer|memory|money
movie_imdb_link              http://www.imdb.com/title/tt0338337/?ref_=fn_t...
num_user_for_reviews                                                       347
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2003
actor_2_facebook_likes                                                     780
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 754, dtype: object
color                                                                    Color
director_name                                                        Jon Avnet
num_critic_for_reviews                                                      34
duration                                                                   124
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     672
actor_2_name                                                 Stockard Channing
actor_1_facebook_likes                                                    1000
gross                                                              5.10458e+07
genres                                                           Drama|Romance
actor_1_name                                                      Joe Mantegna
movie_title                                               Up Close & Personal 
num_voted_users                                                          11370
cast_total_facebook_likes                                                 3653
actor_3_name                                                      Raymond Cruz
facenumber_in_poster                                                         2
plot_keywords                journalism|news anchor|newscast|newscaster|tv ...
movie_imdb_link              http://www.imdb.com/title/tt0118055/?ref_=fn_t...
num_user_for_reviews                                                        54
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                1996
actor_2_facebook_likes                                                     944
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       829
Name: 755, dtype: object
color                                                                    Color
director_name                                                         Sam Fell
num_critic_for_reviews                                                     118
duration                                                                    93
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     903
actor_2_name                                                 Matthew Broderick
actor_1_facebook_likes                                                    9000
gross                                                              5.08188e+07
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                       Emma Watson
movie_title                                            The Tale of Despereaux 
num_voted_users                                                          31209
cast_total_facebook_likes                                                13403
actor_3_name                                                    Frank Langella
facenumber_in_poster                                                         0
plot_keywords                               book|darkness|dungeon|princess|rat
movie_imdb_link              http://www.imdb.com/title/tt0420238/?ref_=fn_t...
num_user_for_reviews                                                       106
language                                                               English
country                                                                     UK
content_rating                                                               G
budget                                                                   6e+07
title_year                                                                2008
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 756, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                       8
duration                                                                    22
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     402
actor_2_name                                                     Oliver Hudson
actor_1_facebook_likes                                                     732
gross                                                                      NaN
genres                                                          Comedy|Romance
actor_1_name                                                    Bianca Kajlich
movie_title                                   Rules of Engagement             
num_voted_users                                                          26404
cast_total_facebook_likes                                                 2064
actor_3_name                                                      Adhir Kalyan
facenumber_in_poster                                                         3
plot_keywords                 fiance|fiancee|magazine editor|naivety|womanizer
movie_imdb_link              http://www.imdb.com/title/tt0790772/?ref_=fn_t...
num_user_for_reviews                                                        41
language                                                               English
country                                                                    USA
content_rating                                                           TV-PG
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     607
imdb_score                                                                 7.3
aspect_ratio                                                              1.78
movie_facebook_likes                                                         0
Name: 757, dtype: object
color                                                                    Color
director_name                                                    Kevin Donovan
num_critic_for_reviews                                                      81
duration                                                                    98
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     107
actor_2_name                                                        Debi Mazar
actor_1_facebook_likes                                                     966
gross                                                              5.01892e+07
genres                                                    Action|Comedy|Sci-Fi
actor_1_name                                                      Romany Malco
movie_title                                                        The Tuxedo 
num_voted_users                                                          61966
cast_total_facebook_likes                                                 2018
actor_3_name                                                    Ritchie Coster
facenumber_in_poster                                                         2
plot_keywords                    chauffeur|hospital|secret agent|spying|tuxedo
movie_imdb_link              http://www.imdb.com/title/tt0290095/?ref_=fn_t...
num_user_for_reviews                                                       207
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2002
actor_2_facebook_likes                                                     680
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       797
Name: 758, dtype: object
color                                                                    Color
director_name                                                     Geoff Murphy
num_critic_for_reviews                                                      47
duration                                                                    92
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     488
actor_2_name                                                      Brenda Bakke
actor_1_facebook_likes                                                     789
gross                                                              5.00241e+07
genres                                                         Action|Thriller
actor_1_name                                                      Peter Greene
movie_title                                     Under Siege 2: Dark Territory 
num_voted_users                                                          35918
cast_total_facebook_likes                                                 2318
actor_3_name                                                Patrick Kilpatrick
facenumber_in_poster                                                         1
plot_keywords                         colorado|niece|satellite|terrorist|train
movie_imdb_link              http://www.imdb.com/title/tt0114781/?ref_=fn_t...
num_user_for_reviews                                                       126
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                1995
actor_2_facebook_likes                                                     520
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 759, dtype: object
color                                                                    Color
director_name                                                  Kenneth Branagh
num_critic_for_reviews                                                     313
duration                                                                   105
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     288
actor_2_name                                                      Nonso Anozie
actor_1_facebook_likes                                                     539
gross                                                              5.05491e+07
genres                                                   Action|Drama|Thriller
actor_1_name                                                        Colm Feore
movie_title                                         Jack Ryan: Shadow Recruit 
num_voted_users                                                          99035
cast_total_facebook_likes                                                 1411
actor_3_name                                                        Gemma Chan
facenumber_in_poster                                                         3
plot_keywords                   covert analyst|marine|russian|spy|stock market
movie_imdb_link              http://www.imdb.com/title/tt1205537/?ref_=fn_t...
num_user_for_reviews                                                       289
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2014
actor_2_facebook_likes                                                     394
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     17000
Name: 760, dtype: object
color                                                                    Color
director_name                                                 David O. Russell
num_critic_for_reviews                                                     315
duration                                                                   124
director_facebook_likes                                                    737
actor_3_facebook_likes                                                   14000
actor_2_name                                                    Robert De Niro
actor_1_facebook_likes                                                   34000
gross                                                              5.64435e+07
genres                                                  Biography|Comedy|Drama
actor_1_name                                                 Jennifer Lawrence
movie_title                                                               Joy 
num_voted_users                                                          75329
cast_total_facebook_likes                                                75793
actor_3_name                                                    Bradley Cooper
facenumber_in_poster                                                         3
plot_keywords                based on real person|female inventor|mop|sales...
movie_imdb_link              http://www.imdb.com/title/tt2446980/?ref_=fn_t...
num_user_for_reviews                                                       256
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2015
actor_2_facebook_likes                                                   22000
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     24000
Name: 761, dtype: object
color                                                                    Color
director_name                                                     Babak Najafi
num_critic_for_reviews                                                     225
duration                                                                    99
director_facebook_likes                                                     24
actor_3_facebook_likes                                                     864
actor_2_name                                                    Radha Mitchell
actor_1_facebook_likes                                                   18000
gross                                                              6.24013e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                     Gerard Butler
movie_title                                                 London Has Fallen 
num_voted_users                                                          69484
cast_total_facebook_likes                                                20276
actor_3_name                                                     Julian Kostov
facenumber_in_poster                                                         3
plot_keywords                     british|funeral|good versus evil|mole|sequel
movie_imdb_link              http://www.imdb.com/title/tt3300542/?ref_=fn_t...
num_user_for_reviews                                                       323
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                2016
actor_2_facebook_likes                                                     992
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     28000
Name: 762, dtype: object
color                                                                    Color
director_name                                               Jean-Pierre Jeunet
num_critic_for_reviews                                                     223
duration                                                                   116
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     672
actor_2_name                                                   Michael Wincott
actor_1_facebook_likes                                                    1000
gross                                                              4.77486e+07
genres                                                    Action|Horror|Sci-Fi
actor_1_name                                                      Gary Dourdan
movie_title                                               Alien: Resurrection 
num_voted_users                                                         170179
cast_total_facebook_likes                                                 3090
actor_3_name                                                      Raymond Cruz
facenumber_in_poster                                                         0
plot_keywords                             alien|blood|breeding|clone|scientist
movie_imdb_link              http://www.imdb.com/title/tt0118583/?ref_=fn_t...
num_user_for_reviews                                                       656
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     720
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 763, dtype: object
color                                                                    Color
director_name                                                    Antoine Fuqua
num_critic_for_reviews                                                     198
duration                                                                   124
director_facebook_likes                                                    845
actor_3_facebook_likes                                                     295
actor_2_name                                                        Ned Beatty
actor_1_facebook_likes                                                     650
gross                                                              4.69752e+07
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                      Tate Donovan
movie_title                                                           Shooter 
num_voted_users                                                         256213
cast_total_facebook_likes                                                 1640
actor_3_name                                                    Louis Ferreira
facenumber_in_poster                                                         0
plot_keywords                 colonel|ethiopia|marksman|on the run|rangefinder
movie_imdb_link              http://www.imdb.com/title/tt0822854/?ref_=fn_t...
num_user_for_reviews                                                       338
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.1e+07
title_year                                                                2007
actor_2_facebook_likes                                                     467
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 764, dtype: object
color                                                                    Color
director_name                                                   Graham Annable
num_critic_for_reviews                                                     219
duration                                                                    96
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     642
actor_2_name                                                 Dee Bradley Baker
actor_1_facebook_likes                                                     874
gross                                                              5.08076e+07
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                            Isaac Hempstead Wright
movie_title                                                     The Boxtrolls 
num_voted_users                                                          40883
cast_total_facebook_likes                                                 3151
actor_3_name                                                      Tracy Morgan
facenumber_in_poster                                                         3
plot_keywords                chase|puppet animation|red hat|stop motion ani...
movie_imdb_link              http://www.imdb.com/title/tt0787474/?ref_=fn_t...
num_user_for_reviews                                                       122
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2014
actor_2_facebook_likes                                                     668
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 765, dtype: object
color                                                                    Color
director_name                                                    Griffin Dunne
num_critic_for_reviews                                                      92
duration                                                                   104
director_facebook_likes                                                    165
actor_3_facebook_likes                                                     944
actor_2_name                                                      Dianne Wiest
actor_1_facebook_likes                                                    1000
gross                                                              4.66112e+07
genres                                            Comedy|Drama|Fantasy|Romance
actor_1_name                                                     Goran Visnjic
movie_title                                                   Practical Magic 
num_voted_users                                                          55749
cast_total_facebook_likes                                                 4294
actor_3_name                                                 Stockard Channing
facenumber_in_poster                                                         1
plot_keywords                                    curse|death|island|love|magic
movie_imdb_link              http://www.imdb.com/title/tt0120791/?ref_=fn_t...
num_user_for_reviews                                                       257
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.8e+07
title_year                                                                1998
actor_2_facebook_likes                                                     967
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 766, dtype: object
color                                                                    Color
director_name                                                        Phil Lord
num_critic_for_reviews                                                     435
duration                                                                   100
director_facebook_likes                                                     97
actor_3_facebook_likes                                                    2000
actor_2_name                                                      Will Ferrell
actor_1_facebook_likes                                                   11000
gross                                                              2.57756e+08
genres                        Action|Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                    Morgan Freeman
movie_title                                                    The Lego Movie 
num_voted_users                                                         246698
cast_total_facebook_likes                                                22128
actor_3_name                                                       Alison Brie
facenumber_in_poster                                                         0
plot_keywords                based on toy|dual personality|evil businessman...
movie_imdb_link              http://www.imdb.com/title/tt1490017/?ref_=fn_t...
num_user_for_reviews                                                       471
language                                                               English
country                                                              Australia
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2014
actor_2_facebook_likes                                                    8000
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     64000
Name: 767, dtype: object
color                                                                    Color
director_name                                                     John Pasquin
num_critic_for_reviews                                                     111
duration                                                                   115
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     642
actor_2_name                                                    Diedrich Bader
actor_1_facebook_likes                                                    1000
gross                                                              4.84722e+07
genres                                                     Action|Comedy|Crime
actor_1_name                                                    Eileen Brennan
movie_title                           Miss Congeniality 2: Armed and Fabulous 
num_voted_users                                                          51252
cast_total_facebook_likes                                                 4305
actor_3_name                                                    Treat Williams
facenumber_in_poster                                                         2
plot_keywords                bodyguard|fbi|fbi agent|female protagonist|und...
movie_imdb_link              http://www.imdb.com/title/tt0385307/?ref_=fn_t...
num_user_for_reviews                                                       156
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     759
imdb_score                                                                   5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       621
Name: 768, dtype: object
color                                                                    Color
director_name                                                       Rob Bowman
num_critic_for_reviews                                                     138
duration                                                                   101
director_facebook_likes                                                     38
actor_3_facebook_likes                                                   11000
actor_2_name                                                     Gerard Butler
actor_1_facebook_likes                                                   23000
gross                                                              4.30606e+07
genres                                Action|Adventure|Fantasy|Sci-Fi|Thriller
actor_1_name                                                    Christian Bale
movie_title                                                     Reign of Fire 
num_voted_users                                                         107859
cast_total_facebook_likes                                                53024
actor_3_name                                               Matthew McConaughey
facenumber_in_poster                                                         0
plot_keywords                castle|dragon|fire breathing dragon|militia|su...
movie_imdb_link              http://www.imdb.com/title/tt0253556/?ref_=fn_t...
num_user_for_reviews                                                       569
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2002
actor_2_facebook_likes                                                   18000
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 769, dtype: object
color                                                                    Color
director_name                                                  Ruben Fleischer
num_critic_for_reviews                                                     415
duration                                                                   113
director_facebook_likes                                                    181
actor_3_facebook_likes                                                     300
actor_2_name                                                    Brandon Molale
actor_1_facebook_likes                                                   33000
gross                                                              4.59967e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                      Ryan Gosling
movie_title                                                    Gangster Squad 
num_voted_users                                                         173530
cast_total_facebook_likes                                                34738
actor_3_name                                                     Wade Williams
facenumber_in_poster                                                         3
plot_keywords                good versus evil|machine gun|mobster|police vi...
movie_imdb_link              http://www.imdb.com/title/tt1321870/?ref_=fn_t...
num_user_for_reviews                                                       264
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                2013
actor_2_facebook_likes                                                     301
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     40000
Name: 770, dtype: object
color                                                                    Color
director_name                                                     Harold Ramis
num_critic_for_reviews                                                     170
duration                                                                   100
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     485
actor_2_name                                                      Oliver Platt
actor_1_facebook_likes                                                   10000
gross                                                              4.33373e+07
genres                                                        Adventure|Comedy
actor_1_name                                                      Olivia Wilde
movie_title                                                          Year One 
num_voted_users                                                          76770
cast_total_facebook_likes                                                12258
actor_3_name                                                   Xander Berkeley
facenumber_in_poster                                                         2
plot_keywords                              abraham|hunter|princess|sodom|tribe
movie_imdb_link              http://www.imdb.com/title/tt1045778/?ref_=fn_t...
num_user_for_reviews                                                       203
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2009
actor_2_facebook_likes                                                    1000
imdb_score                                                                 4.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 771, dtype: object
color                                                                    Color
director_name                                                   Clint Eastwood
num_critic_for_reviews                                                     306
duration                                                                   134
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     204
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   13000
gross                                                              3.74798e+07
genres                                           Biography|Drama|History|Sport
actor_1_name                                                        Matt Damon
movie_title                                                          Invictus 
num_voted_users                                                         124222
cast_total_facebook_likes                                                24458
actor_3_name                                                    Leleti Khumalo
facenumber_in_poster                                                         1
plot_keywords                  apartheid|nation|nelson mandela|president|rugby
movie_imdb_link              http://www.imdb.com/title/tt1057500/?ref_=fn_t...
num_user_for_reviews                                                       259
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2009
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     23000
Name: 772, dtype: object
color                                                                    Color
director_name                                                  Kevin Macdonald
num_critic_for_reviews                                                     252
duration                                                                   127
director_facebook_likes                                                    162
actor_3_facebook_likes                                                     379
actor_2_name                                                      Harry Lennix
actor_1_facebook_likes                                                   18000
gross                                                              3.69654e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                      Robin Wright
movie_title                                                     State of Play 
num_voted_users                                                         113295
cast_total_facebook_likes                                                19776
actor_3_name                                                    Michael Weston
facenumber_in_poster                                                         3
plot_keywords                congressman|conspiracy|newspaper|political con...
movie_imdb_link              http://www.imdb.com/title/tt0473705/?ref_=fn_t...
num_user_for_reviews                                                       235
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     748
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 773, dtype: object
color                                                                    Color
director_name                                                      Tony Gilroy
num_critic_for_reviews                                                     211
duration                                                                   125
director_facebook_likes                                                    209
actor_3_facebook_likes                                                     896
actor_2_name                                                     Tom Wilkinson
actor_1_facebook_likes                                                    8000
gross                                                              4.05599e+07
genres                                           Comedy|Crime|Romance|Thriller
actor_1_name                                                     Julia Roberts
movie_title                                                         Duplicity 
num_voted_users                                                          41727
cast_total_facebook_likes                                                10623
actor_3_name                                                      Denis O'Hare
facenumber_in_poster                                                         0
plot_keywords                                    ceo|dubai|product|rivalry|spy
movie_imdb_link              http://www.imdb.com/title/tt1135487/?ref_=fn_t...
num_user_for_reviews                                                       184
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2009
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 774, dtype: object
color                                                                    Color
director_name                                                    Donald Petrie
num_critic_for_reviews                                                      49
duration                                                                    94
director_facebook_likes                                                     80
actor_3_facebook_likes                                                     230
actor_2_name                                                       Ray Walston
actor_1_facebook_likes                                                    1000
gross                                                              3.68301e+07
genres                                                    Comedy|Family|Sci-Fi
actor_1_name                                           Steven Anthony Lawrence
movie_title                                               My Favorite Martian 
num_voted_users                                                          10883
cast_total_facebook_likes                                                 2151
actor_3_name                                                    Michael Lerner
facenumber_in_poster                                                         2
plot_keywords                   alien|hidden camera|martian|reporter|spaceship
movie_imdb_link              http://www.imdb.com/title/tt0120764/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     417
imdb_score                                                                 4.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       448
Name: 775, dtype: object
color                                                                    Color
director_name                                                    Clark Johnson
num_critic_for_reviews                                                     161
duration                                                                   107
director_facebook_likes                                                     69
actor_3_facebook_likes                                                     206
actor_2_name                                                      David Rasche
actor_1_facebook_likes                                                     310
gross                                                              3.62792e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                       Blair Brown
movie_title                                                      The Sentinel 
num_voted_users                                                          42144
cast_total_facebook_likes                                                 1352
actor_3_name                                                    Martin Donovan
facenumber_in_poster                                                         0
plot_keywords                first lady|framed|investigation|president|secr...
movie_imdb_link              http://www.imdb.com/title/tt0443632/?ref_=fn_t...
num_user_for_reviews                                                       213
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2006
actor_2_facebook_likes                                                     219
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       690
Name: 776, dtype: object
color                                                                    Color
director_name                                                     Jorge Blanco
num_critic_for_reviews                                                     156
duration                                                                    91
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     480
actor_2_name                                                       Gary Oldman
actor_1_facebook_likes                                                   12000
gross                                                              4.21941e+07
genres                                Adventure|Animation|Comedy|Family|Sci-Fi
actor_1_name                                                    Dwayne Johnson
movie_title                                                         Planet 51 
num_voted_users                                                          41259
cast_total_facebook_likes                                                22668
actor_3_name                                                      James Corden
facenumber_in_poster                                                         1
plot_keywords                     alien|alien planet|astronaut|planet|teenager
movie_imdb_link              http://www.imdb.com/title/tt0762125/?ref_=fn_t...
num_user_for_reviews                                                        72
language                                                               English
country                                                                  Spain
content_rating                                                              PG
budget                                                                   7e+07
title_year                                                                2009
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 777, dtype: object
color                                                                    Color
director_name                                                     Stuart Baird
num_critic_for_reviews                                                     172
duration                                                                   116
director_facebook_likes                                                     53
actor_3_facebook_likes                                                     906
actor_2_name                                                      LeVar Burton
actor_1_facebook_likes                                                   27000
gross                                                              4.31199e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                         Tom Hardy
movie_title                                                Star Trek: Nemesis 
num_voted_users                                                          58450
cast_total_facebook_likes                                                31224
actor_3_name                                                   Jonathan Frakes
facenumber_in_poster                                                         0
plot_keywords                             earth|federation|romulan|slave|space
movie_imdb_link              http://www.imdb.com/title/tt0253754/?ref_=fn_t...
num_user_for_reviews                                                       842
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2002
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 778, dtype: object
color                                                                    Color
director_name                                                        Joel Coen
num_critic_for_reviews                                                     161
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     210
actor_2_name                                                    Paul Adelstein
actor_1_facebook_likes                                                     436
gross                                                              3.50962e+07
genres                                                    Comedy|Crime|Romance
actor_1_name                                            Cedric the Entertainer
movie_title                                               Intolerable Cruelty 
num_voted_users                                                          76560
cast_total_facebook_likes                                                 1395
actor_3_name                                                       Julia Duffy
facenumber_in_poster                                                         1
plot_keywords                attorney|divorce|marriage|real estate|screwbal...
movie_imdb_link              http://www.imdb.com/title/tt0138524/?ref_=fn_t...
num_user_for_reviews                                                       322
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2003
actor_2_facebook_likes                                                     399
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 779, dtype: object
color                                                                    Color
director_name                                                    Robert Lorenz
num_critic_for_reviews                                                     239
duration                                                                   111
director_facebook_likes                                                     39
actor_3_facebook_likes                                                     461
actor_2_name                                                         Ed Lauter
actor_1_facebook_likes                                                   16000
gross                                                              3.57546e+07
genres                                                             Drama|Sport
actor_1_name                                                    Clint Eastwood
movie_title                                            Trouble with the Curve 
num_voted_users                                                          47954
cast_total_facebook_likes                                                17871
actor_3_name                                                        Bob Gunton
facenumber_in_poster                                                         0
plot_keywords                aging|baseball|baseball scout|north carolina|p...
movie_imdb_link              http://www.imdb.com/title/tt2083383/?ref_=fn_t...
num_user_for_reviews                                                       150
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2012
actor_2_facebook_likes                                                     897
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 780, dtype: object
color                                                                    Color
director_name                                                  Martin Campbell
num_critic_for_reviews                                                     258
duration                                                                   117
director_facebook_likes                                                    258
actor_3_facebook_likes                                                     896
actor_2_name                                                      Ray Winstone
actor_1_facebook_likes                                                    2000
gross                                                               4.3291e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                  Bojana Novakovic
movie_title                                                  Edge of Darkness 
num_voted_users                                                          75201
cast_total_facebook_likes                                                 7053
actor_3_name                                                      Denis O'Hare
facenumber_in_poster                                                         1
plot_keywords                activist|detective|father daughter relationshi...
movie_imdb_link              http://www.imdb.com/title/tt1226273/?ref_=fn_t...
num_user_for_reviews                                                       256
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   8e+07
title_year                                                                2010
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 781, dtype: object
color                                                                    Color
director_name                                                      Peter Hyams
num_critic_for_reviews                                                      95
duration                                                                   110
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     308
actor_2_name                                               Penelope Ann Miller
actor_1_facebook_likes                                                     510
gross                                                              3.39275e+07
genres                                          Horror|Mystery|Sci-Fi|Thriller
actor_1_name                                                      John Kapelos
movie_title                                                         The Relic 
num_voted_users                                                          19176
cast_total_facebook_likes                                                 1976
actor_3_name                                                       Chi Muoi Lo
facenumber_in_poster                                                         0
plot_keywords                     fire|helicopter|museum|police sergeant|relic
movie_imdb_link              http://www.imdb.com/title/tt0120004/?ref_=fn_t...
num_user_for_reviews                                                       165
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                1997
actor_2_facebook_likes                                                     344
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       956
Name: 782, dtype: object
color                                                                    Color
director_name                                                     Harold Ramis
num_critic_for_reviews                                                     105
duration                                                                    96
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     236
actor_2_name                                                    Cathy Moriarty
actor_1_facebook_likes                                                   22000
gross                                                              3.21222e+07
genres                                                            Comedy|Crime
actor_1_name                                                    Robert De Niro
movie_title                                                      Analyze That 
num_voted_users                                                          69319
cast_total_facebook_likes                                                22889
actor_3_name                                                     Joe Viterelli
facenumber_in_poster                                                         1
plot_keywords                   blonde|mafia|mental illness|prison|second part
movie_imdb_link              http://www.imdb.com/title/tt0289848/?ref_=fn_t...
num_user_for_reviews                                                       138
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                2002
actor_2_facebook_likes                                                     394
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       846
Name: 783, dtype: object
color                                                                    Color
director_name                                                        Jon Avnet
num_critic_for_reviews                                                     198
duration                                                                   101
director_facebook_likes                                                     50
actor_3_facebook_likes                                                    1000
actor_2_name                                                         Al Pacino
actor_1_facebook_likes                                                   22000
gross                                                              4.00764e+07
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                    Robert De Niro
movie_title                                                    Righteous Kill 
num_voted_users                                                          73368
cast_total_facebook_likes                                                38809
actor_3_name                                                           50 Cent
facenumber_in_poster                                                         2
plot_keywords                blood splatter|execution|new york city|nypd|se...
movie_imdb_link              http://www.imdb.com/title/tt1034331/?ref_=fn_t...
num_user_for_reviews                                                       248
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                2008
actor_2_facebook_likes                                                   14000
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 784, dtype: object
color                                                                    Color
director_name                                                    Harold Becker
num_critic_for_reviews                                                      79
duration                                                                   111
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     652
actor_2_name                                                       Miko Hughes
actor_1_facebook_likes                                                   13000
gross                                                              3.29405e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                      Bruce Willis
movie_title                                                    Mercury Rising 
num_voted_users                                                          54314
cast_total_facebook_likes                                                16536
actor_3_name                                                    Carrie Preston
facenumber_in_poster                                                         1
plot_keywords                       autistic child|boy|child in danger|fbi|nsa
movie_imdb_link              http://www.imdb.com/title/tt0120749/?ref_=fn_t...
num_user_for_reviews                                                       127
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                1998
actor_2_facebook_likes                                                     968
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 785, dtype: object
color                                                                    Color
director_name                                                       Joe Wright
num_critic_for_reviews                                                     210
duration                                                                   117
director_facebook_likes                                                    456
actor_3_facebook_likes                                                     569
actor_2_name                                                      Stephen Root
actor_1_facebook_likes                                                   21000
gross                                                              3.16709e+07
genres                                                   Biography|Drama|Music
actor_1_name                                                 Robert Downey Jr.
movie_title                                                       The Soloist 
num_voted_users                                                          44099
cast_total_facebook_likes                                                23745
actor_3_name                                                    Rachael Harris
facenumber_in_poster                                                         0
plot_keywords                columnist|journalist|los angeles times|musicia...
movie_imdb_link              http://www.imdb.com/title/tt0821642/?ref_=fn_t...
num_user_for_reviews                                                       143
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2009
actor_2_facebook_likes                                                     939
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 786, dtype: object
color                                                                    Color
director_name                                                   Robert Redford
num_critic_for_reviews                                                     125
duration                                                                   126
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    9000
actor_2_name                                                        Will Smith
actor_1_facebook_likes                                                   13000
gross                                                              3.06952e+07
genres                                                     Drama|Fantasy|Sport
actor_1_name                                                        Matt Damon
movie_title                                        The Legend of Bagger Vance 
num_voted_users                                                          45296
cast_total_facebook_likes                                                34774
actor_3_name                                                   Charlize Theron
facenumber_in_poster                                                         3
plot_keywords                               caddy|game|golf|golf course|golfer
movie_imdb_link              http://www.imdb.com/title/tt0146984/?ref_=fn_t...
num_user_for_reviews                                                       267
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2000
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 787, dtype: object
color                                                                    Color
director_name                                                    Cameron Crowe
num_critic_for_reviews                                                     149
duration                                                                   152
director_facebook_likes                                                    488
actor_3_facebook_likes                                                     947
actor_2_name                                                   Zooey Deschanel
actor_1_facebook_likes                                                   22000
gross                                                              3.25224e+07
genres                                            Adventure|Comedy|Drama|Music
actor_1_name                                            Philip Seymour Hoffman
movie_title                                                     Almost Famous 
num_voted_users                                                         207287
cast_total_facebook_likes                                                36897
actor_3_name                                                  Michael Angarano
facenumber_in_poster                                                         1
plot_keywords                band|magazine|rolling stone magazine|smoking m...
movie_imdb_link              http://www.imdb.com/title/tt0181875/?ref_=fn_t...
num_user_for_reviews                                                       822
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                2000
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                     15000
Name: 788, dtype: object
color                                                                    Color
director_name                                                         Tim Hill
num_critic_for_reviews                                                      77
duration                                                                    86
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     265
actor_2_name                                                        Roger Rees
actor_1_facebook_likes                                                   13000
gross                                                              2.84242e+07
genres                                         Animation|Comedy|Family|Fantasy
actor_1_name                                                       Bill Murray
movie_title                                                        Garfield 2 
num_voted_users                                                          27517
cast_total_facebook_likes                                                14918
actor_3_name                                                       Ben Falcone
facenumber_in_poster                                                         0
plot_keywords                cat|england|lti txii|peugeot 206|rover 3 5 lit...
movie_imdb_link              http://www.imdb.com/title/tt0455499/?ref_=fn_t...
num_user_for_reviews                                                        74
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2006
actor_2_facebook_likes                                                    1000
imdb_score                                                                   5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       470
Name: 789, dtype: object
color                                                                    Color
director_name                                                     Lee Tamahori
num_critic_for_reviews                                                      77
duration                                                                   101
director_facebook_likes                                                     93
actor_3_facebook_likes                                                     218
actor_2_name                                                         Nona Gaye
actor_1_facebook_likes                                                     287
gross                                                              2.60829e+07
genres                                         Action|Adventure|Crime|Thriller
actor_1_name                                                      Sunny Mabrey
movie_title                                           xXx: State of the Union 
num_voted_users                                                          51349
cast_total_facebook_likes                                                  993
actor_3_name                                                            Xzibit
facenumber_in_poster                                                         2
plot_keywords                coup d'etat|mutiny|president|u.s. navy|washing...
movie_imdb_link              http://www.imdb.com/title/tt0329774/?ref_=fn_t...
num_user_for_reviews                                                       213
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.7e+07
title_year                                                                2005
actor_2_facebook_likes                                                     233
imdb_score                                                                 4.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 790, dtype: object
color                                                                    Color
director_name                                                    Scott Stewart
num_critic_for_reviews                                                     225
duration                                                                    87
director_facebook_likes                                                    124
actor_3_facebook_likes                                                      77
actor_2_name                                                         Alan Dale
actor_1_facebook_likes                                                     865
gross                                                              2.91366e+07
genres                                   Action|Fantasy|Horror|Sci-Fi|Thriller
actor_1_name                                                      Josh Wingate
movie_title                                                            Priest 
num_voted_users                                                          97089
cast_total_facebook_likes                                                 1417
actor_3_name                                                     Jacob Hopkins
facenumber_in_poster                                                         0
plot_keywords                            church|priest|sheriff|vampire|warrior
movie_imdb_link              http://www.imdb.com/title/tt0822847/?ref_=fn_t...
num_user_for_reviews                                                       233
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2011
actor_2_facebook_likes                                                     441
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     20000
Name: 791, dtype: object
color                                                                    Color
director_name                                                  Patrick Gilmore
num_critic_for_reviews                                                      98
duration                                                                    85
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      82
actor_2_name                                                  Adriano Giannini
actor_1_facebook_likes                                                   11000
gross                                                              2.62883e+07
genres                       Adventure|Animation|Comedy|Drama|Family|Fantas...
actor_1_name                                                         Brad Pitt
movie_title                                  Sinbad: Legend of the Seven Seas 
num_voted_users                                                          36144
cast_total_facebook_likes                                                11301
actor_3_name                                                      Timothy West
facenumber_in_poster                                                         0
plot_keywords                                book|framed|goddess|prince|sinbad
movie_imdb_link              http://www.imdb.com/title/tt0165982/?ref_=fn_t...
num_user_for_reviews                                                        91
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2003
actor_2_facebook_likes                                                     102
imdb_score                                                                 6.7
aspect_ratio                                                              1.66
movie_facebook_likes                                                       880
Name: 792, dtype: object
color                                                                    Color
director_name                                               Paul W.S. Anderson
num_critic_for_reviews                                                     172
duration                                                                   130
director_facebook_likes                                                    545
actor_3_facebook_likes                                                     552
actor_2_name                                                  Joely Richardson
actor_1_facebook_likes                                                     722
gross                                                              2.66166e+07
genres                                                  Horror|Sci-Fi|Thriller
actor_1_name                                                      Sean Pertwee
movie_title                                                     Event Horizon 
num_voted_users                                                         120416
cast_total_facebook_likes                                                 2525
actor_3_name                                                  Kathleen Quinlan
facenumber_in_poster                                                         0
plot_keywords                  solar system|space|spaceship|starship|year 2047
movie_imdb_link              http://www.imdb.com/title/tt0119081/?ref_=fn_t...
num_user_for_reviews                                                       857
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                1997
actor_2_facebook_likes                                                     585
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 793, dtype: object
color                                                                    Color
director_name                                                      Joss Whedon
num_critic_for_reviews                                                     703
duration                                                                   173
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   19000
actor_2_name                                                 Robert Downey Jr.
actor_1_facebook_likes                                                   26000
gross                                                               6.2328e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                   Chris Hemsworth
movie_title                                                      The Avengers 
num_voted_users                                                         995415
cast_total_facebook_likes                                                87697
actor_3_name                                                Scarlett Johansson
facenumber_in_poster                                                         3
plot_keywords                  alien invasion|assassin|battle|iron man|soldier
movie_imdb_link              http://www.imdb.com/title/tt0848228/?ref_=fn_t...
num_user_for_reviews                                                      1722
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.2e+08
title_year                                                                2012
actor_2_facebook_likes                                                   21000
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                    123000
Name: 794, dtype: object
color                                                                    Color
director_name                                                      Tom Shadyac
num_critic_for_reviews                                                     117
duration                                                                   104
director_facebook_likes                                                    293
actor_3_facebook_likes                                                     256
actor_2_name                                                  Susanna Thompson
actor_1_facebook_likes                                                     780
gross                                                              3.00638e+07
genres                                  Drama|Fantasy|Mystery|Romance|Thriller
actor_1_name                                                        Joe Morton
movie_title                                                         Dragonfly 
num_voted_users                                                          31788
cast_total_facebook_likes                                                 2109
actor_3_name                                                       Matt Craven
facenumber_in_poster                                                         0
plot_keywords                             death|doctor|grave|patient|venezuela
movie_imdb_link              http://www.imdb.com/title/tt0259288/?ref_=fn_t...
num_user_for_reviews                                                       243
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2002
actor_2_facebook_likes                                                     265
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 795, dtype: object
color                                                                    Color
director_name                                                   Brian De Palma
num_critic_for_reviews                                                     240
duration                                                                   121
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     854
actor_2_name                                                      Mia Kirshner
actor_1_facebook_likes                                                   19000
gross                                                              2.25183e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                Scarlett Johansson
movie_title                                                  The Black Dahlia 
num_voted_users                                                          63363
cast_total_facebook_likes                                                22833
actor_3_name                                                        Mike Starr
facenumber_in_poster                                                         0
plot_keywords                          black dahlia|boxer|corpse|death|partner
movie_imdb_link              http://www.imdb.com/title/tt0387877/?ref_=fn_t...
num_user_for_reviews                                                       644
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     972
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 796, dtype: object
color                                                          Black and White
director_name                                                        Tony Bill
num_critic_for_reviews                                                     123
duration                                                                   140
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     579
actor_2_name                                                      Tyler Labine
actor_1_facebook_likes                                                   11000
gross                                                              1.30823e+07
genres                              Action|Adventure|Drama|History|Romance|War
actor_1_name                                                      James Franco
movie_title                                                           Flyboys 
num_voted_users                                                          35565
cast_total_facebook_likes                                                12634
actor_3_name                                                 Philip Winchester
facenumber_in_poster                                                         1
plot_keywords                          american|france|military|pilot|training
movie_imdb_link              http://www.imdb.com/title/tt0454824/?ref_=fn_t...
num_user_for_reviews                                                       247
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2006
actor_2_facebook_likes                                                     779
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 797, dtype: object
color                                                                    Color
director_name                                                        Rod Lurie
num_critic_for_reviews                                                     110
duration                                                                   131
director_facebook_likes                                                     37
actor_3_facebook_likes                                                     507
actor_2_name                                                      Delroy Lindo
actor_1_facebook_likes                                                     968
gross                                                              1.82081e+07
genres                                                   Action|Drama|Thriller
actor_1_name                                               Clifton Collins Jr.
movie_title                                                   The Last Castle 
num_voted_users                                                          57100
cast_total_facebook_likes                                                 3012
actor_3_name                                                      Michael Irby
facenumber_in_poster                                                         3
plot_keywords                colonel|general|military|prison|three star gen...
movie_imdb_link              http://www.imdb.com/title/tt0272020/?ref_=fn_t...
num_user_for_reviews                                                       281
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                2001
actor_2_facebook_likes                                                     848
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 798, dtype: object
color                                                                    Color
director_name                                                      Walter Hill
num_critic_for_reviews                                                     100
duration                                                                    91
director_facebook_likes                                                    394
actor_3_facebook_likes                                                      68
actor_2_name                                                       Wilson Cruz
actor_1_facebook_likes                                                     889
gross                                                              1.42189e+07
genres                                                  Horror|Sci-Fi|Thriller
actor_1_name                                                    Robert Forster
movie_title                                                         Supernova 
num_voted_users                                                          14596
cast_total_facebook_likes                                                 1262
actor_3_name                                                  Vanessa Marshall
facenumber_in_poster                                                         0
plot_keywords                deep space|distress signal|explosion|mining|re...
movie_imdb_link              http://www.imdb.com/title/tt0134983/?ref_=fn_t...
num_user_for_reviews                                                       282
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     290
imdb_score                                                                 4.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                       589
Name: 799, dtype: object
color                                                                    Color
director_name                                                   Akiva Goldsman
num_critic_for_reviews                                                     189
duration                                                                   118
director_facebook_likes                                                    167
actor_3_facebook_likes                                                     778
actor_2_name                                                      William Hurt
actor_1_facebook_likes                                                   20000
gross                                                                    22451
genres                                           Drama|Fantasy|Mystery|Romance
actor_1_name                                                        Matt Bomer
movie_title                                                     Winter's Tale 
num_voted_users                                                          41288
cast_total_facebook_likes                                                22447
actor_3_name                                                    Kevin Corrigan
facenumber_in_poster                                                         0
plot_keywords                black and white photograph|drawing with blood|...
movie_imdb_link              http://www.imdb.com/title/tt1837709/?ref_=fn_t...
num_user_for_reviews                                                       126
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2014
actor_2_facebook_likes                                                     882
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     17000
Name: 800, dtype: object
color                                                                    Color
director_name                                                     Harald Zwart
num_critic_for_reviews                                                     212
duration                                                                   130
director_facebook_likes                                                     91
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Kevin Zegers
actor_1_facebook_likes                                                    5000
gross                                                              3.11654e+07
genres                                          Fantasy|Horror|Mystery|Romance
actor_1_name                                                      Aidan Turner
movie_title                             The Mortal Instruments: City of Bones 
num_voted_users                                                         107028
cast_total_facebook_likes                                                10247
actor_3_name                                                       CCH Pounder
facenumber_in_poster                                                         3
plot_keywords                                battle|demon|magic|secret|warrior
movie_imdb_link              http://www.imdb.com/title/tt1538403/?ref_=fn_t...
num_user_for_reviews                                                       457
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2013
actor_2_facebook_likes                                                    2000
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     44000
Name: 801, dtype: object
color                                                                    Color
director_name                                                    Brian Robbins
num_critic_for_reviews                                                     127
duration                                                                    90
director_facebook_likes                                                     48
actor_3_facebook_likes                                                     196
actor_2_name                                                     Mike O'Malley
actor_1_facebook_likes                                                     973
gross                                                              1.18021e+07
genres                                  Adventure|Comedy|Family|Romance|Sci-Fi
actor_1_name                                                       Marc Blucas
movie_title                                                         Meet Dave 
num_voted_users                                                          31640
cast_total_facebook_likes                                                 1865
actor_3_name                                                   Shawn Christian
facenumber_in_poster                                                         1
plot_keywords                                alien|mutiny|orb|planet|spaceship
movie_imdb_link              http://www.imdb.com/title/tt0765476/?ref_=fn_t...
num_user_for_reviews                                                       109
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2008
actor_2_facebook_likes                                                     400
imdb_score                                                                 4.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       791
Name: 802, dtype: object
color                                                                    Color
director_name                                                    Walter Salles
num_critic_for_reviews                                                     196
duration                                                                   103
director_facebook_likes                                                    179
actor_3_facebook_likes                                                      87
actor_2_name                                                    Camryn Manheim
actor_1_facebook_likes                                                     794
gross                                                               2.5473e+07
genres                                                   Drama|Horror|Thriller
actor_1_name                                                     Dougray Scott
movie_title                                                        Dark Water 
num_voted_users                                                          44966
cast_total_facebook_likes                                                 1467
actor_3_name                                                        Ariel Gade
facenumber_in_poster                                                         2
plot_keywords                       apartment|hello kitty|school|teacher|water
movie_imdb_link              http://www.imdb.com/title/tt0382628/?ref_=fn_t...
num_user_for_reviews                                                       411
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   3e+07
title_year                                                                2005
actor_2_facebook_likes                                                     329
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 803, dtype: object
color                                                                    Color
director_name                                                       Ron Howard
num_critic_for_reviews                                                     115
duration                                                                   122
director_facebook_likes                                                   2000
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Adam Goldberg
actor_1_facebook_likes                                                   11000
gross                                                              2.23625e+07
genres                                                            Comedy|Drama
actor_1_name                                               Matthew McConaughey
movie_title                                                              Edtv 
num_voted_users                                                          35599
cast_total_facebook_likes                                                15275
actor_3_name                                                      Clint Howard
facenumber_in_poster                                                         0
plot_keywords                female removes her clothes|one word title|prod...
movie_imdb_link              http://www.imdb.com/title/tt0131369/?ref_=fn_t...
num_user_for_reviews                                                       195
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       641
Name: 804, dtype: object
color                                                                    Color
director_name                                                     Iain Softley
num_critic_for_reviews                                                     161
duration                                                                   106
director_facebook_likes                                                     34
actor_3_facebook_likes                                                     466
actor_2_name                                                    Stephen Graham
actor_1_facebook_likes                                                    3000
gross                                                              1.72818e+07
genres                                                Adventure|Family|Fantasy
actor_1_name                                                    Brendan Fraser
movie_title                                                          Inkheart 
num_voted_users                                                          60232
cast_total_facebook_likes                                                 5329
actor_3_name                                                     Jamie Foreman
facenumber_in_poster                                                         3
plot_keywords                                book|escape|girl|overalls|villain
movie_imdb_link              http://www.imdb.com/title/tt0494238/?ref_=fn_t...
num_user_for_reviews                                                       110
language                                                               English
country                                                                Germany
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2008
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 805, dtype: object
color                                                                    Color
director_name                                                     Frank Miller
num_critic_for_reviews                                                     223
duration                                                                   103
director_facebook_likes                                                    436
actor_3_facebook_likes                                                     437
actor_2_name                                                        Jaime King
actor_1_facebook_likes                                                   19000
gross                                                              1.97819e+07
genres                                           Action|Crime|Fantasy|Thriller
actor_1_name                                                Scarlett Johansson
movie_title                                                        The Spirit 
num_voted_users                                                          53864
cast_total_facebook_likes                                                20881
actor_3_name                                                    Louis Lombardi
facenumber_in_poster                                                         1
plot_keywords                female star appears nude|pants falling down|sa...
movie_imdb_link              http://www.imdb.com/title/tt0831887/?ref_=fn_t...
num_user_for_reviews                                                       290
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2008
actor_2_facebook_likes                                                     961
imdb_score                                                                 4.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 806, dtype: object
color                                                                    Color
director_name                                                      David Koepp
num_critic_for_reviews                                                     181
duration                                                                   107
director_facebook_likes                                                    192
actor_3_facebook_likes                                                     280
actor_2_name                                                       Olivia Munn
actor_1_facebook_likes                                                   40000
gross                                                              7.60567e+06
genres                                           Action|Comedy|Mystery|Romance
actor_1_name                                                       Johnny Depp
movie_title                                                         Mortdecai 
num_voted_users                                                          47320
cast_total_facebook_likes                                                42683
actor_3_name                                                    Ulrich Thomsen
facenumber_in_poster                                                         2
plot_keywords                art dealer|fake painting|macguffin|moustache|s...
movie_imdb_link              http://www.imdb.com/title/tt3045616/?ref_=fn_t...
num_user_for_reviews                                                       188
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                2015
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 807, dtype: object
color                                                                    Color
director_name                                                         Uwe Boll
num_critic_for_reviews                                                     140
duration                                                                   156
director_facebook_likes                                                    892
actor_3_facebook_likes                                                     102
actor_2_name                                                        Mike Dopud
actor_1_facebook_likes                                                   26000
gross                                                              4.53512e+06
genres                                       Action|Adventure|Fantasy|Thriller
actor_1_name                                                     Jason Statham
movie_title                     In the Name of the King: A Dungeon Siege Tale 
num_voted_users                                                          38398
cast_total_facebook_likes                                                26564
actor_3_name                                                    Tania Saulnier
facenumber_in_poster                                                         3
plot_keywords                                   farmer|king|krug|rescue|wizard
movie_imdb_link              http://www.imdb.com/title/tt0460780/?ref_=fn_t...
num_user_for_reviews                                                       368
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2007
actor_2_facebook_likes                                                     368
imdb_score                                                                 3.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 808, dtype: object
color                                                                    Color
director_name                                                  Martin Campbell
num_critic_for_reviews                                                      54
duration                                                                   127
director_facebook_likes                                                    258
actor_3_facebook_likes                                                     617
actor_2_name                                                         Teri Polo
actor_1_facebook_likes                                                   11000
gross                                                               4.4263e+06
genres                                             Adventure|Drama|Romance|War
actor_1_name                                               Angelina Jolie Pitt
movie_title                                                    Beyond Borders 
num_voted_users                                                          22570
cast_total_facebook_likes                                                12947
actor_3_name                                                     Noah Emmerich
facenumber_in_poster                                                         2
plot_keywords                               africa|american|border|doctor|well
movie_imdb_link              http://www.imdb.com/title/tt0294357/?ref_=fn_t...
num_user_for_reviews                                                       156
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 3.5e+07
title_year                                                                2003
actor_2_facebook_likes                                                     708
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 809, dtype: object
color                                                                    Color
director_name                                                   Pou-Soi Cheang
num_critic_for_reviews                                                      14
duration                                                                   119
director_facebook_likes                                                      3
actor_3_facebook_likes                                                      22
actor_2_name                                                        Aaron Kwok
actor_1_facebook_likes                                                     879
gross                                                                      NaN
genres                                                Action|Adventure|Fantasy
actor_1_name                                                           Li Gong
movie_title                       Xi you ji zhi: Sun Wukong san da Baigu Jing 
num_voted_users                                                           1212
cast_total_facebook_likes                                                 1026
actor_3_name                                                        Eddie Peng
facenumber_in_poster                                                         1
plot_keywords                buddhism|demon|journey to the west|monk|monkey...
movie_imdb_link              http://www.imdb.com/title/tt4591310/?ref_=fn_t...
num_user_for_reviews                                                         9
language                                                               English
country                                                                  China
content_rating                                                             NaN
budget                                                              6.8005e+07
title_year                                                                2016
actor_2_facebook_likes                                                     107
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       426
Name: 810, dtype: object
color                                                          Black and White
director_name                                                        John Dahl
num_critic_for_reviews                                                      81
duration                                                                   132
director_facebook_likes                                                    131
actor_3_facebook_likes                                                     242
actor_2_name                                                   Clayne Crawford
actor_1_facebook_likes                                                   11000
gross                                                              1.01665e+07
genres                                                        Action|Drama|War
actor_1_name                                                      James Franco
movie_title                                                    The Great Raid 
num_voted_users                                                          18209
cast_total_facebook_likes                                                12133
actor_3_name                                                   Paolo Montalban
facenumber_in_poster                                                         0
plot_keywords                american|lieutenant colonel|mission|rescue|sol...
movie_imdb_link              http://www.imdb.com/title/tt0326905/?ref_=fn_t...
num_user_for_reviews                                                       183
language                                                              Filipino
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+07
title_year                                                                2005
actor_2_facebook_likes                                                     298
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 811, dtype: object
color                                                                    Color
director_name                                                       Tim Miller
num_critic_for_reviews                                                     579
duration                                                                   108
director_facebook_likes                                                     84
actor_3_facebook_likes                                                     361
actor_2_name                                                         Ed Skrein
actor_1_facebook_likes                                                   16000
gross                                                              3.63024e+08
genres                                  Action|Adventure|Comedy|Romance|Sci-Fi
actor_1_name                                                     Ryan Reynolds
movie_title                                                          Deadpool 
num_voted_users                                                         479047
cast_total_facebook_likes                                                18239
actor_3_name                                                    Stefan Kapicic
facenumber_in_poster                                                         0
plot_keywords                based on comic book|breaking the fourth wall|m...
movie_imdb_link              http://www.imdb.com/title/tt1431045/?ref_=fn_t...
num_user_for_reviews                                                      1058
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.8e+07
title_year                                                                2016
actor_2_facebook_likes                                                     805
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                    117000
Name: 812, dtype: object
color                                                                    Color
director_name                                                    Stephen Herek
num_critic_for_reviews                                                      56
duration                                                                   114
director_facebook_likes                                                     65
actor_3_facebook_likes                                                     440
actor_2_name                                                  Morgan Fairchild
actor_1_facebook_likes                                                     743
gross                                                               1.2066e+07
genres                                                            Comedy|Drama
actor_1_name                                                     Kelly Preston
movie_title                                                          Holy Man 
num_voted_users                                                          16260
cast_total_facebook_likes                                                 2367
actor_3_name                                                    Eric McCormack
facenumber_in_poster                                                         1
plot_keywords                1990s|evangelist|professional rivalry|swimming...
movie_imdb_link              http://www.imdb.com/title/tt0120701/?ref_=fn_t...
num_user_for_reviews                                                        88
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                1998
actor_2_facebook_likes                                                     730
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       296
Name: 813, dtype: object
color                                                                    Color
director_name                                                   Clint Eastwood
num_critic_for_reviews                                                     490
duration                                                                   133
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     318
actor_2_name                                                   Leonard Roberts
actor_1_facebook_likes                                                   14000
gross                                                              3.50124e+08
genres                             Action|Biography|Drama|History|Thriller|War
actor_1_name                                                    Bradley Cooper
movie_title                                                   American Sniper 
num_voted_users                                                         325264
cast_total_facebook_likes                                                16277
actor_3_name                                                    Keir O'Donnell
facenumber_in_poster                                                         0
plot_keywords                 assassin|death of child|iraq|sniper|sniper rifle
movie_imdb_link              http://www.imdb.com/title/tt2179136/?ref_=fn_t...
num_user_for_reviews                                                       916
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                5.88e+07
title_year                                                                2014
actor_2_facebook_likes                                                     962
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                    112000
Name: 814, dtype: object
color                                                                    Color
director_name                                                    Rob Letterman
num_critic_for_reviews                                                     218
duration                                                                   103
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     543
actor_2_name                                                    Dylan Minnette
actor_1_facebook_likes                                                    2000
gross                                                              8.00217e+07
genres                                  Adventure|Comedy|Family|Fantasy|Horror
actor_1_name                                                        Odeya Rush
movie_title                                                        Goosebumps 
num_voted_users                                                          47968
cast_total_facebook_likes                                                 5497
actor_3_name                                                        Ken Marino
facenumber_in_poster                                                         4
plot_keywords                based on book|blob|ferris wheel|manuscript|mon...
movie_imdb_link              http://www.imdb.com/title/tt1051904/?ref_=fn_t...
num_user_for_reviews                                                       154
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 5.8e+07
title_year                                                                2015
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     35000
Name: 815, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      20
duration                                                                    22
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     271
actor_2_name                                                  Soleil Moon Frye
actor_1_facebook_likes                                                     870
gross                                                                      NaN
genres                                                   Comedy|Family|Fantasy
actor_1_name                                                      Nate Richert
movie_title                            Sabrina, the Teenage Witch             
num_voted_users                                                          24420
cast_total_facebook_likes                                                 2433
actor_3_name                                                     Caroline Rhea
facenumber_in_poster                                                         1
plot_keywords                female protagonist|hereditary gift of witchcra...
movie_imdb_link              http://www.imdb.com/title/tt0115341/?ref_=fn_t...
num_user_for_reviews                                                        94
language                                                               English
country                                                                    USA
content_rating                                                            TV-G
budget                                                                   3e+06
title_year                                                                 NaN
actor_2_facebook_likes                                                     558
imdb_score                                                                 6.6
aspect_ratio                                                              1.33
movie_facebook_likes                                                       990
Name: 816, dtype: object
color                                                                    Color
director_name                                                      Mark Waters
num_critic_for_reviews                                                     142
duration                                                                    95
director_facebook_likes                                                     70
actor_3_facebook_likes                                                     512
actor_2_name                                                   Ivana Milicevic
actor_1_facebook_likes                                                     970
gross                                                              4.82916e+07
genres                                                  Comedy|Fantasy|Romance
actor_1_name                                                         Jon Heder
movie_title                                                  Just Like Heaven 
num_voted_users                                                          82819
cast_total_facebook_likes                                                 2876
actor_3_name                                                     Willie Garson
facenumber_in_poster                                                         1
plot_keywords                           apartment|architect|coma|doctor|spirit
movie_imdb_link              http://www.imdb.com/title/tt0425123/?ref_=fn_t...
num_user_for_reviews                                                       263
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.8e+07
title_year                                                                2005
actor_2_facebook_likes                                                     834
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 817, dtype: object
color                                                                    Color
director_name                                                     Brian Levant
num_critic_for_reviews                                                      57
duration                                                                    90
director_facebook_likes                                                     32
actor_3_facebook_likes                                                     809
actor_2_name                                                         Mark Addy
actor_1_facebook_likes                                                    1000
gross                                                              3.52314e+07
genres                                            Comedy|Family|Romance|Sci-Fi
actor_1_name                                                     Taylor Negron
movie_title                                The Flintstones in Viva Rock Vegas 
num_voted_users                                                          15517
cast_total_facebook_likes                                                 6299
actor_3_name                                                    Danny Woodburn
facenumber_in_poster                                                         0
plot_keywords                based on tv series|love|prequel|the flintstone...
movie_imdb_link              http://www.imdb.com/title/tt0158622/?ref_=fn_t...
num_user_for_reviews                                                        85
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2000
actor_2_facebook_likes                                                     891
imdb_score                                                                 3.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       500
Name: 818, dtype: object
color                                                                    Color
director_name                                                  Peter MacDonald
num_critic_for_reviews                                                      84
duration                                                                    87
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     349
actor_2_name                                                    Kurtwood Smith
actor_1_facebook_likes                                                   13000
gross                                                              5.37156e+07
genres                                           Action|Adventure|Thriller|War
actor_1_name                                                Sylvester Stallone
movie_title                                                         Rambo III 
num_voted_users                                                          92106
cast_total_facebook_likes                                                14574
actor_3_name                                                    Richard Crenna
facenumber_in_poster                                                         1
plot_keywords                          afghanistan|colonel|rambo|rescue|soviet
movie_imdb_link              http://www.imdb.com/title/tt0095956/?ref_=fn_t...
num_user_for_reviews                                                       171
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.3e+07
title_year                                                                1988
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 819, dtype: object
color                                                                    Color
director_name                                                   George Clooney
num_critic_for_reviews                                                     186
duration                                                                   114
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     110
actor_2_name                                                   Malcolm Goodwin
actor_1_facebook_likes                                                     142
gross                                                              3.11992e+07
genres                                              Comedy|Drama|Romance|Sport
actor_1_name                                                      Robert Baker
movie_title                                                      Leatherheads 
num_voted_users                                                          27664
cast_total_facebook_likes                                                  589
actor_3_name                                                      Matt Bushell
facenumber_in_poster                                                         8
plot_keywords                   college football|fight|football|hero|surrender
movie_imdb_link              http://www.imdb.com/title/tt0379865/?ref_=fn_t...
num_user_for_reviews                                                       120
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.8e+07
title_year                                                                2008
actor_2_facebook_likes                                                     117
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       472
Name: 820, dtype: object
color                                                                    Color
director_name                                                     Frank Coraci
num_critic_for_reviews                                                      53
duration                                                                   119
director_facebook_likes                                                    153
actor_3_facebook_likes                                                   11000
actor_2_name                                                      Adam Sandler
actor_1_facebook_likes                                                   12000
gross                                                                      NaN
genres                                                          Comedy|Western
actor_1_name                                                    Taylor Lautner
movie_title                                                  The Ridiculous 6 
num_voted_users                                                          27019
cast_total_facebook_likes                                                36167
actor_3_name                                                        Jon Lovitz
facenumber_in_poster                                                         4
plot_keywords                apache|bank robbery|baseball|half brothers|whi...
movie_imdb_link              http://www.imdb.com/title/tt2479478/?ref_=fn_t...
num_user_for_reviews                                                       143
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                2015
actor_2_facebook_likes                                                   11000
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 821, dtype: object
color                                                                    Color
director_name                                                    Marc Lawrence
num_critic_for_reviews                                                     133
duration                                                                   103
director_facebook_likes                                                     30
actor_3_facebook_likes                                                     727
actor_2_name                                                          Kim Shaw
actor_1_facebook_likes                                                     963
gross                                                              2.95801e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Michael Kelly
movie_title                                   Did You Hear About the Morgans? 
num_voted_users                                                          29523
cast_total_facebook_likes                                                 3150
actor_3_name                                                       Kevin Brown
facenumber_in_poster                                                         2
plot_keywords                    fbi|murder|witness|witness protection|wyoming
movie_imdb_link              http://www.imdb.com/title/tt1314228/?ref_=fn_t...
num_user_for_reviews                                                       121
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.8e+07
title_year                                                                2009
actor_2_facebook_likes                                                     935
imdb_score                                                                 4.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 822, dtype: object
color                                                                    Color
director_name                                                       Shawn Levy
num_critic_for_reviews                                                     246
duration                                                                   125
director_facebook_likes                                                    189
actor_3_facebook_likes                                                     839
actor_2_name                                                     Jessica Szohr
actor_1_facebook_likes                                                    1000
gross                                                               4.4666e+07
genres                                                                  Comedy
actor_1_name                                                          Josh Gad
movie_title                                                    The Internship 
num_voted_users                                                         159931
cast_total_facebook_likes                                                 5081
actor_3_name                                                        Rob Riggle
facenumber_in_poster                                                         2
plot_keywords                actor's picture shown in credits|animated cred...
movie_imdb_link              http://www.imdb.com/title/tt2234155/?ref_=fn_t...
num_user_for_reviews                                                       281
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.8e+07
title_year                                                                2013
actor_2_facebook_likes                                                     847
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     22000
Name: 823, dtype: object
color                                                                    Color
director_name                                               Paul W.S. Anderson
num_critic_for_reviews                                                     253
duration                                                                    97
director_facebook_likes                                                    545
actor_3_facebook_likes                                                     529
actor_2_name                                                      Boris Kodjoe
actor_1_facebook_likes                                                   14000
gross                                                              6.01286e+07
genres                                          Action|Adventure|Horror|Sci-Fi
actor_1_name                                                    Milla Jovovich
movie_title                                          Resident Evil: Afterlife 
num_voted_users                                                         131447
cast_total_facebook_likes                                                16098
actor_3_name                                                     Shawn Roberts
facenumber_in_poster                                                         1
plot_keywords                     alaska|female gunfighter|mutation|ship|siege
movie_imdb_link              http://www.imdb.com/title/tt1220634/?ref_=fn_t...
num_user_for_reviews                                                       410
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                2010
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     19000
Name: 824, dtype: object
color                                                                    Color
director_name                                                Anthony Hemingway
num_critic_for_reviews                                                     144
duration                                                                   125
director_facebook_likes                                                    143
actor_3_facebook_likes                                                     519
actor_2_name                                                       Nate Parker
actor_1_facebook_likes                                                    1000
gross                                                              4.98756e+07
genres                                      Action|Adventure|Drama|History|War
actor_1_name                                                     David Oyelowo
movie_title                                                         Red Tails 
num_voted_users                                                          28807
cast_total_facebook_likes                                                 4416
actor_3_name                                                Tristan Mack Wilds
facenumber_in_poster                                                         0
plot_keywords                african american|battle|italy|tuskegee airmen|...
movie_imdb_link              http://www.imdb.com/title/tt0485985/?ref_=fn_t...
num_user_for_reviews                                                       273
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.8e+07
title_year                                                                2012
actor_2_facebook_likes                                                     664
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 825, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      46
duration                                                                    30
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     479
actor_2_name                                                     Kristin Davis
actor_1_facebook_likes                                                     962
gross                                                                      NaN
genres                                                          Comedy|Romance
actor_1_name                                                        Chris Noth
movie_title                                      Sex and the City             
num_voted_users                                                          80025
cast_total_facebook_likes                                                 2558
actor_3_name                                                     Cynthia Nixon
facenumber_in_poster                                                         0
plot_keywords                casual sex|friendship|friendship between women...
movie_imdb_link              http://www.imdb.com/title/tt0159206/?ref_=fn_t...
num_user_for_reviews                                                       238
language                                                               English
country                                                                    USA
content_rating                                                           TV-MA
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     722
imdb_score                                                                   7
aspect_ratio                                                              1.33
movie_facebook_likes                                                         0
Name: 826, dtype: object
color                                                                    Color
director_name                                                  Taylor Hackford
num_critic_for_reviews                                                     117
duration                                                                   136
director_facebook_likes                                                    138
actor_3_facebook_likes                                                    9000
actor_2_name                                                         Al Pacino
actor_1_facebook_likes                                                   18000
gross                                                               6.0984e+07
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                      Keanu Reeves
movie_title                                              The Devil's Advocate 
num_voted_users                                                         259519
cast_total_facebook_likes                                                45271
actor_3_name                                                   Charlize Theron
facenumber_in_poster                                                         2
plot_keywords                deal with the devil|lawyer|money|reality|super...
movie_imdb_link              http://www.imdb.com/title/tt0118971/?ref_=fn_t...
num_user_for_reviews                                                       431
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.7e+07
title_year                                                                1997
actor_2_facebook_likes                                                   14000
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 827, dtype: object
color                                                                    Color
director_name                                                      Sean Anders
num_critic_for_reviews                                                     157
duration                                                                   116
director_facebook_likes                                                     51
actor_3_facebook_likes                                                     622
actor_2_name                                                  Leighton Meester
actor_1_facebook_likes                                                   11000
gross                                                              3.69311e+07
genres                                                                  Comedy
actor_1_name                                                      Adam Sandler
movie_title                                                     That's My Boy 
num_voted_users                                                          70681
cast_total_facebook_likes                                                16484
actor_3_name                                                        Will Forte
facenumber_in_poster                                                         2
plot_keywords                argument|reference to vanilla ice|statutory ra...
movie_imdb_link              http://www.imdb.com/title/tt1232200/?ref_=fn_t...
num_user_for_reviews                                                       198
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                2012
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 828, dtype: object
color                                                                    Color
director_name                                                        Rob Cohen
num_critic_for_reviews                                                      60
duration                                                                   103
director_facebook_likes                                                    357
actor_3_facebook_likes                                                      40
actor_2_name                                                    Brian Thompson
actor_1_facebook_likes                                                    2000
gross                                                              5.13174e+07
genres                                                Action|Adventure|Fantasy
actor_1_name                                                      Dennis Quaid
movie_title                                                       DragonHeart 
num_voted_users                                                          78343
cast_total_facebook_likes                                                 2710
actor_3_name                                                     Terry O'Neill
facenumber_in_poster                                                         0
plot_keywords                dragon|england|human dragon relationship|king|...
movie_imdb_link              http://www.imdb.com/title/tt0116136/?ref_=fn_t...
num_user_for_reviews                                                       139
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.7e+07
title_year                                                                1996
actor_2_facebook_likes                                                     663
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 829, dtype: object
color                                                                    Color
director_name                                                     Brett Ratner
num_critic_for_reviews                                                     117
duration                                                                    97
director_facebook_likes                                                    420
actor_3_facebook_likes                                                     455
actor_2_name                                                       Don Cheadle
actor_1_facebook_likes                                                    4000
gross                                                              2.83281e+07
genres                                               Action|Comedy|Crime|Drama
actor_1_name                                                       Salma Hayek
movie_title                                                  After the Sunset 
num_voted_users                                                          38298
cast_total_facebook_likes                                                 9814
actor_3_name                                                        Chris Penn
facenumber_in_poster                                                         2
plot_keywords                               diamond|fbi|fbi agent|island|thief
movie_imdb_link              http://www.imdb.com/title/tt0367479/?ref_=fn_t...
num_user_for_reviews                                                       147
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.8e+07
title_year                                                                2004
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       782
Name: 830, dtype: object
color                                                                    Color
director_name                                                   Mark Neveldine
num_critic_for_reviews                                                     287
duration                                                                    96
director_facebook_likes                                                     83
actor_3_facebook_likes                                                    1000
actor_2_name                                                   Spencer Wilding
actor_1_facebook_likes                                                   12000
gross                                                               5.1774e+07
genres                                                 Action|Fantasy|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                  Ghost Rider: Spirit of Vengeance 
num_voted_users                                                          87745
cast_total_facebook_likes                                                16121
actor_3_name                                               Christopher Lambert
facenumber_in_poster                                                         1
plot_keywords                deal with the devil|devil|eastern europe|ghost...
movie_imdb_link              http://www.imdb.com/title/tt1071875/?ref_=fn_t...
num_user_for_reviews                                                       331
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.7e+07
title_year                                                                2011
actor_2_facebook_likes                                                    1000
imdb_score                                                                 4.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 831, dtype: object
color                                                                    Color
director_name                                                      John Madden
num_critic_for_reviews                                                      96
duration                                                                   131
director_facebook_likes                                                    108
actor_3_facebook_likes                                                      58
actor_2_name                                                       Irene Papas
actor_1_facebook_likes                                                   23000
gross                                                              2.55285e+07
genres                                                 Drama|Music|Romance|War
actor_1_name                                                    Christian Bale
movie_title                                        Captain Corelli's Mandolin 
num_voted_users                                                          28099
cast_total_facebook_likes                                                23325
actor_3_name                                                 Mihalis Giannatos
facenumber_in_poster                                                         2
plot_keywords                                captain|greek|island|italian|love
movie_imdb_link              http://www.imdb.com/title/tt0238112/?ref_=fn_t...
num_user_for_reviews                                                       220
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 5.7e+07
title_year                                                                2001
actor_2_facebook_likes                                                     243
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 832, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      26
duration                                                                    22
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     676
actor_2_name                                                    Noureen DeWulf
actor_1_facebook_likes                                                     883
gross                                                                      NaN
genres                                                          Comedy|Romance
actor_1_name                                                      Barry Corbin
movie_title                                      Anger Management             
num_voted_users                                                          26992
cast_total_facebook_likes                                                 4115
actor_3_name                                                Brian Austin Green
facenumber_in_poster                                                         1
plot_keywords                anger management|argument|irony|sarcasm|therapist
movie_imdb_link              http://www.imdb.com/title/tt1986770/?ref_=fn_t...
num_user_for_reviews                                                        54
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     701
imdb_score                                                                 6.7
aspect_ratio                                                                16
movie_facebook_likes                                                         0
Name: 833, dtype: object
color                                                                    Color
director_name                                                    Adam Shankman
num_critic_for_reviews                                                     125
duration                                                                    95
director_facebook_likes                                                    163
actor_3_facebook_likes                                                     650
actor_2_name                                                      Brad Garrett
actor_1_facebook_likes                                                   14000
gross                                                              1.13007e+08
genres                                     Action|Comedy|Drama|Family|Thriller
actor_1_name                                                        Vin Diesel
movie_title                                                      The Pacifier 
num_voted_users                                                          66308
cast_total_facebook_likes                                                16884
actor_3_name                                                      Tate Donovan
facenumber_in_poster                                                         0
plot_keywords                bodyguard|death of husband|male nanny|nanny|wr...
movie_imdb_link              http://www.imdb.com/title/tt0395699/?ref_=fn_t...
num_user_for_reviews                                                       225
language                                                               English
country                                                                 Canada
content_rating                                                              PG
budget                                                                 5.6e+07
title_year                                                                2005
actor_2_facebook_likes                                                     799
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 834, dtype: object
color                                                                    Color
director_name                                                       Kevin Bray
num_critic_for_reviews                                                     117
duration                                                                    86
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     348
actor_2_name                                                      Ashley Scott
actor_1_facebook_likes                                                   12000
gross                                                                4.586e+07
genres                                                            Action|Crime
actor_1_name                                                    Dwayne Johnson
movie_title                                                      Walking Tall 
num_voted_users                                                          53118
cast_total_facebook_likes                                                14146
actor_3_name                                                     Michael Bowen
facenumber_in_poster                                                         1
plot_keywords                  casino|football|sheriff|special forces|violence
movie_imdb_link              http://www.imdb.com/title/tt0351977/?ref_=fn_t...
num_user_for_reviews                                                       221
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.6e+07
title_year                                                                2004
actor_2_facebook_likes                                                     795
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 835, dtype: object
color                                                          Black and White
director_name                                                  Robert Zemeckis
num_critic_for_reviews                                                     149
duration                                                                   142
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     194
actor_2_name                                              Siobhan Fallon Hogan
actor_1_facebook_likes                                                   15000
gross                                                              3.29691e+08
genres                                                            Comedy|Drama
actor_1_name                                                         Tom Hanks
movie_title                                                      Forrest Gump 
num_voted_users                                                        1251222
cast_total_facebook_likes                                                15700
actor_3_name                                                      Sam Anderson
facenumber_in_poster                                                         0
plot_keywords                        amputee|love|vietnam|vietnam war|war hero
movie_imdb_link              http://www.imdb.com/title/tt0109830/?ref_=fn_t...
num_user_for_reviews                                                      1398
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                1994
actor_2_facebook_likes                                                     294
imdb_score                                                                 8.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     59000
Name: 836, dtype: object
color                                                                    Color
director_name                                                         Tim Hill
num_critic_for_reviews                                                     131
duration                                                                    92
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     639
actor_2_name                                                     Beth Riesgraf
actor_1_facebook_likes                                                    1000
gross                                                              2.17326e+08
genres                                   Animation|Comedy|Family|Fantasy|Music
actor_1_name                                                   Jesse McCartney
movie_title                                           Alvin and the Chipmunks 
num_voted_users                                                          57276
cast_total_facebook_likes                                                 2847
actor_3_name                                               Matthew Gray Gubler
facenumber_in_poster                                                         0
plot_keywords                based on cartoon|chipmunk|concert|fart joke|ta...
movie_imdb_link              http://www.imdb.com/title/tt0952640/?ref_=fn_t...
num_user_for_reviews                                                       146
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2007
actor_2_facebook_likes                                                     718
imdb_score                                                                 5.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 837, dtype: object
color                                                                    Color
director_name                                                        Jay Roach
num_critic_for_reviews                                                     150
duration                                                                   108
director_facebook_likes                                                    116
actor_3_facebook_likes                                                     708
actor_2_name                                                     Blythe Danner
actor_1_facebook_likes                                                   22000
gross                                                              1.66225e+08
genres                                                                  Comedy
actor_1_name                                                    Robert De Niro
movie_title                                                  Meet the Parents 
num_voted_users                                                         260442
cast_total_facebook_likes                                                24286
actor_3_name                                                         Teri Polo
facenumber_in_poster                                                         2
plot_keywords                                  cat|cia|jewish|male nurse|nurse
movie_imdb_link              http://www.imdb.com/title/tt0212338/?ref_=fn_t...
num_user_for_reviews                                                       507
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     713
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 838, dtype: object
color                                                                    Color
director_name                                                     Mike Gabriel
num_critic_for_reviews                                                      92
duration                                                                    84
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     752
actor_2_name                                                      Frank Welker
actor_1_facebook_likes                                                   23000
gross                                                                1.416e+08
genres                       Adventure|Animation|Drama|Family|History|Music...
actor_1_name                                                    Christian Bale
movie_title                                                        Pocahontas 
num_voted_users                                                         119675
cast_total_facebook_likes                                                26754
actor_3_name                                                      Irene Bedard
facenumber_in_poster                                                         1
plot_keywords                actor playing multiple roles|love|one word tit...
movie_imdb_link              http://www.imdb.com/title/tt0114148/?ref_=fn_t...
num_user_for_reviews                                                       216
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 5.5e+07
title_year                                                                1995
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.6
aspect_ratio                                                              1.78
movie_facebook_likes                                                         0
Name: 839, dtype: object
color                                                                    Color
director_name                                                   Richard Donner
num_critic_for_reviews                                                     169
duration                                                                   188
director_facebook_likes                                                    503
actor_3_facebook_likes                                                     467
actor_2_name                                                     Margot Kidder
actor_1_facebook_likes                                                   10000
gross                                                              1.34218e+08
genres                                   Action|Adventure|Drama|Romance|Sci-Fi
actor_1_name                                                     Marlon Brando
movie_title                                                          Superman 
num_voted_users                                                         126357
cast_total_facebook_likes                                                12940
actor_3_name                                                        Ned Beatty
facenumber_in_poster                                                         0
plot_keywords                      1970s|clark kent|planet|superhero|year 1978
movie_imdb_link              http://www.imdb.com/title/tt0078346/?ref_=fn_t...
num_user_for_reviews                                                       497
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 5.5e+07
title_year                                                                1978
actor_2_facebook_likes                                                     593
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 840, dtype: object
color                                                                    Color
director_name                                                      Tom Shadyac
num_critic_for_reviews                                                      57
duration                                                                    95
director_facebook_likes                                                    293
actor_3_facebook_likes                                                     744
actor_2_name                                                      James Coburn
actor_1_facebook_likes                                                     851
gross                                                              1.28769e+08
genres                                                   Comedy|Romance|Sci-Fi
actor_1_name                                                Jada Pinkett Smith
movie_title                                               The Nutty Professor 
num_voted_users                                                          86556
cast_total_facebook_likes                                                 3155
actor_3_name                                                    Dave Chappelle
facenumber_in_poster                                                         1
plot_keywords                   face slap|formula|overweight|professor|teacher
movie_imdb_link              http://www.imdb.com/title/tt0117218/?ref_=fn_t...
num_user_for_reviews                                                        99
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.4e+07
title_year                                                                1996
actor_2_facebook_likes                                                     773
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       960
Name: 841, dtype: object
color                                                                    Color
director_name                                                     Andy Tennant
num_critic_for_reviews                                                     171
duration                                                                   118
director_facebook_likes                                                     72
actor_3_facebook_likes                                                     681
actor_2_name                                                  Michael Rapaport
actor_1_facebook_likes                                                   10000
gross                                                              1.77575e+08
genres                                                          Comedy|Romance
actor_1_name                                                        Will Smith
movie_title                                                             Hitch 
num_voted_users                                                         244840
cast_total_facebook_likes                                                13426
actor_3_name                                                     Kevin Sussman
facenumber_in_poster                                                         1
plot_keywords                advice|friendship|gossip|newspaper|quitting a job
movie_imdb_link              http://www.imdb.com/title/tt0386588/?ref_=fn_t...
num_user_for_reviews                                                       372
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2005
actor_2_facebook_likes                                                     975
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 842, dtype: object
color                                                                    Color
director_name                                                      Sam Weisman
num_critic_for_reviews                                                      53
duration                                                                    92
director_facebook_likes                                                     39
actor_3_facebook_likes                                                     458
actor_2_name                                                   Abraham Benrubi
actor_1_facebook_likes                                                    3000
gross                                                              1.05263e+08
genres                                  Action|Adventure|Comedy|Family|Romance
actor_1_name                                                    Brendan Fraser
movie_title                                              George of the Jungle 
num_voted_users                                                          56168
cast_total_facebook_likes                                                 4518
actor_3_name                                                    Holland Taylor
facenumber_in_poster                                                         0
plot_keywords                animal companion|heiress|hero|jungle|male obje...
movie_imdb_link              http://www.imdb.com/title/tt0119190/?ref_=fn_t...
num_user_for_reviews                                                       103
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 5.5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     562
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      5000
Name: 843, dtype: object
color                                                                    Color
director_name                                                      Jesse Dylan
num_critic_for_reviews                                                     153
duration                                                                    74
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     729
actor_2_name                                               Thomas Ian Nicholas
actor_1_facebook_likes                                                    3000
gross                                                              1.04354e+08
genres                                                          Comedy|Romance
actor_1_name                                                   Alyson Hannigan
movie_title                                                  American Wedding 
num_voted_users                                                         162331
cast_total_facebook_likes                                                 5713
actor_3_name                                                      Fred Willard
facenumber_in_poster                                                         3
plot_keywords                   bachelor party|blow job|breasts|friend|wedding
movie_imdb_link              http://www.imdb.com/title/tt0328828/?ref_=fn_t...
num_user_for_reviews                                                       332
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                2003
actor_2_facebook_likes                                                     864
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 844, dtype: object
color                                                                    Color
director_name                                                  Paul Greengrass
num_critic_for_reviews                                                     491
duration                                                                   134
director_facebook_likes                                                    521
actor_3_facebook_likes                                                     186
actor_2_name                                                      Chris Mulkey
actor_1_facebook_likes                                                   15000
gross                                                              1.07101e+08
genres                                                Biography|Drama|Thriller
actor_1_name                                                         Tom Hanks
movie_title                                                  Captain Phillips 
num_voted_users                                                         323353
cast_total_facebook_likes                                                16281
actor_3_name                                                   Michael Chernus
facenumber_in_poster                                                         0
plot_keywords                            hijacking|hostage|leader|ship|somalia
movie_imdb_link              http://www.imdb.com/title/tt1535109/?ref_=fn_t...
num_user_for_reviews                                                       527
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2013
actor_2_facebook_likes                                                     535
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     65000
Name: 845, dtype: object
color                                                                    Color
director_name                                                       Shawn Levy
num_critic_for_reviews                                                     247
duration                                                                   101
director_facebook_likes                                                    189
actor_3_facebook_likes                                                    7000
actor_2_name                                                      James Franco
actor_1_facebook_likes                                                   15000
gross                                                              9.87114e+07
genres                                           Comedy|Crime|Romance|Thriller
actor_1_name                                                        Mila Kunis
movie_title                                                        Date Night 
num_voted_users                                                         127571
cast_total_facebook_likes                                                39822
actor_3_name                                                      Steve Carell
facenumber_in_poster                                                         2
plot_keywords                  city|new york city|night|reservation|restaurant
movie_imdb_link              http://www.imdb.com/title/tt1279935/?ref_=fn_t...
num_user_for_reviews                                                       207
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 846, dtype: object
color                                                                    Color
director_name                                                  Brad Silberling
num_critic_for_reviews                                                      26
duration                                                                   100
director_facebook_likes                                                     52
actor_3_facebook_likes                                                     394
actor_2_name                                                       Fred Rogers
actor_1_facebook_likes                                                     795
gross                                                              1.00328e+08
genres                                                   Comedy|Family|Fantasy
actor_1_name                                                         Eric Idle
movie_title                                                            Casper 
num_voted_users                                                          85903
cast_total_facebook_likes                                                 2638
actor_3_name                                                    Cathy Moriarty
facenumber_in_poster                                                         0
plot_keywords                        casper|friendly ghost|ghost|maine|mansion
movie_imdb_link              http://www.imdb.com/title/tt0112642/?ref_=fn_t...
num_user_for_reviews                                                        92
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   5e+07
title_year                                                                1995
actor_2_facebook_likes                                                     419
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 847, dtype: object
color                                                                    Color
director_name                                                    Antoine Fuqua
num_critic_for_reviews                                                     292
duration                                                                   132
director_facebook_likes                                                    845
actor_3_facebook_likes                                                     683
actor_2_name                                                Chloë Grace Moretz
actor_1_facebook_likes                                                   18000
gross                                                              1.01531e+08
genres                                                   Action|Crime|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                                     The Equalizer 
num_voted_users                                                         229574
cast_total_facebook_likes                                                37605
actor_3_name                                                      James Wilcox
facenumber_in_poster                                                         0
plot_keywords                assassin|ex soldier|gangster|hanged man|myster...
movie_imdb_link              http://www.imdb.com/title/tt0455944/?ref_=fn_t...
num_user_for_reviews                                                       436
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                   17000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     56000
Name: 848, dtype: object
color                                                                    Color
director_name                                                       Wayne Wang
num_critic_for_reviews                                                     114
duration                                                                   105
director_facebook_likes                                                     61
actor_3_facebook_likes                                                     708
actor_2_name                                                    Frances Conroy
actor_1_facebook_likes                                                    5000
gross                                                              9.38151e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                       Bob Hoskins
movie_title                                                 Maid in Manhattan 
num_voted_users                                                          68417
cast_total_facebook_likes                                                 7184
actor_3_name                                                Natasha Richardson
facenumber_in_poster                                                         2
plot_keywords                hotel|maid|new york city|place name in title|t...
movie_imdb_link              http://www.imdb.com/title/tt0252076/?ref_=fn_t...
num_user_for_reviews                                                       242
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     827
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 849, dtype: object
color                                                                    Color
director_name                                                       Tony Scott
num_critic_for_reviews                                                      82
duration                                                                   123
director_facebook_likes                                                  12000
actor_3_facebook_likes                                                     665
actor_2_name                                                   Viggo Mortensen
actor_1_facebook_likes                                                   18000
gross                                                                 9.14e+07
genres                                               Action|Drama|Thriller|War
actor_1_name                                                 Denzel Washington
movie_title                                                      Crimson Tide 
num_voted_users                                                          81026
cast_total_facebook_likes                                                30132
actor_3_name                                                    Ricky Schroder
facenumber_in_poster                                                         0
plot_keywords                             alabama|mutiny|order|radio|submarine
movie_imdb_link              http://www.imdb.com/title/tt0112740/?ref_=fn_t...
num_user_for_reviews                                                       194
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.3e+07
title_year                                                                1995
actor_2_facebook_likes                                                   10000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 850, dtype: object
color                                                                    Color
director_name                                                 Gabriele Muccino
num_critic_for_reviews                                                     201
duration                                                                   117
director_facebook_likes                                                    125
actor_3_facebook_likes                                                     168
actor_2_name                                                       Kurt Fuller
actor_1_facebook_likes                                                   10000
gross                                                              1.62586e+08
genres                                                         Biography|Drama
actor_1_name                                                        Will Smith
movie_title                                          The Pursuit of Happyness 
num_voted_users                                                         338383
cast_total_facebook_likes                                                11036
actor_3_name                                                       James Karen
facenumber_in_poster                                                         0
plot_keywords                       bus|intern|internship|salesman|stockbroker
movie_imdb_link              http://www.imdb.com/title/tt0454921/?ref_=fn_t...
num_user_for_reviews                                                       611
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     617
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     32000
Name: 851, dtype: object
color                                                                    Color
director_name                                                 Robert Schwentke
num_critic_for_reviews                                                     231
duration                                                                    98
director_facebook_likes                                                    124
actor_3_facebook_likes                                                     354
actor_2_name                                                      Michael Irby
actor_1_facebook_likes                                                     931
gross                                                               8.9707e+07
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                 Erika Christensen
movie_title                                                        Flightplan 
num_voted_users                                                         126746
cast_total_facebook_likes                                                 2287
actor_3_name                                                        Haley Ramm
facenumber_in_poster                                                         1
plot_keywords                     captain|flight|flight attendant|plane|search
movie_imdb_link              http://www.imdb.com/title/tt0408790/?ref_=fn_t...
num_user_for_reviews                                                       600
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     507
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 852, dtype: object
color                                                                    Color
director_name                                                   Barry Levinson
num_critic_for_reviews                                                      55
duration                                                                   128
director_facebook_likes                                                    272
actor_3_facebook_likes                                                     383
actor_2_name                                                       Dylan Baker
actor_1_facebook_likes                                                    2000
gross                                                                  8.3e+07
genres                                                          Drama|Thriller
actor_1_name                                                        Demi Moore
movie_title                                                        Disclosure 
num_voted_users                                                          36587
cast_total_facebook_likes                                                 3888
actor_3_name                                                       Roma Maffia
facenumber_in_poster                                                         0
plot_keywords                computer|marriage|non statutory female on male...
movie_imdb_link              http://www.imdb.com/title/tt0109635/?ref_=fn_t...
num_user_for_reviews                                                        95
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                1994
actor_2_facebook_likes                                                     812
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 853, dtype: object
color                                                                    Color
director_name                                                  Brad Silberling
num_critic_for_reviews                                                     110
duration                                                                   114
director_facebook_likes                                                     52
actor_3_facebook_likes                                                     539
actor_2_name                                                    Andre Braugher
actor_1_facebook_likes                                                   12000
gross                                                              7.87459e+07
genres                                                   Drama|Fantasy|Romance
actor_1_name                                                      Nicolas Cage
movie_title                                                    City of Angels 
num_voted_users                                                          94407
cast_total_facebook_likes                                                13905
actor_3_name                                                        Colm Feore
facenumber_in_poster                                                         1
plot_keywords                         angel|doctor|fall|heart surgeon|hospital
movie_imdb_link              http://www.imdb.com/title/tt0120632/?ref_=fn_t...
num_user_for_reviews                                                       322
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     702
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 854, dtype: object
color                                                          Black and White
director_name                                                Quentin Tarantino
num_critic_for_reviews                                                     354
duration                                                                   111
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     640
actor_2_name                                                     Vivica A. Fox
actor_1_facebook_likes                                                     926
gross                                                              7.00981e+07
genres                                                                  Action
actor_1_name                                                   David Carradine
movie_title                                                 Kill Bill: Vol. 1 
num_voted_users                                                         735784
cast_total_facebook_likes                                                 3983
actor_3_name                                                   Chiaki Kuriyama
facenumber_in_poster                                                         0
plot_keywords                                   bride|coma|japan|revenge|sword
movie_imdb_link              http://www.imdb.com/title/tt0266697/?ref_=fn_t...
num_user_for_reviews                                                      2105
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   3e+07
title_year                                                                2003
actor_2_facebook_likes                                                     890
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 855, dtype: object
color                                                                    Color
director_name                                                         Frank Oz
num_critic_for_reviews                                                     140
duration                                                                    85
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     490
actor_2_name                                                  Adam Alexi-Malle
actor_1_facebook_likes                                                   21000
gross                                                              6.63653e+07
genres                                                                  Comedy
actor_1_name                                                 Robert Downey Jr.
movie_title                                                         Bowfinger 
num_voted_users                                                          56874
cast_total_facebook_likes                                                22458
actor_3_name                                                     Jamie Kennedy
facenumber_in_poster                                                         2
plot_keywords                film within a film|filmmaking|guerrilla filmma...
movie_imdb_link              http://www.imdb.com/title/tt0131325/?ref_=fn_t...
num_user_for_reviews                                                       358
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     860
imdb_score                                                                 6.4
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 856, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      77
duration                                                                    44
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                      72
actor_2_name                                                      Don S. Davis
actor_1_facebook_likes                                                     847
gross                                                                      NaN
genres                                           Action|Adventure|Drama|Sci-Fi
actor_1_name                                                 Christopher Judge
movie_title                                         Stargate SG-1             
num_voted_users                                                          63982
cast_total_facebook_likes                                                 1359
actor_3_name                                                        Gary Jones
facenumber_in_poster                                                         4
plot_keywords                2000s|21st century|alternate history|message f...
movie_imdb_link              http://www.imdb.com/title/tt0118480/?ref_=fn_t...
num_user_for_reviews                                                       181
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                 1.4e+06
title_year                                                                 NaN
actor_2_facebook_likes                                                     440
imdb_score                                                                 8.4
aspect_ratio                                                              1.33
movie_facebook_likes                                                         0
Name: 857, dtype: object
color                                                          Black and White
director_name                                                Quentin Tarantino
num_critic_for_reviews                                                     304
duration                                                                   137
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     348
actor_2_name                                                     Michael Parks
actor_1_facebook_likes                                                     890
gross                                                              6.62079e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                     Vivica A. Fox
movie_title                                                 Kill Bill: Vol. 2 
num_voted_users                                                         512749
cast_total_facebook_likes                                                 1959
actor_3_name                                                     Michael Bowen
facenumber_in_poster                                                         0
plot_keywords                     assassin|assassination|bride|death|vengeance
movie_imdb_link              http://www.imdb.com/title/tt0378194/?ref_=fn_t...
num_user_for_reviews                                                       935
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   3e+07
title_year                                                                2004
actor_2_facebook_likes                                                     387
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 858, dtype: object
color                                                                    Color
director_name                                             Andrey Konchalovskiy
num_critic_for_reviews                                                      45
duration                                                                    97
director_facebook_likes                                                     96
actor_3_facebook_likes                                                     403
actor_2_name                                                      Jack Palance
actor_1_facebook_likes                                                   13000
gross                                                              6.34086e+07
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                                Sylvester Stallone
movie_title                                                      Tango & Cash 
num_voted_users                                                          75365
cast_total_facebook_likes                                                14432
actor_3_name                                                       Brion James
facenumber_in_poster                                                         1
plot_keywords                      1980s|80s action|escape|plea bargain|prison
movie_imdb_link              http://www.imdb.com/title/tt0098439/?ref_=fn_t...
num_user_for_reviews                                                       149
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                1989
actor_2_facebook_likes                                                     549
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 859, dtype: object
color                                                                    Color
director_name                                                  Robert Zemeckis
num_critic_for_reviews                                                      49
duration                                                                   104
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     812
actor_2_name                                                      Meryl Streep
actor_1_facebook_likes                                                   13000
gross                                                              5.84226e+07
genres                                                   Comedy|Fantasy|Horror
actor_1_name                                                      Bruce Willis
movie_title                                                 Death Becomes Her 
num_voted_users                                                          78974
cast_total_facebook_likes                                                25599
actor_3_name                                               Isabella Rossellini
facenumber_in_poster                                                         3
plot_keywords                plastic surgeon|rejuvenation|revenge|rival|riv...
movie_imdb_link              http://www.imdb.com/title/tt0104070/?ref_=fn_t...
num_user_for_reviews                                                       173
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                1992
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      8000
Name: 860, dtype: object
color                                                                    Color
director_name                                                          Tom Dey
num_critic_for_reviews                                                     146
duration                                                                   110
director_facebook_likes                                                      9
actor_3_facebook_likes                                                      95
actor_2_name                                                     Jason Connery
actor_1_facebook_likes                                                     485
gross                                                              5.69323e+07
genres                                         Action|Adventure|Comedy|Western
actor_1_name                                                   Xander Berkeley
movie_title                                                     Shanghai Noon 
num_voted_users                                                          96690
cast_total_facebook_likes                                                  939
actor_3_name                                                       Kate Luyben
facenumber_in_poster                                                         2
plot_keywords                      19th century|chinese|princess|rescue|travel
movie_imdb_link              http://www.imdb.com/title/tt0184894/?ref_=fn_t...
num_user_for_reviews                                                       293
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     110
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 861, dtype: object
color                                                                    Color
director_name                                                     Stuart Baird
num_critic_for_reviews                                                      60
duration                                                                   133
director_facebook_likes                                                     53
actor_3_facebook_likes                                                     263
actor_2_name                                                        Joe Morton
actor_1_facebook_likes                                                    1000
gross                                                                6.875e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                      Oliver Platt
movie_title                                                Executive Decision 
num_voted_users                                                          40858
cast_total_facebook_likes                                                 2916
actor_3_name                                                        J.T. Walsh
facenumber_in_poster                                                         0
plot_keywords                            bomb|hostage|military|plane|terrorist
movie_imdb_link              http://www.imdb.com/title/tt0116253/?ref_=fn_t...
num_user_for_reviews                                                       144
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                1996
actor_2_facebook_likes                                                     780
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 862, dtype: object
color                                                                    Color
director_name                                                      Mark Waters
num_critic_for_reviews                                                     189
duration                                                                    94
director_facebook_likes                                                     70
actor_3_facebook_likes                                                     497
actor_2_name                                                  Ophelia Lovibond
actor_1_facebook_likes                                                    1000
gross                                                               6.8218e+07
genres                                                   Comedy|Family|Fantasy
actor_1_name                                                  Madeline Carroll
movie_title                                             Mr. Popper's Penguins 
num_voted_users                                                          67191
cast_total_facebook_likes                                                 2820
actor_3_name                                                 Philip Baker Hall
facenumber_in_poster                                                         1
plot_keywords                              father|penguin|snowglobe|son|winter
movie_imdb_link              http://www.imdb.com/title/tt1396218/?ref_=fn_t...
num_user_for_reviews                                                       108
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 5.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                     549
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 863, dtype: object
color                                                                    Color
director_name                                                      Rob Minkoff
num_critic_for_reviews                                                     206
duration                                                                   104
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     947
actor_2_name                                                   Thomas McDonell
actor_1_facebook_likes                                                    5000
gross                                                              2.50403e+07
genres                                                Action|Adventure|Fantasy
actor_1_name                                                            Jet Li
movie_title                                             The Forbidden Kingdom 
num_voted_users                                                          88049
cast_total_facebook_likes                                                 7247
actor_3_name                                                  Michael Angarano
facenumber_in_poster                                                         0
plot_keywords                     monkey king|staff|teenager|urination|warrior
movie_imdb_link              http://www.imdb.com/title/tt0865556/?ref_=fn_t...
num_user_for_reviews                                                       279
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                     962
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 864, dtype: object
color                                                                    Color
director_name                                                    Jimmy Hayward
num_critic_for_reviews                                                     118
duration                                                                    91
director_facebook_likes                                                     39
actor_3_facebook_likes                                                     562
actor_2_name                                                      Carlos Ponce
actor_1_facebook_likes                                                    1000
gross                                                              5.57477e+07
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                       Amy Poehler
movie_title                                                        Free Birds 
num_voted_users                                                          18042
cast_total_facebook_likes                                                 3104
actor_3_name                                                        Dan Fogler
facenumber_in_poster                                                         1
plot_keywords                chipmunk|hunting dog|sabotage|thanksgiving|tur...
movie_imdb_link              http://www.imdb.com/title/tt1621039/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 5.5e+07
title_year                                                                2013
actor_2_facebook_likes                                                     591
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 865, dtype: object
color                                                                    Color
director_name                                                    David Fincher
num_critic_for_reviews                                                     210
duration                                                                   145
director_facebook_likes                                                  21000
actor_3_facebook_likes                                                     243
actor_2_name                                                    Holt McCallany
actor_1_facebook_likes                                                     534
gross                                                              5.54736e+07
genres                                                    Action|Horror|Sci-Fi
actor_1_name                                                 Charles S. Dutton
movie_title                                                           Alien 3 
num_voted_users                                                         207686
cast_total_facebook_likes                                                 1543
actor_3_name                                                       Paul McGann
facenumber_in_poster                                                         0
plot_keywords                               alien|crash|planet|prison|survivor
movie_imdb_link              http://www.imdb.com/title/tt0103644/?ref_=fn_t...
num_user_for_reviews                                                       776
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1992
actor_2_facebook_likes                                                     273
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 866, dtype: object
color                                                                    Color
director_name                                                      Alan Parker
num_critic_for_reviews                                                      76
duration                                                                   135
director_facebook_likes                                                    317
actor_3_facebook_likes                                                      34
actor_2_name                                                        Jimmy Nail
actor_1_facebook_likes                                                      57
gross                                                              4.99948e+07
genres                                         Biography|Drama|History|Musical
actor_1_name                                                       Andrea Corr
movie_title                                                             Evita 
num_voted_users                                                          29205
cast_total_facebook_likes                                                  164
actor_3_name                                                  Peter Polycarpou
facenumber_in_poster                                                         1
plot_keywords                       actress|argentina|military|politics|singer
movie_imdb_link              http://www.imdb.com/title/tt0116250/?ref_=fn_t...
num_user_for_reviews                                                       194
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 5.5e+07
title_year                                                                1996
actor_2_facebook_likes                                                      40
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 867, dtype: object
color                                                                    Color
director_name                                               John Frankenheimer
num_critic_for_reviews                                                     149
duration                                                                   122
director_facebook_likes                                                    287
actor_3_facebook_likes                                                     135
actor_2_name                                                 Natascha McElhone
actor_1_facebook_likes                                                   22000
gross                                                              4.16096e+07
genres                                         Action|Adventure|Crime|Thriller
actor_1_name                                                    Robert De Niro
movie_title                                                             Ronin 
num_voted_users                                                         145422
cast_total_facebook_likes                                                24270
actor_3_name                                                  Michael Lonsdale
facenumber_in_poster                                                         2
plot_keywords                               case|ex kgb|ronin|russian|suitcase
movie_imdb_link              http://www.imdb.com/title/tt0122690/?ref_=fn_t...
num_user_for_reviews                                                       572
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                    2000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 868, dtype: object
color                                                                    Color
director_name                                                  Stephen Hopkins
num_critic_for_reviews                                                      62
duration                                                                   110
director_facebook_likes                                                     81
actor_3_facebook_likes                                                     163
actor_2_name                                                      Bernard Hill
actor_1_facebook_likes                                                    1000
gross                                                              3.85538e+07
genres                                         Adventure|Drama|Horror|Thriller
actor_1_name                                                     Tom Wilkinson
movie_title                                        The Ghost and the Darkness 
num_voted_users                                                          46239
cast_total_facebook_likes                                                 1752
actor_3_name                                                           Om Puri
facenumber_in_poster                                                         0
plot_keywords                              bridge|engineer|hunter|lion|railway
movie_imdb_link              http://www.imdb.com/title/tt0116409/?ref_=fn_t...
num_user_for_reviews                                                       155
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                1996
actor_2_facebook_likes                                                     416
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 869, dtype: object
color                                                                    Color
director_name                                                        Paul King
num_critic_for_reviews                                                     224
duration                                                                    95
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     594
actor_2_name                                                        Matt Lucas
actor_1_facebook_likes                                                     838
gross                                                              7.61375e+07
genres                                         Animation|Comedy|Family|Fantasy
actor_1_name                                                     Julie Walters
movie_title                                                        Paddington 
num_voted_users                                                          49207
cast_total_facebook_likes                                                 3697
actor_3_name                                                     Sally Hawkins
facenumber_in_poster                                                         0
plot_keywords                bear|ear wax cleaning|fake newsreel|paddington...
movie_imdb_link              http://www.imdb.com/title/tt1109624/?ref_=fn_t...
num_user_for_reviews                                                       174
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 5.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     722
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     30000
Name: 870, dtype: object
color                                                                    Color
director_name                                                   Akiva Schaffer
num_critic_for_reviews                                                     265
duration                                                                   102
director_facebook_likes                                                     82
actor_3_facebook_likes                                                     537
actor_2_name                                                    Nicholas Braun
actor_1_facebook_likes                                                     622
gross                                                              3.43506e+07
genres                                                    Action|Comedy|Sci-Fi
actor_1_name                                                        Will Forte
movie_title                                                         The Watch 
num_voted_users                                                         104066
cast_total_facebook_likes                                                 2488
actor_3_name                                                  Rosemarie DeWitt
facenumber_in_poster                                                         4
plot_keywords                     alien|escape|manager|neighborhood watch|ohio
movie_imdb_link              http://www.imdb.com/title/tt1298649/?ref_=fn_t...
num_user_for_reviews                                                       207
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.8e+07
title_year                                                                2012
actor_2_facebook_likes                                                     591
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 871, dtype: object
color                                                                    Color
director_name                                                 William Friedkin
num_critic_for_reviews                                                     135
duration                                                                    94
director_facebook_likes                                                    607
actor_3_facebook_likes                                                     215
actor_2_name                                                        Jenna Boyd
actor_1_facebook_likes                                                     933
gross                                                              3.42386e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                    Connie Nielsen
movie_title                                                        The Hunted 
num_voted_users                                                          35830
cast_total_facebook_likes                                                 2248
actor_3_name                                                          Rex Linn
facenumber_in_poster                                                         1
plot_keywords                         capture|combat|fbi|hunter|special forces
movie_imdb_link              http://www.imdb.com/title/tt0269347/?ref_=fn_t...
num_user_for_reviews                                                       321
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                2003
actor_2_facebook_likes                                                     518
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 872, dtype: object
color                                                                    Color
director_name                                                   Jon Turteltaub
num_critic_for_reviews                                                     100
duration                                                                   126
director_facebook_likes                                                    226
actor_3_facebook_likes                                                     241
actor_2_name                                                     Maura Tierney
actor_1_facebook_likes                                                   12000
gross                                                              3.40986e+07
genres                                                          Drama|Thriller
actor_1_name                                                   Anthony Hopkins
movie_title                                                          Instinct 
num_voted_users                                                          27191
cast_total_facebook_likes                                                13406
actor_3_name                                                       John Ashton
facenumber_in_poster                                                         1
plot_keywords                africa|anthropologist|murder|poacher|psychiatrist
movie_imdb_link              http://www.imdb.com/title/tt0128278/?ref_=fn_t...
num_user_for_reviews                                                       232
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     509
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 873, dtype: object
color                                                                    Color
director_name                                                   Bobby Farrelly
num_critic_for_reviews                                                     123
duration                                                                   118
director_facebook_likes                                                    101
actor_3_facebook_likes                                                     327
actor_2_name                                              Terence Bernie Hines
actor_1_facebook_likes                                                   13000
gross                                                              3.38283e+07
genres                                                                  Comedy
actor_1_name                                                        Matt Damon
movie_title                                                      Stuck on You 
num_voted_users                                                          44453
cast_total_facebook_likes                                                14036
actor_3_name                                                    Seymour Cassel
facenumber_in_poster                                                         2
plot_keywords                actor|conjoined twins|cook|internet|short orde...
movie_imdb_link              http://www.imdb.com/title/tt0338466/?ref_=fn_t...
num_user_for_reviews                                                       154
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2003
actor_2_facebook_likes                                                     390
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 874, dtype: object
color                                                                    Color
director_name                                                    Kent Alterman
num_critic_for_reviews                                                     164
duration                                                                    99
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     490
actor_2_name                                                     Maura Tierney
actor_1_facebook_likes                                                    8000
gross                                                              3.34728e+07
genres                                                            Comedy|Sport
actor_1_name                                                      Will Ferrell
movie_title                                                          Semi-Pro 
num_voted_users                                                          67005
cast_total_facebook_likes                                                10026
actor_3_name                                                        Matt Walsh
facenumber_in_poster                                                         3
plot_keywords                          flint michigan|merger|michigan|nba|team
movie_imdb_link              http://www.imdb.com/title/tt0839980/?ref_=fn_t...
num_user_for_reviews                                                       119
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                     509
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 875, dtype: object
color                                                                    Color
director_name                                                       Peter Lord
num_critic_for_reviews                                                     238
duration                                                                    88
director_facebook_likes                                                     91
actor_3_facebook_likes                                                     591
actor_2_name                                                     Russell Tovey
actor_1_facebook_likes                                                    4000
gross                                                              3.10511e+07
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                       Salma Hayek
movie_title                                      The Pirates! Band of Misfits 
num_voted_users                                                          36877
cast_total_facebook_likes                                                 6254
actor_3_name                                                     Brian Blessed
facenumber_in_poster                                                         0
plot_keywords                charles darwin|cutlass|pirate|queen victoria|s...
movie_imdb_link              http://www.imdb.com/title/tt1430626/?ref_=fn_t...
num_user_for_reviews                                                       101
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 5.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     796
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 876, dtype: object
color                                                                    Color
director_name                                                   Clint Eastwood
num_critic_for_reviews                                                     264
duration                                                                   141
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     539
actor_2_name                                                     Michael Kelly
actor_1_facebook_likes                                                   11000
gross                                                              3.57073e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                               Angelina Jolie Pitt
movie_title                                                        Changeling 
num_voted_users                                                         199056
cast_total_facebook_likes                                                12840
actor_3_name                                                        Colm Feore
facenumber_in_poster                                                         0
plot_keywords                execution by hanging|los angeles police depart...
movie_imdb_link              http://www.imdb.com/title/tt0824747/?ref_=fn_t...
num_user_for_reviews                                                       387
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                     963
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     14000
Name: 877, dtype: object
color                                                                    Color
director_name                                                     Andrew Davis
num_critic_for_reviews                                                      47
duration                                                                   107
director_facebook_likes                                                     99
actor_3_facebook_likes                                                     581
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   18000
gross                                                              2.05507e+07
genres                                            Action|Drama|Sci-Fi|Thriller
actor_1_name                                                      Keanu Reeves
movie_title                                                    Chain Reaction 
num_voted_users                                                          40346
cast_total_facebook_likes                                                31014
actor_3_name                                                        Kevin Dunn
facenumber_in_poster                                                         1
plot_keywords                cold fusion|die hard scenario|man with glasses...
movie_imdb_link              http://www.imdb.com/title/tt0115857/?ref_=fn_t...
num_user_for_reviews                                                        95
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                1996
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 878, dtype: object
color                                                                    Color
director_name                                                       Tony Scott
num_critic_for_reviews                                                      50
duration                                                                   116
director_facebook_likes                                                  12000
actor_3_facebook_likes                                                     552
actor_2_name                                                       Kurt Fuller
actor_1_facebook_likes                                                   22000
gross                                                              1.85738e+07
genres                                             Action|Drama|Sport|Thriller
actor_1_name                                                    Robert De Niro
movie_title                                                           The Fan 
num_voted_users                                                          38533
cast_total_facebook_likes                                                24618
actor_3_name                                                      Ellen Barkin
facenumber_in_poster                                                         3
plot_keywords                baseball|fan|obsession|salesman|san francisco ...
movie_imdb_link              http://www.imdb.com/title/tt0116277/?ref_=fn_t...
num_user_for_reviews                                                        89
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                1996
actor_2_facebook_likes                                                     617
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 879, dtype: object
color                                                          Black and White
director_name                                                  Joel Schumacher
num_critic_for_reviews                                                     153
duration                                                                   143
director_facebook_likes                                                    541
actor_3_facebook_likes                                                     530
actor_2_name                                                     Minnie Driver
actor_1_facebook_likes                                                   18000
gross                                                              5.12258e+07
genres                                          Drama|Musical|Romance|Thriller
actor_1_name                                                     Gerard Butler
movie_title                                          The Phantom of the Opera 
num_voted_users                                                          96654
cast_total_facebook_likes                                                20660
actor_3_name                                                Miranda Richardson
facenumber_in_poster                                                         0
plot_keywords                based on stage musical based on novel|disfigur...
movie_imdb_link              http://www.imdb.com/title/tt0293508/?ref_=fn_t...
num_user_for_reviews                                                      2047
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2004
actor_2_facebook_likes                                                     893
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 880, dtype: object
color                                                                    Color
director_name                                                    Shekhar Kapur
num_critic_for_reviews                                                     202
duration                                                                   114
director_facebook_likes                                                    159
actor_3_facebook_likes                                                     877
actor_2_name                                                     Abbie Cornish
actor_1_facebook_likes                                                   13000
gross                                                              1.62645e+07
genres                                             Biography|Drama|History|War
actor_1_name                                                    Eddie Redmayne
movie_title                                         Elizabeth: The Golden Age 
num_voted_users                                                          54787
cast_total_facebook_likes                                                16899
actor_3_name                                                       Jordi Mollà
facenumber_in_poster                                                         1
plot_keywords                                court|intrigue|queen|spain|virgin
movie_imdb_link              http://www.imdb.com/title/tt0414055/?ref_=fn_t...
num_user_for_reviews                                                       216
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 881, dtype: object
color                                                                    Color
director_name                                                     Karyn Kusama
num_critic_for_reviews                                                     178
duration                                                                    93
director_facebook_likes                                                     45
actor_3_facebook_likes                                                     352
actor_2_name                                                    Sophie Okonedo
actor_1_facebook_likes                                                    9000
gross                                                               2.5858e+07
genres                                                           Action|Sci-Fi
actor_1_name                                                   Charlize Theron
movie_title                                                          Æon Flux 
num_voted_users                                                         110614
cast_total_facebook_likes                                                10185
actor_3_name                                                   Paterson Joseph
facenumber_in_poster                                                         0
plot_keywords                based on cult favorite|disease|female hero|fem...
movie_imdb_link              http://www.imdb.com/title/tt0402022/?ref_=fn_t...
num_user_for_reviews                                                       532
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.2e+07
title_year                                                                2005
actor_2_facebook_likes                                                     460
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 882, dtype: object
color                                                                    Color
director_name                                                      Ron Maxwell
num_critic_for_reviews                                                      84
duration                                                                   280
director_facebook_likes                                                     33
actor_3_facebook_likes                                                      67
actor_2_name                                                  Bruce Boxleitner
actor_1_facebook_likes                                                     789
gross                                                              1.28706e+07
genres                                                       Drama|History|War
actor_1_name                                                    Billy Campbell
movie_title                                                 Gods and Generals 
num_voted_users                                                          13215
cast_total_facebook_likes                                                 1671
actor_3_name                                                       John Castle
facenumber_in_poster                                                         0
plot_keywords                confederacy|hero|prequel|stonewall jackson|war...
movie_imdb_link              http://www.imdb.com/title/tt0279111/?ref_=fn_t...
num_user_for_reviews                                                       497
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.6e+07
title_year                                                                2003
actor_2_facebook_likes                                                     640
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       953
Name: 883, dtype: object
color                                                                    Color
director_name                                                    Robert Butler
num_critic_for_reviews                                                      44
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     745
actor_2_name                                                      Lauren Holly
actor_1_facebook_likes                                                     995
gross                                                              1.14661e+07
genres                                                         Action|Thriller
actor_1_name                                                   Hector Elizondo
movie_title                                                        Turbulence 
num_voted_users                                                           8983
cast_total_facebook_likes                                                 3952
actor_3_name                                                    Jeffrey DeMunn
facenumber_in_poster                                                         0
plot_keywords                    airplane|christmas|marshal|pilot|u.s. marshal
movie_imdb_link              http://www.imdb.com/title/tt0120390/?ref_=fn_t...
num_user_for_reviews                                                        84
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.1e+07
title_year                                                                1997
actor_2_facebook_likes                                                     879
imdb_score                                                                 4.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       316
Name: 884, dtype: object
color                                                                    Color
director_name                                                Karey Kirkpatrick
num_critic_for_reviews                                                      93
duration                                                                   107
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     506
actor_2_name                                                         Ronny Cox
actor_1_facebook_likes                                                     939
gross                                                              1.60886e+07
genres                                             Comedy|Drama|Family|Fantasy
actor_1_name                                                      Stephen Root
movie_title                                                      Imagine That 
num_voted_users                                                          10417
cast_total_facebook_likes                                                 3742
actor_3_name                                                    Richard Schiff
facenumber_in_poster                                                         2
plot_keywords                blanket|competition|family relationships|feath...
movie_imdb_link              http://www.imdb.com/title/tt0780567/?ref_=fn_t...
num_user_for_reviews                                                        39
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 5.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     605
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       610
Name: 885, dtype: object
color                                                                    Color
director_name                                                      James Bobin
num_critic_for_reviews                                                     277
duration                                                                   119
director_facebook_likes                                                     33
actor_3_facebook_likes                                                     518
actor_2_name                                                          Tina Fey
actor_1_facebook_likes                                                    3000
gross                                                              5.11789e+07
genres                                   Adventure|Comedy|Crime|Family|Musical
actor_1_name                                                        Ty Burrell
movie_title                                               Muppets Most Wanted 
num_voted_users                                                          24285
cast_total_facebook_likes                                                 6089
actor_3_name                                                   Hugh Bonneville
facenumber_in_poster                                                         4
plot_keywords                            europe|frog|gulag|prison break|puppet
movie_imdb_link              http://www.imdb.com/title/tt2281587/?ref_=fn_t...
num_user_for_reviews                                                       110
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   5e+07
title_year                                                                2014
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 886, dtype: object
color                                                                    Color
director_name                                                  Jonathan Frakes
num_critic_for_reviews                                                      76
duration                                                                    95
director_facebook_likes                                                    906
actor_3_facebook_likes                                                     287
actor_2_name                                                 Philip Winchester
actor_1_facebook_likes                                                     956
gross                                                              6.76806e+06
genres                                   Action|Adventure|Comedy|Family|Sci-Fi
actor_1_name                                                      Sophia Myles
movie_title                                                      Thunderbirds 
num_voted_users                                                          11148
cast_total_facebook_likes                                                 2260
actor_3_name                                                      Brady Corbet
facenumber_in_poster                                                         0
plot_keywords                   astronaut|island|lady penelope|rescue|the hood
movie_imdb_link              http://www.imdb.com/title/tt0167456/?ref_=fn_t...
num_user_for_reviews                                                       229
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 5.7e+07
title_year                                                                2004
actor_2_facebook_likes                                                     579
imdb_score                                                                 4.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       437
Name: 887, dtype: object
color                                                                    Color
director_name                                                      Steve Antin
num_critic_for_reviews                                                     197
duration                                                                   119
director_facebook_likes                                                     59
actor_3_facebook_likes                                                     676
actor_2_name                                                   Peter Gallagher
actor_1_facebook_likes                                                    2000
gross                                                              3.94407e+07
genres                                             Drama|Music|Musical|Romance
actor_1_name                                                         Eric Dane
movie_title                                                         Burlesque 
num_voted_users                                                          61680
cast_total_facebook_likes                                                 4315
actor_3_name                                                      David Walton
facenumber_in_poster                                                         1
plot_keywords                      burlesque|dancer|iowa|small town girl|stage
movie_imdb_link              http://www.imdb.com/title/tt1126591/?ref_=fn_t...
num_user_for_reviews                                                       222
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                     828
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     19000
Name: 888, dtype: object
color                                                                    Color
director_name                                               Jean-Pierre Jeunet
num_critic_for_reviews                                                     186
duration                                                                   133
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      46
actor_2_name                                                  André Dussollier
actor_1_facebook_likes                                                     226
gross                                                              6.16782e+06
genres                                               Drama|Mystery|Romance|War
actor_1_name                                                      Denis Lavant
movie_title                                            A Very Long Engagement 
num_voted_users                                                          62607
cast_total_facebook_likes                                                  405
actor_3_name                                                   Albert Dupontel
facenumber_in_poster                                                         1
plot_keywords                   court martial|death|girl|no man's land|soldier
movie_imdb_link              http://www.imdb.com/title/tt0344510/?ref_=fn_t...
num_user_for_reviews                                                       239
language                                                                French
country                                                                 France
content_rating                                                               R
budget                                                                 4.7e+07
title_year                                                                2004
actor_2_facebook_likes                                                      52
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 889, dtype: object
color                                                          Black and White
director_name                                                  Stanley Kubrick
num_critic_for_reviews                                                     103
duration                                                                   152
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     177
actor_2_name                                                   Shelley Winters
actor_1_facebook_likes                                                     617
gross                                                                      NaN
genres                                                     Crime|Drama|Romance
actor_1_name                                                       James Mason
movie_title                                                            Lolita 
num_voted_users                                                          67822
cast_total_facebook_likes                                                 1403
actor_3_name                                                      Lois Maxwell
facenumber_in_poster                                                         0
plot_keywords                lolita|nymphet|older man young girl relationsh...
movie_imdb_link              http://www.imdb.com/title/tt0056193/?ref_=fn_t...
num_user_for_reviews                                                       207
language                                                               English
country                                                                     UK
content_rating                                                       Not Rated
budget                                                                   2e+06
title_year                                                                1962
actor_2_facebook_likes                                                     367
imdb_score                                                                 7.7
aspect_ratio                                                              1.66
movie_facebook_likes                                                         0
Name: 890, dtype: object
color                                                                    Color
director_name                                                    Jim Gillespie
num_critic_for_reviews                                                      66
duration                                                                    96
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     534
actor_2_name                                                      Tom Berenger
actor_1_facebook_likes                                                   13000
gross                                                                      NaN
genres                                           Crime|Horror|Mystery|Thriller
actor_1_name                                                Sylvester Stallone
movie_title                                                       Eye See You 
num_voted_users                                                          19706
cast_total_facebook_likes                                                15803
actor_3_name                                                 Charles S. Dutton
facenumber_in_poster                                                         1
plot_keywords                drill in the eye|eye gouging|hanged woman|murd...
movie_imdb_link              http://www.imdb.com/title/tt0160184/?ref_=fn_t...
num_user_for_reviews                                                       142
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     854
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       448
Name: 891, dtype: object
color                                                                    Color
director_name                                               Guillermo del Toro
num_critic_for_reviews                                                     224
duration                                                                   117
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     845
actor_2_name                                                Thomas Kretschmann
actor_1_facebook_likes                                                   12000
gross                                                              8.16452e+07
genres                                           Action|Horror|Sci-Fi|Thriller
actor_1_name                                                     Norman Reedus
movie_title                                                          Blade II 
num_voted_users                                                         158267
cast_total_facebook_likes                                                15371
actor_3_name                                                       Tony Curran
facenumber_in_poster                                                         1
plot_keywords                blade the character|cult film|mutation|vampire...
movie_imdb_link              http://www.imdb.com/title/tt0187738/?ref_=fn_t...
num_user_for_reviews                                                       559
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.4e+07
title_year                                                                2002
actor_2_facebook_likes                                                     919
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 892, dtype: object
color                                                                    Color
director_name                                                 Gabriele Muccino
num_critic_for_reviews                                                     202
duration                                                                   123
director_facebook_likes                                                    125
actor_3_facebook_likes                                                     835
actor_2_name                                                    Rosario Dawson
actor_1_facebook_likes                                                   10000
gross                                                              6.99518e+07
genres                                                           Drama|Romance
actor_1_name                                                        Will Smith
movie_title                                                      Seven Pounds 
num_voted_users                                                         232710
cast_total_facebook_likes                                                14727
actor_3_name                                                    Madison Pettis
facenumber_in_poster                                                         1
plot_keywords                boyfriend girlfriend relationship|heart|main c...
movie_imdb_link              http://www.imdb.com/title/tt0814314/?ref_=fn_t...
num_user_for_reviews                                                       599
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                    3000
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     26000
Name: 893, dtype: object
color                                                                    Color
director_name                                                      Walter Hill
num_critic_for_reviews                                                     279
duration                                                                    92
director_facebook_likes                                                    394
actor_3_facebook_likes                                                     565
actor_2_name                                                       Jason Momoa
actor_1_facebook_likes                                                   13000
gross                                                              9.48382e+06
genres                                                         Action|Thriller
actor_1_name                                                Sylvester Stallone
movie_title                                                Bullet to the Head 
num_voted_users                                                          39247
cast_total_facebook_likes                                                25418
actor_3_name                                                          Jon Seda
facenumber_in_poster                                                         3
plot_keywords                           bar|bullet|corruption|detective|lawyer
movie_imdb_link              http://www.imdb.com/title/tt1308729/?ref_=fn_t...
num_user_for_reviews                                                       131
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 894, dtype: object
color                                                                    Color
director_name                                             Francis Ford Coppola
num_critic_for_reviews                                                     110
duration                                                                   170
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     889
actor_2_name                                                      Joe Mantegna
actor_1_facebook_likes                                                   14000
gross                                                              6.66761e+07
genres                                                             Crime|Drama
actor_1_name                                                         Al Pacino
movie_title                                           The Godfather: Part III 
num_voted_users                                                         267980
cast_total_facebook_likes                                                16949
actor_3_name                                                     Bridget Fonda
facenumber_in_poster                                                         1
plot_keywords                1970s|family relationships|mob hit|opera|repea...
movie_imdb_link              http://www.imdb.com/title/tt0099674/?ref_=fn_t...
num_user_for_reviews                                                       545
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.4e+07
title_year                                                                1990
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 895, dtype: object
color                                                                    Color
director_name                                                    Cameron Crowe
num_critic_for_reviews                                                     190
duration                                                                   123
director_facebook_likes                                                    488
actor_3_facebook_likes                                                    2000
actor_2_name                                                     Kirsten Dunst
actor_1_facebook_likes                                                    5000
gross                                                              2.68384e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Orlando Bloom
movie_title                                                     Elizabethtown 
num_voted_users                                                          58658
cast_total_facebook_likes                                                12700
actor_3_name                                                        Judy Greer
facenumber_in_poster                                                         0
plot_keywords                    flight|flight attendant|kentucky|shoes|travel
movie_imdb_link              http://www.imdb.com/title/tt0368709/?ref_=fn_t...
num_user_for_reviews                                                       495
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.7e+07
title_year                                                                2005
actor_2_facebook_likes                                                    4000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 896, dtype: object
color                                                                    Color
director_name                                                    Anthony Russo
num_critic_for_reviews                                                     136
duration                                                                   110
director_facebook_likes                                                     94
actor_3_facebook_likes                                                     240
actor_2_name                                                     Billy Gardell
actor_1_facebook_likes                                                     277
gross                                                              7.56043e+07
genres                                                          Comedy|Romance
actor_1_name                                                    Todd Stashwick
movie_title                                                You, Me and Dupree 
num_voted_users                                                          68417
cast_total_facebook_likes                                                  847
actor_3_name                                                     Amanda Detmer
facenumber_in_poster                                                         1
plot_keywords                best friend|foot fetish|houseguest|newlywed|we...
movie_imdb_link              http://www.imdb.com/title/tt0463034/?ref_=fn_t...
num_user_for_reviews                                                       195
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.4e+07
title_year                                                                2006
actor_2_facebook_likes                                                     245
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 897, dtype: object
color                                                                    Color
director_name                                                   Richard Lester
num_critic_for_reviews                                                     121
duration                                                                   116
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     420
actor_2_name                                                        Ned Beatty
actor_1_facebook_likes                                                     593
gross                                                                1.082e+08
genres                                         Action|Adventure|Romance|Sci-Fi
actor_1_name                                                     Margot Kidder
movie_title                                                       Superman II 
num_voted_users                                                          76331
cast_total_facebook_likes                                                 2908
actor_3_name                                                     Jackie Cooper
facenumber_in_poster                                                         4
plot_keywords                alien invasion|based on comic book|flying supe...
movie_imdb_link              http://www.imdb.com/title/tt0081573/?ref_=fn_t...
num_user_for_reviews                                                       269
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 5.4e+07
title_year                                                                1980
actor_2_facebook_likes                                                     467
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 898, dtype: object
color                                                                    Color
director_name                                                     Martin Brest
num_critic_for_reviews                                                     131
duration                                                                   121
director_facebook_likes                                                    102
actor_3_facebook_likes                                                      43
actor_2_name                                                      Lenny Venito
actor_1_facebook_likes                                                     117
gross                                                              5.66008e+06
genres                                                    Comedy|Crime|Romance
actor_1_name                                                   Todd Giebenhain
movie_title                                                             Gigli 
num_voted_users                                                          41620
cast_total_facebook_likes                                                  286
actor_3_name                                                      David Backus
facenumber_in_poster                                                         0
plot_keywords                               gangster|hospital|lesbian|mob|thug
movie_imdb_link              http://www.imdb.com/title/tt0299930/?ref_=fn_t...
num_user_for_reviews                                                       418
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.4e+07
title_year                                                                2003
actor_2_facebook_likes                                                      62
imdb_score                                                                 2.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 899, dtype: object
color                                                          Black and White
director_name                                                  Steven Zaillian
num_critic_for_reviews                                                     127
duration                                                                   128
director_facebook_likes                                                    234
actor_3_facebook_likes                                                     581
actor_2_name                                                   Anthony Hopkins
actor_1_facebook_likes                                                   14000
gross                                                              7.22146e+06
genres                                                          Drama|Thriller
actor_1_name                                                      Kate Winslet
movie_title                                                All the King's Men 
num_voted_users                                                          20740
cast_total_facebook_likes                                                27614
actor_3_name                                                        Kevin Dunn
facenumber_in_poster                                                         0
plot_keywords                governor|journalist|louisiana|mistress|politician
movie_imdb_link              http://www.imdb.com/title/tt0405676/?ref_=fn_t...
num_user_for_reviews                                                       178
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                   12000
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 900, dtype: object
color                                                                    Color
director_name                                                   John Singleton
num_critic_for_reviews                                                     160
duration                                                                    99
director_facebook_likes                                                    309
actor_3_facebook_likes                                                     577
actor_2_name                                                  Vanessa Williams
actor_1_facebook_likes                                                   23000
gross                                                              7.03279e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                    Christian Bale
movie_title                                                             Shaft 
num_voted_users                                                          58416
cast_total_facebook_likes                                                26527
actor_3_name                                                 Daniel von Bargen
facenumber_in_poster                                                         0
plot_keywords                       blaxploitation|detective|drugs|shaft|trial
movie_imdb_link              http://www.imdb.com/title/tt0162650/?ref_=fn_t...
num_user_for_reviews                                                       301
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                 4.6e+07
title_year                                                                2000
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 901, dtype: object
color                                                                    Color
director_name                                                        Don Bluth
num_critic_for_reviews                                                      78
duration                                                                    94
director_facebook_likes                                                    383
actor_3_facebook_likes                                                     753
actor_2_name                                                    Kelsey Grammer
actor_1_facebook_likes                                                    4000
gross                                                              5.82978e+07
genres                       Adventure|Animation|Drama|Family|Fantasy|Music...
actor_1_name                                                     Kirsten Dunst
movie_title                                                         Anastasia 
num_voted_users                                                          86347
cast_total_facebook_likes                                                 6017
actor_3_name                                                 Bernadette Peters
facenumber_in_poster                                                         1
plot_keywords                amnesia|reference to anastasia romanov|romanov...
movie_imdb_link              http://www.imdb.com/title/tt0118617/?ref_=fn_t...
num_user_for_reviews                                                       191
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     808
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 902, dtype: object
color                                                          Black and White
director_name                                                     Baz Luhrmann
num_critic_for_reviews                                                     209
duration                                                                   127
director_facebook_likes                                                   1000
actor_3_facebook_likes                                                     653
actor_2_name                                                     Kylie Minogue
actor_1_facebook_likes                                                    1000
gross                                                              5.73864e+07
genres                                                   Drama|Musical|Romance
actor_1_name                                                     Jim Broadbent
movie_title                                                     Moulin Rouge! 
num_voted_users                                                         224013
cast_total_facebook_likes                                                 2601
actor_3_name                                                  Richard Roxburgh
facenumber_in_poster                                                         1
plot_keywords                death of main character|eiffel tower paris|jea...
movie_imdb_link              http://www.imdb.com/title/tt0203009/?ref_=fn_t...
num_user_for_reviews                                                      2319
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                5.25e+07
title_year                                                                2001
actor_2_facebook_likes                                                     691
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 903, dtype: object
color                                                                    Color
director_name                                                    Harold Becker
num_critic_for_reviews                                                      98
duration                                                                    89
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     303
actor_2_name                                                         Teri Polo
actor_1_facebook_likes                                                   12000
gross                                                              4.52071e+07
genres                                                  Crime|Mystery|Thriller
actor_1_name                                                     Steve Buscemi
movie_title                                              Domestic Disturbance 
num_voted_users                                                          21283
cast_total_facebook_likes                                                13390
actor_3_name                                                      Matt O'Leary
facenumber_in_poster                                                         1
plot_keywords                amateur detective|boat builder|boy|stepfather|...
movie_imdb_link              http://www.imdb.com/title/tt0249478/?ref_=fn_t...
num_user_for_reviews                                                       190
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.3e+07
title_year                                                                2001
actor_2_facebook_likes                                                     708
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       361
Name: 904, dtype: object
color                                                                    Color
director_name                                                     Scott Cooper
num_critic_for_reviews                                                     391
duration                                                                   123
director_facebook_likes                                                    108
actor_3_facebook_likes                                                    3000
actor_2_name                                              Benedict Cumberbatch
actor_1_facebook_likes                                                   40000
gross                                                              6.25635e+07
genres                                                   Biography|Crime|Drama
actor_1_name                                                       Johnny Depp
movie_title                                                        Black Mass 
num_voted_users                                                         115216
cast_total_facebook_likes                                                63769
actor_3_name                                                        Adam Scott
facenumber_in_poster                                                         7
plot_keywords                based on true story|boston massachusetts|fbi a...
movie_imdb_link              http://www.imdb.com/title/tt1355683/?ref_=fn_t...
num_user_for_reviews                                                       289
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.3e+07
title_year                                                                2015
actor_2_facebook_likes                                                   19000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     44000
Name: 905, dtype: object
color                                                                    Color
director_name                                                   Clint Eastwood
num_critic_for_reviews                                                     279
duration                                                                   135
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     310
actor_2_name                                                       Chris Bauer
actor_1_facebook_likes                                                   23000
gross                                                              3.35743e+07
genres                                                       Drama|History|War
actor_1_name                                                       Paul Walker
movie_title                                              Flags of Our Fathers 
num_voted_users                                                         101221
cast_total_facebook_likes                                                24468
actor_3_name                                                      Tom McCarthy
facenumber_in_poster                                                         0
plot_keywords                imperial japan|japan|japanese army|japanese so...
movie_imdb_link              http://www.imdb.com/title/tt0418689/?ref_=fn_t...
num_user_for_reviews                                                       415
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+07
title_year                                                                2006
actor_2_facebook_likes                                                     638
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 906, dtype: object
color                                                                    Color
director_name                                                     F. Gary Gray
num_critic_for_reviews                                                     216
duration                                                                   118
director_facebook_likes                                                    473
actor_3_facebook_likes                                                     963
actor_2_name                                                       Leslie Bibb
actor_1_facebook_likes                                                   18000
gross                                                              7.33434e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                     Gerard Butler
movie_title                                               Law Abiding Citizen 
num_voted_users                                                         217480
cast_total_facebook_likes                                                22517
actor_3_name                                                     Michael Kelly
facenumber_in_poster                                                         0
plot_keywords                attorney|deal|district attorney|investigation|...
movie_imdb_link              http://www.imdb.com/title/tt1197624/?ref_=fn_t...
num_user_for_reviews                                                       429
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2009
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     21000
Name: 907, dtype: object
color                                                                    Color
director_name                                                 Robert Rodriguez
num_critic_for_reviews                                                     250
duration                                                                   189
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                    Rosario Dawson
actor_1_facebook_likes                                                   16000
gross                                                               2.5031e+07
genres                                                  Action|Horror|Thriller
actor_1_name                                                 Quentin Tarantino
movie_title                                                        Grindhouse 
num_voted_users                                                         155496
cast_total_facebook_likes                                                22186
actor_3_name                                                          Zoë Bell
facenumber_in_poster                                                         0
plot_keywords                anthropophagus|blood and gore|double feature|r...
movie_imdb_link              http://www.imdb.com/title/tt0462322/?ref_=fn_t...
num_user_for_reviews                                                       532
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.3e+07
title_year                                                                2007
actor_2_facebook_likes                                                    3000
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 908, dtype: object
color                                                                    Color
director_name                                                   Jonathan Demme
num_critic_for_reviews                                                      78
duration                                                                   172
director_facebook_likes                                                    438
actor_3_facebook_likes                                                     466
actor_2_name                                                    Kimberly Elise
actor_1_facebook_likes                                                     852
gross                                                               2.2843e+07
genres                                                    Drama|History|Horror
actor_1_name                                                     Oprah Winfrey
movie_title                                                           Beloved 
num_voted_users                                                           6082
cast_total_facebook_likes                                                 2397
actor_3_name                                                       Hill Harper
facenumber_in_poster                                                         1
plot_keywords                                 farm|freedom|ohio|slavery|spirit
movie_imdb_link              http://www.imdb.com/title/tt0120603/?ref_=fn_t...
num_user_for_reviews                                                       207
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     637
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       853
Name: 909, dtype: object
color                                                                    Color
director_name                                                    Curtis Hanson
num_critic_for_reviews                                                     106
duration                                                                   124
director_facebook_likes                                                    161
actor_3_facebook_likes                                                     681
actor_2_name                                                     Robert Duvall
actor_1_facebook_likes                                                   21000
gross                                                              5.75529e+06
genres                                                     Drama|Romance|Sport
actor_1_name                                                 Robert Downey Jr.
movie_title                                                         Lucky You 
num_voted_users                                                          18310
cast_total_facebook_likes                                                26334
actor_3_name                                                    Kelvin Han Yee
facenumber_in_poster                                                         1
plot_keywords                losing|poker|poker player|reference to frederi...
movie_imdb_link              http://www.imdb.com/title/tt0338216/?ref_=fn_t...
num_user_for_reviews                                                        63
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       672
Name: 910, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     194
duration                                                                   141
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                    3000
actor_2_name                                                         Tom Hanks
actor_1_facebook_likes                                                   29000
gross                                                              1.64435e+08
genres                                                   Biography|Crime|Drama
actor_1_name                                                 Leonardo DiCaprio
movie_title                                               Catch Me If You Can 
num_voted_users                                                         525801
cast_total_facebook_likes                                                48153
actor_3_name                                                   Jennifer Garner
facenumber_in_poster                                                         0
plot_keywords                          attorney|cat and mouse|fbi|pan am|pilot
movie_imdb_link              http://www.imdb.com/title/tt0264464/?ref_=fn_t...
num_user_for_reviews                                                       667
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.2e+07
title_year                                                                2002
actor_2_facebook_likes                                                   15000
imdb_score                                                                   8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     15000
Name: 911, dtype: object
color                                                                    Color
director_name                                                  Kathryn Bigelow
num_critic_for_reviews                                                     558
duration                                                                   157
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     304
actor_2_name                                                  Harold Perrineau
actor_1_facebook_likes                                                    1000
gross                                                              9.57207e+07
genres                                                  Drama|History|Thriller
actor_1_name                                                     Jennifer Ehle
movie_title                                                  Zero Dark Thirty 
num_voted_users                                                         216032
cast_total_facebook_likes                                                 2759
actor_3_name                                                    Parker Sawyers
facenumber_in_poster                                                         0
plot_keywords                         al qaeda|cia|interrogation|lie|navy seal
movie_imdb_link              http://www.imdb.com/title/tt1790885/?ref_=fn_t...
num_user_for_reviews                                                       640
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2012
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     39000
Name: 912, dtype: object
color                                                                    Color
director_name                                                      Peyton Reed
num_critic_for_reviews                                                     183
duration                                                                   106
director_facebook_likes                                                    235
actor_3_facebook_likes                                                     931
actor_2_name                                              John Michael Higgins
actor_1_facebook_likes                                                    4000
gross                                                              1.18683e+08
genres                                                    Comedy|Drama|Romance
actor_1_name                                                       Jon Favreau
movie_title                                                      The Break-Up 
num_voted_users                                                         102167
cast_total_facebook_likes                                                 8315
actor_3_name                                                       Ann-Margret
facenumber_in_poster                                                         1
plot_keywords                art|break up|football video game|kitchen|talki...
movie_imdb_link              http://www.imdb.com/title/tt0452594/?ref_=fn_t...
num_user_for_reviews                                                       483
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.2e+07
title_year                                                                2006
actor_2_facebook_likes                                                     957
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 913, dtype: object
color                                                                    Color
director_name                                                   Phyllida Lloyd
num_critic_for_reviews                                                     238
duration                                                                   108
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     838
actor_2_name                                                      Meryl Streep
actor_1_facebook_likes                                                   14000
gross                                                              1.43704e+08
genres                                           Comedy|Family|Musical|Romance
actor_1_name                                                       Colin Firth
movie_title                                                        Mamma Mia! 
num_voted_users                                                         145974
cast_total_facebook_likes                                                26002
actor_3_name                                                     Julie Walters
facenumber_in_poster                                                         1
plot_keywords                        bride|greece|island|mediterranean|wedding
movie_imdb_link              http://www.imdb.com/title/tt0795421/?ref_=fn_t...
num_user_for_reviews                                                       611
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.2e+07
title_year                                                                2008
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 914, dtype: object
color                                                                    Color
director_name                                                   Garry Marshall
num_critic_for_reviews                                                     186
duration                                                                   125
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   11000
actor_2_name                                                    Taylor Lautner
actor_1_facebook_likes                                                   14000
gross                                                              1.10477e+08
genres                                                          Comedy|Romance
actor_1_name                                                    Bradley Cooper
movie_title                                                   Valentine's Day 
num_voted_users                                                          95437
cast_total_facebook_likes                                                45696
actor_3_name                                                     Anne Hathaway
facenumber_in_poster                                                        12
plot_keywords                flower|indian restaurant|tv station|valentine|...
movie_imdb_link              http://www.imdb.com/title/tt0817230/?ref_=fn_t...
num_user_for_reviews                                                       211
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.2e+07
title_year                                                                2010
actor_2_facebook_likes                                                   12000
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                      9000
Name: 915, dtype: object
color                                                                    Color
director_name                                                Jay Chandrasekhar
num_critic_for_reviews                                                     144
duration                                                                   107
director_facebook_likes                                                    422
actor_3_facebook_likes                                                     379
actor_2_name                                                   Jessica Simpson
actor_1_facebook_likes                                                     631
gross                                                              8.02702e+07
genres                                                 Action|Adventure|Comedy
actor_1_name                                                     Alice Greczyn
movie_title                                              The Dukes of Hazzard 
num_voted_users                                                          66382
cast_total_facebook_likes                                                 2297
actor_3_name                                                    Michael Weston
facenumber_in_poster                                                         5
plot_keywords                1969 dodge charger|bikini|farm|misogynist|tow ...
movie_imdb_link              http://www.imdb.com/title/tt0377818/?ref_=fn_t...
num_user_for_reviews                                                       612
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     534
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 916, dtype: object
color                                                                    Color
director_name                                                  Terrence Malick
num_critic_for_reviews                                                     156
duration                                                                   215
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     463
actor_2_name                                                      Miranda Otto
actor_1_facebook_likes                                                     648
gross                                                              3.63858e+07
genres                                                               Drama|War
actor_1_name                                                        Nick Stahl
movie_title                                                 The Thin Red Line 
num_voted_users                                                         138941
cast_total_facebook_likes                                                 1937
actor_3_name                                                        Dash Mihok
facenumber_in_poster                                                         0
plot_keywords                battle|hill|jungle|multiple perspectives|tropi...
movie_imdb_link              http://www.imdb.com/title/tt0120863/?ref_=fn_t...
num_user_for_reviews                                                      1448
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.2e+07
title_year                                                                1998
actor_2_facebook_likes                                                     568
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 917, dtype: object
color                                                                    Color
director_name                                                     David Dobkin
num_critic_for_reviews                                                     215
duration                                                                   118
director_facebook_likes                                                     71
actor_3_facebook_likes                                                     634
actor_2_name                                                      Olivia Wilde
actor_1_facebook_likes                                                   16000
gross                                                              3.70358e+07
genres                                                          Comedy|Fantasy
actor_1_name                                                     Ryan Reynolds
movie_title                                                     The Change-Up 
num_voted_users                                                         136680
cast_total_facebook_likes                                                28045
actor_3_name                                                     Mircea Monroe
facenumber_in_poster                                                         2
plot_keywords                         best friend|fountain|law firm|lawyer|sex
movie_imdb_link              http://www.imdb.com/title/tt1488555/?ref_=fn_t...
num_user_for_reviews                                                       149
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.2e+07
title_year                                                                2011
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 918, dtype: object
color                                                                    Color
director_name                                                     Milos Forman
num_critic_for_reviews                                                     140
duration                                                                   118
director_facebook_likes                                                    869
actor_3_facebook_likes                                                      21
actor_2_name                                                      Gerry Becker
actor_1_facebook_likes                                                     134
gross                                                              3.45806e+07
genres                                                  Biography|Comedy|Drama
actor_1_name                                                        Matt Price
movie_title                                                   Man on the Moon 
num_voted_users                                                         100743
cast_total_facebook_likes                                                  209
actor_3_name                                                       Tom Dreesen
facenumber_in_poster                                                         1
plot_keywords                andy kaufman|comedian|eccentric|wrestler|wrest...
movie_imdb_link              http://www.imdb.com/title/tt0125664/?ref_=fn_t...
num_user_for_reviews                                                       549
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 5.2e+07
title_year                                                                1999
actor_2_facebook_likes                                                      27
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 919, dtype: object
color                                                                    Color
director_name                                                  Martin Scorsese
num_critic_for_reviews                                                     133
duration                                                                   178
director_facebook_likes                                                  17000
actor_3_facebook_likes                                                     574
actor_2_name                                                       Don Rickles
actor_1_facebook_likes                                                   22000
gross                                                              4.24383e+07
genres                                                   Biography|Crime|Drama
actor_1_name                                                    Robert De Niro
movie_title                                                            Casino 
num_voted_users                                                         333542
cast_total_facebook_likes                                                24183
actor_3_name                                                      Kevin Pollak
facenumber_in_poster                                                         2
plot_keywords                car bomb|card cheat|cash|casino|gambling syndi...
movie_imdb_link              http://www.imdb.com/title/tt0112641/?ref_=fn_t...
num_user_for_reviews                                                       533
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.2e+07
title_year                                                                1995
actor_2_facebook_likes                                                     721
imdb_score                                                                 8.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 920, dtype: object
color                                                                    Color
director_name                                                     Pierre Morel
num_critic_for_reviews                                                     203
duration                                                                    92
director_facebook_likes                                                    180
actor_3_facebook_likes                                                      75
actor_2_name                                                  Amber Rose Revah
actor_1_facebook_likes                                                     211
gross                                                              2.33247e+07
genres                                                         Action|Thriller
actor_1_name                                                    Kasia Smutniak
movie_title                                              From Paris with Love 
num_voted_users                                                          97775
cast_total_facebook_likes                                                  488
actor_3_name                                                     Rebecca Dayan
facenumber_in_poster                                                         1
plot_keywords                              ambassador|cia|dinner|spy|terrorist
movie_imdb_link              http://www.imdb.com/title/tt1179034/?ref_=fn_t...
num_user_for_reviews                                                       211
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                 5.2e+07
title_year                                                                2010
actor_2_facebook_likes                                                     135
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 921, dtype: object
color                                                                    Color
director_name                                                      Paul Hunter
num_critic_for_reviews                                                     127
duration                                                                   104
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     343
actor_2_name                                                              Mako
actor_1_facebook_likes                                                     961
gross                                                              2.30205e+07
genres                                                   Action|Comedy|Fantasy
actor_1_name                                                        Jaime King
movie_title                                                  Bulletproof Monk 
num_voted_users                                                          42324
cast_total_facebook_likes                                                 2422
actor_3_name                                                  Victoria Smurfit
facenumber_in_poster                                                         3
plot_keywords                       monastery|monk|scroll|tibetan|tibetan monk
movie_imdb_link              http://www.imdb.com/title/tt0245803/?ref_=fn_t...
num_user_for_reviews                                                       180
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.2e+07
title_year                                                                2003
actor_2_facebook_likes                                                     691
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       846
Name: 922, dtype: object
color                                                                    Color
director_name                                                   Bobby Farrelly
num_critic_for_reviews                                                     155
duration                                                                   116
director_facebook_likes                                                    101
actor_3_facebook_likes                                                      79
actor_2_name                                                          Tony Cox
actor_1_facebook_likes                                                     889
gross                                                              9.05677e+07
genres                                                                  Comedy
actor_1_name                                                    Robert Forster
movie_title                                                Me, Myself & Irene 
num_voted_users                                                         185878
cast_total_facebook_likes                                                 1711
actor_3_name                                                         Rob Moran
facenumber_in_poster                                                         1
plot_keywords                dissociative identity disorder|limousine|multi...
movie_imdb_link              http://www.imdb.com/title/tt0183505/?ref_=fn_t...
num_user_for_reviews                                                       481
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.1e+07
title_year                                                                2000
actor_2_facebook_likes                                                     624
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 923, dtype: object
color                                                                    Color
director_name                                                   Steve Oedekerk
num_critic_for_reviews                                                      98
duration                                                                    90
director_facebook_likes                                                    176
actor_3_facebook_likes                                                     523
actor_2_name                                                       Wanda Sykes
actor_1_facebook_likes                                                     677
gross                                                              7.26017e+07
genres                                                 Animation|Comedy|Family
actor_1_name                                                       Rob Paulsen
movie_title                                                          Barnyard 
num_voted_users                                                          21396
cast_total_facebook_likes                                                 2055
actor_3_name                                                  Maurice LaMarche
facenumber_in_poster                                                         1
plot_keywords                   cow|farmer|howl|howling at the moon|vegetarian
movie_imdb_link              http://www.imdb.com/title/tt0414853/?ref_=fn_t...
num_user_for_reviews                                                       155
language                                                               English
country                                                                Germany
content_rating                                                              PG
budget                                                                 5.1e+07
title_year                                                                2006
actor_2_facebook_likes                                                     560
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       605
Name: 924, dtype: object
color                                                                    Color
director_name                                                   John Whitesell
num_critic_for_reviews                                                      71
duration                                                                    93
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     728
actor_2_name                                                      Jorge Garcia
actor_1_facebook_likes                                                    2000
gross                                                              3.50929e+07
genres                                                           Comedy|Family
actor_1_name                                                 Matthew Broderick
movie_title                                                    Deck the Halls 
num_voted_users                                                          15740
cast_total_facebook_likes                                                 5468
actor_3_name                                                      Alia Shawkat
facenumber_in_poster                                                         0
plot_keywords                christmas|december|holiday|massachusetts|neighbor
movie_imdb_link              http://www.imdb.com/title/tt0790604/?ref_=fn_t...
num_user_for_reviews                                                       110
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2006
actor_2_facebook_likes                                                    1000
imdb_score                                                                 4.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 925, dtype: object
color                                                                    Color
director_name                                                      Chris Weitz
num_critic_for_reviews                                                     299
duration                                                                   130
director_facebook_likes                                                    129
actor_3_facebook_likes                                                   12000
actor_2_name                                                   Kristen Stewart
actor_1_facebook_likes                                                   21000
gross                                                              2.96624e+08
genres                                         Adventure|Drama|Fantasy|Romance
actor_1_name                                                  Robert Pattinson
movie_title                                       The Twilight Saga: New Moon 
num_voted_users                                                         220758
cast_total_facebook_likes                                                64040
actor_3_name                                                    Taylor Lautner
facenumber_in_poster                                                         2
plot_keywords                forks washington|protecting a woman|title same...
movie_imdb_link              http://www.imdb.com/title/tt1259571/?ref_=fn_t...
num_user_for_reviews                                                       919
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2009
actor_2_facebook_likes                                                   17000
imdb_score                                                                 4.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 926, dtype: object
color                                                                    Color
director_name                                                   Andrew Adamson
num_critic_for_reviews                                                     212
duration                                                                    90
director_facebook_likes                                                     80
actor_3_facebook_likes                                                      21
actor_2_name                                                      Chris Miller
actor_1_facebook_likes                                                     145
gross                                                              2.67652e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                  Kathleen Freeman
movie_title                                                             Shrek 
num_voted_users                                                         467113
cast_total_facebook_likes                                                  275
actor_3_name                                                       Bobby Block
facenumber_in_poster                                                         1
plot_keywords                            donkey|fairy tale|ogre|princess|swamp
movie_imdb_link              http://www.imdb.com/title/tt0126029/?ref_=fn_t...
num_user_for_reviews                                                       945
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2001
actor_2_facebook_likes                                                      50
imdb_score                                                                 7.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 927, dtype: object
color                                                                    Color
director_name                                                     George Nolfi
num_critic_for_reviews                                                     413
duration                                                                   106
director_facebook_likes                                                     53
actor_3_facebook_likes                                                     593
actor_2_name                                                     Michael Kelly
actor_1_facebook_likes                                                   13000
gross                                                              6.24533e+07
genres                                                 Romance|Sci-Fi|Thriller
actor_1_name                                                        Matt Damon
movie_title                                             The Adjustment Bureau 
num_voted_users                                                         200035
cast_total_facebook_likes                                                14607
actor_3_name                                                       Jon Stewart
facenumber_in_poster                                                         2
plot_keywords                love at first sight|obscene finger gesture|rai...
movie_imdb_link              http://www.imdb.com/title/tt1385826/?ref_=fn_t...
num_user_for_reviews                                                       407
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                5.02e+07
title_year                                                                2011
actor_2_facebook_likes                                                     963
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     36000
Name: 928, dtype: object
color                                                                    Color
director_name                                                   Kevin Reynolds
num_critic_for_reviews                                                      67
duration                                                                   155
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     720
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   25000
gross                                                                1.655e+08
genres                                          Action|Adventure|Drama|Romance
actor_1_name                                                      Alan Rickman
movie_title                                     Robin Hood: Prince of Thieves 
num_voted_users                                                         145257
cast_total_facebook_likes                                                38518
actor_3_name                                                   Michael Wincott
facenumber_in_poster                                                         0
plot_keywords                  balladeer|crusades|england|king|modern minstrel
movie_imdb_link              http://www.imdb.com/title/tt0102798/?ref_=fn_t...
num_user_for_reviews                                                       322
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.8e+07
title_year                                                                1991
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 929, dtype: object
color                                                                    Color
director_name                                                    Cameron Crowe
num_critic_for_reviews                                                     109
duration                                                                   139
director_facebook_likes                                                    488
actor_3_facebook_likes                                                     597
actor_2_name                                                     Kelly Preston
actor_1_facebook_likes                                                   10000
gross                                                              1.53621e+08
genres                                              Comedy|Drama|Romance|Sport
actor_1_name                                                        Tom Cruise
movie_title                                                     Jerry Maguire 
num_voted_users                                                         189923
cast_total_facebook_likes                                                12182
actor_3_name                                                       Bonnie Hunt
facenumber_in_poster                                                         0
plot_keywords                          agent|career|client|fiance|sports agent
movie_imdb_link              http://www.imdb.com/title/tt0116695/?ref_=fn_t...
num_user_for_reviews                                                       318
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1996
actor_2_facebook_likes                                                     743
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 930, dtype: object
color                                                                    Color
director_name                                                  Seth MacFarlane
num_critic_for_reviews                                                     457
duration                                                                   112
director_facebook_likes                                                   3000
actor_3_facebook_likes                                                    1000
actor_2_name                                                   Seth MacFarlane
actor_1_facebook_likes                                                   15000
gross                                                              2.18629e+08
genres                                                          Comedy|Fantasy
actor_1_name                                                        Mila Kunis
movie_title                                                               Ted 
num_voted_users                                                         471644
cast_total_facebook_likes                                                21773
actor_3_name                                                      Tom Skerritt
facenumber_in_poster                                                         1
plot_keywords                 2010s|car accident|sex scene|teddy bear|testicle
movie_imdb_link              http://www.imdb.com/title/tt1637725/?ref_=fn_t...
num_user_for_reviews                                                       623
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2012
actor_2_facebook_likes                                                    3000
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     74000
Name: 931, dtype: object
color                                                                    Color
director_name                                                  James L. Brooks
num_critic_for_reviews                                                     156
duration                                                                   139
director_facebook_likes                                                    274
actor_3_facebook_likes                                                     285
actor_2_name                                                    Yeardley Smith
actor_1_facebook_likes                                                     625
gross                                                              1.47637e+08
genres                                                    Comedy|Drama|Romance
actor_1_name                                                    Lupe Ontiveros
movie_title                                                As Good as It Gets 
num_voted_users                                                         224671
cast_total_facebook_likes                                                 1474
actor_3_name                                                    Shirley Knight
facenumber_in_poster                                                         0
plot_keywords                dog|friendship|neighbor|unlikely friendship|wr...
movie_imdb_link              http://www.imdb.com/title/tt0119822/?ref_=fn_t...
num_user_for_reviews                                                       470
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     440
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 932, dtype: object
color                                                                    Color
director_name                                                      Tom Shadyac
num_critic_for_reviews                                                      55
duration                                                                   115
director_facebook_likes                                                    293
actor_3_facebook_likes                                                     878
actor_2_name                                            Philip Seymour Hoffman
actor_1_facebook_likes                                                   49000
gross                                                              1.35015e+08
genres                                          Biography|Comedy|Drama|Romance
actor_1_name                                                    Robin Williams
movie_title                                                       Patch Adams 
num_voted_users                                                          80580
cast_total_facebook_likes                                                74382
actor_3_name                                                     Monica Potter
facenumber_in_poster                                                         1
plot_keywords                 doctor|hospital|mental institution|nurse|student
movie_imdb_link              http://www.imdb.com/title/tt0129290/?ref_=fn_t...
num_user_for_reviews                                                       375
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                1998
actor_2_facebook_likes                                                   22000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 933, dtype: object
color                                                                    Color
director_name                                                       Adam McKay
num_critic_for_reviews                                                     272
duration                                                                   143
director_facebook_likes                                                    285
actor_3_facebook_likes                                                    7000
actor_2_name                                                      Will Ferrell
actor_1_facebook_likes                                                   11000
gross                                                              2.17531e+06
genres                                                                  Comedy
actor_1_name                                                     Harrison Ford
movie_title                                 Anchorman 2: The Legend Continues 
num_voted_users                                                         131227
cast_total_facebook_likes                                                28176
actor_3_name                                                      Steve Carell
facenumber_in_poster                                                         2
plot_keywords                fame|father son relationship|interracial kiss|...
movie_imdb_link              http://www.imdb.com/title/tt1229340/?ref_=fn_t...
num_user_for_reviews                                                       346
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2013
actor_2_facebook_likes                                                    8000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     41000
Name: 934, dtype: object
color                                                                    Color
director_name                                                     Steven Brill
num_critic_for_reviews                                                     117
duration                                                                    96
director_facebook_likes                                                     65
actor_3_facebook_likes                                                     828
actor_2_name                                                      Adam Sandler
actor_1_facebook_likes                                                   12000
gross                                                              1.26203e+08
genres                                                          Comedy|Romance
actor_1_name                                                     Steve Buscemi
movie_title                                                         Mr. Deeds 
num_voted_users                                                         110432
cast_total_facebook_likes                                                26826
actor_3_name                                                   Peter Gallagher
facenumber_in_poster                                                         1
plot_keywords                abbreviation in title|reporter|small town|sudd...
movie_imdb_link              http://www.imdb.com/title/tt0280590/?ref_=fn_t...
num_user_for_reviews                                                       309
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2002
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 935, dtype: object
color                                                                    Color
director_name                                                      J.J. Abrams
num_critic_for_reviews                                                     539
duration                                                                   112
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     417
actor_2_name                                                       AJ Michalka
actor_1_facebook_likes                                                    1000
gross                                                              1.26975e+08
genres                                                 Mystery|Sci-Fi|Thriller
actor_1_name                                                     Joel Courtney
movie_title                                                           Super 8 
num_voted_users                                                         287822
cast_total_facebook_likes                                                 3388
actor_3_name                                                        Zach Mills
facenumber_in_poster                                                         0
plot_keywords                   deputy|group of friends|time|train|train crash
movie_imdb_link              http://www.imdb.com/title/tt1650062/?ref_=fn_t...
num_user_for_reviews                                                       849
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2011
actor_2_facebook_likes                                                     560
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     37000
Name: 936, dtype: object
color                                                                    Color
director_name                                                Steven Soderbergh
num_critic_for_reviews                                                     169
duration                                                                   131
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     658
actor_2_name                                                     Albert Finney
actor_1_facebook_likes                                                    8000
gross                                                              1.25549e+08
genres                                                         Biography|Drama
actor_1_name                                                     Julia Roberts
movie_title                                                   Erin Brockovich 
num_voted_users                                                         135246
cast_total_facebook_likes                                                10003
actor_3_name                                                  Conchata Ferrell
facenumber_in_poster                                                         0
plot_keywords                contamination|corporate crime|environmental is...
movie_imdb_link              http://www.imdb.com/title/tt0195685/?ref_=fn_t...
num_user_for_reviews                                                       498
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.2e+07
title_year                                                                2000
actor_2_facebook_likes                                                     883
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 937, dtype: object
color                                                                    Color
director_name                                                    Donald Petrie
num_critic_for_reviews                                                     140
duration                                                                   116
director_facebook_likes                                                     80
actor_3_facebook_likes                                                     651
actor_2_name                                                     Adam Goldberg
actor_1_facebook_likes                                                   11000
gross                                                              1.05808e+08
genres                                                          Comedy|Romance
actor_1_name                                               Matthew McConaughey
movie_title                                      How to Lose a Guy in 10 Days 
num_voted_users                                                         156717
cast_total_facebook_likes                                                14087
actor_3_name                                                     Thomas Lennon
facenumber_in_poster                                                         2
plot_keywords                advertising executive|diamond|magazine|party|w...
movie_imdb_link              http://www.imdb.com/title/tt0251127/?ref_=fn_t...
num_user_for_reviews                                                       357
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2003
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 938, dtype: object
color                                                                    Color
director_name                                                        Phil Lord
num_critic_for_reviews                                                     330
duration                                                                   112
director_facebook_likes                                                     97
actor_3_facebook_likes                                                     584
actor_2_name                                                     Craig Roberts
actor_1_facebook_likes                                                   17000
gross                                                              1.91616e+08
genres                                                     Action|Comedy|Crime
actor_1_name                                                    Channing Tatum
movie_title                                                    22 Jump Street 
num_voted_users                                                         258186
cast_total_facebook_likes                                                19428
actor_3_name                                                Amber Stevens West
facenumber_in_poster                                                         2
plot_keywords                    college|drugs|hidden camera|tattoo|undercover
movie_imdb_link              http://www.imdb.com/title/tt2294449/?ref_=fn_t...
num_user_for_reviews                                                       322
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     920
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     24000
Name: 939, dtype: object
color                                                                    Color
director_name                                                      Neil Jordan
num_critic_for_reviews                                                     120
duration                                                                   123
director_facebook_likes                                                    277
actor_3_facebook_likes                                                    4000
actor_2_name                                                        Tom Cruise
actor_1_facebook_likes                                                   11000
gross                                                              1.05265e+08
genres                                                    Drama|Fantasy|Horror
actor_1_name                                                         Brad Pitt
movie_title                  Interview with the Vampire: The Vampire Chroni...
num_voted_users                                                         239752
cast_total_facebook_likes                                                25697
actor_3_name                                                     Kirsten Dunst
facenumber_in_poster                                                         0
plot_keywords                betrayal|dangerous friend|gothic|monster as vi...
movie_imdb_link              http://www.imdb.com/title/tt0110148/?ref_=fn_t...
num_user_for_reviews                                                       406
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                1994
actor_2_facebook_likes                                                   10000
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 940, dtype: object
color                                                                    Color
director_name                                                      Peyton Reed
num_critic_for_reviews                                                     190
duration                                                                   104
director_facebook_likes                                                    235
actor_3_facebook_likes                                                    1000
actor_2_name                                                   Zooey Deschanel
actor_1_facebook_likes                                                   14000
gross                                                              9.76802e+07
genres                                                          Comedy|Romance
actor_1_name                                                    Bradley Cooper
movie_title                                                           Yes Man 
num_voted_users                                                         271691
cast_total_facebook_likes                                                29505
actor_3_name                                                   Danny Masterson
facenumber_in_poster                                                         1
plot_keywords                        best friend|dvd|girlfriend|loan|self help
movie_imdb_link              http://www.imdb.com/title/tt1068680/?ref_=fn_t...
num_user_for_reviews                                                       243
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2008
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 941, dtype: object
color                                                                    Color
director_name                                          Rawson Marshall Thurber
num_critic_for_reviews                                                     177
duration                                                                   107
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     569
actor_2_name                                                Thomas Kretschmann
actor_1_facebook_likes                                                   12000
gross                                                              1.26089e+08
genres                                                     Action|Comedy|Crime
actor_1_name                                                    Dwayne Johnson
movie_title                                              Central Intelligence 
num_voted_users                                                          33354
cast_total_facebook_likes                                                14569
actor_3_name                                                        Megan Park
facenumber_in_poster                                                         2
plot_keywords                accountant|blooper|espionage|facebook|high sch...
movie_imdb_link              http://www.imdb.com/title/tt1489889/?ref_=fn_t...
num_user_for_reviews                                                       110
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2016
actor_2_facebook_likes                                                     919
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 942, dtype: object
color                                                                    Color
director_name                                                   Chris Columbus
num_critic_for_reviews                                                      65
duration                                                                   124
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     701
actor_2_name                                                        Liam Aiken
actor_1_facebook_likes                                                    8000
gross                                                              9.10308e+07
genres                                                            Comedy|Drama
actor_1_name                                                     Julia Roberts
movie_title                                                           Stepmom 
num_voted_users                                                          46482
cast_total_facebook_likes                                                 9988
actor_3_name                                                   Herbert Russell
facenumber_in_poster                                                         2
plot_keywords                attorney|cancer|custody|fashion photographer|p...
movie_imdb_link              http://www.imdb.com/title/tt0120686/?ref_=fn_t...
num_user_for_reviews                                                       252
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     818
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 943, dtype: object
color                                                                    Color
director_name                                                      Sean Anders
num_critic_for_reviews                                                     145
duration                                                                    96
director_facebook_likes                                                     51
actor_3_facebook_likes                                                     322
actor_2_name                                                  Linda Cardellini
actor_1_facebook_likes                                                    8000
gross                                                              1.50315e+08
genres                                                           Comedy|Family
actor_1_name                                                      Will Ferrell
movie_title                                                      Daddy's Home 
num_voted_users                                                          54010
cast_total_facebook_likes                                                10886
actor_3_name                                                     Mark L. Young
facenumber_in_poster                                                         2
plot_keywords                biological father|dad|drinking|product placeme...
movie_imdb_link              http://www.imdb.com/title/tt1528854/?ref_=fn_t...
num_user_for_reviews                                                       130
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2015
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     13000
Name: 944, dtype: object
color                                                                    Color
director_name                                                     Rob Marshall
num_critic_for_reviews                                                     321
duration                                                                   125
director_facebook_likes                                                    252
actor_3_facebook_likes                                                   10000
actor_2_name                                                      Meryl Streep
actor_1_facebook_likes                                                   40000
gross                                                              1.27997e+08
genres                                  Adventure|Comedy|Drama|Fantasy|Musical
actor_1_name                                                       Johnny Depp
movie_title                                                    Into the Woods 
num_voted_users                                                         101178
cast_total_facebook_likes                                                62837
actor_3_name                                                     Anna Kendrick
facenumber_in_poster                                                         1
plot_keywords                based on stage musical|cinderella|little red r...
movie_imdb_link              http://www.imdb.com/title/tt2180411/?ref_=fn_t...
num_user_for_reviews                                                       779
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   5e+07
title_year                                                                2014
actor_2_facebook_likes                                                   11000
imdb_score                                                                   6
aspect_ratio                                                              2.39
movie_facebook_likes                                                     90000
Name: 945, dtype: object
color                                                                    Color
director_name                                                        Spike Lee
num_critic_for_reviews                                                     230
duration                                                                   129
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     277
actor_2_name                                                     James Ransone
actor_1_facebook_likes                                                   18000
gross                                                              8.85046e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                                        Inside Man 
num_voted_users                                                         273108
cast_total_facebook_likes                                                19148
actor_3_name                                                      Peter Gerety
facenumber_in_poster                                                         2
plot_keywords                         bank|detective|negotiation|police|robber
movie_imdb_link              http://www.imdb.com/title/tt0454848/?ref_=fn_t...
num_user_for_reviews                                                       646
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     412
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 946, dtype: object
color                                                                    Color
director_name                                                  Brian Helgeland
num_critic_for_reviews                                                     143
duration                                                                    90
director_facebook_likes                                                    241
actor_3_facebook_likes                                                     416
actor_2_name                                                Deborah Kara Unger
actor_1_facebook_likes                                                    1000
gross                                                              8.15174e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                         Bill Duke
movie_title                                                           Payback 
num_voted_users                                                         111368
cast_total_facebook_likes                                                 3148
actor_3_name                                                    William Devane
facenumber_in_poster                                                         1
plot_keywords                    anti hero|criminal|greed|prostitute|tough guy
movie_imdb_link              http://www.imdb.com/title/tt0120784/?ref_=fn_t...
num_user_for_reviews                                                       394
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     495
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 947, dtype: object
color                                                                    Color
director_name                                                   Frank Marshall
num_critic_for_reviews                                                      55
duration                                                                   109
director_facebook_likes                                                    155
actor_3_facebook_likes                                                     293
actor_2_name                                                     Joe Don Baker
actor_1_facebook_likes                                                     426
gross                                                              8.10223e+07
genres                                         Action|Adventure|Mystery|Sci-Fi
actor_1_name                                                       Dylan Walsh
movie_title                                                             Congo 
num_voted_users                                                          34471
cast_total_facebook_likes                                                 1761
actor_3_name                                                      Grant Heslov
facenumber_in_poster                                                         0
plot_keywords                         captain|congo|expedition|laser|lost city
movie_imdb_link              http://www.imdb.com/title/tt0112715/?ref_=fn_t...
num_user_for_reviews                                                       147
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                1995
actor_2_facebook_likes                                                     387
imdb_score                                                                   5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 948, dtype: object
color                                                                    Color
director_name                                                    Cameron Crowe
num_critic_for_reviews                                                     257
duration                                                                   124
director_facebook_likes                                                    488
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Matt Damon
actor_1_facebook_likes                                                   19000
gross                                                              7.56219e+07
genres                                                     Comedy|Drama|Family
actor_1_name                                                Scarlett Johansson
movie_title                                                   We Bought a Zoo 
num_voted_users                                                         111003
cast_total_facebook_likes                                                36873
actor_3_name                                                 Stephanie Szostak
facenumber_in_poster                                                         3
plot_keywords                blocked road|father son relationship|love at f...
movie_imdb_link              http://www.imdb.com/title/tt1389137/?ref_=fn_t...
num_user_for_reviews                                                       199
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2011
actor_2_facebook_likes                                                   13000
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     22000
Name: 949, dtype: object
color                                                                    Color
director_name                                                      Alex Proyas
num_critic_for_reviews                                                     279
duration                                                                   121
director_facebook_likes                                                    295
actor_3_facebook_likes                                                     329
actor_2_name                                                    Ben Mendelsohn
actor_1_facebook_likes                                                   12000
gross                                                              7.99481e+07
genres                                           Drama|Mystery|Sci-Fi|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                                           Knowing 
num_voted_users                                                         186879
cast_total_facebook_likes                                                13421
actor_3_name                                               Chandler Canterbury
facenumber_in_poster                                                         0
plot_keywords                disaster|end of the world|number|student|time ...
movie_imdb_link              http://www.imdb.com/title/tt0448011/?ref_=fn_t...
num_user_for_reviews                                                       791
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     748
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 950, dtype: object
color                                                                    Color
director_name                                                          Tom Dey
num_critic_for_reviews                                                     143
duration                                                                    95
director_facebook_likes                                                      9
actor_3_facebook_likes                                                   11000
actor_2_name                                               Matthew McConaughey
actor_1_facebook_likes                                                   14000
gross                                                              8.86582e+07
genres                                                          Comedy|Romance
actor_1_name                                                    Bradley Cooper
movie_title                                                 Failure to Launch 
num_voted_users                                                          58412
cast_total_facebook_likes                                                37967
actor_3_name                                                   Zooey Deschanel
facenumber_in_poster                                                         2
plot_keywords                        friend|intervention|moving|secret|slacker
movie_imdb_link              http://www.imdb.com/title/tt0427229/?ref_=fn_t...
num_user_for_reviews                                                       242
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2006
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 951, dtype: object
color                                                                    Color
director_name                                                     Hideo Nakata
num_critic_for_reviews                                                     196
duration                                                                   128
director_facebook_likes                                                     62
actor_3_facebook_likes                                                     874
actor_2_name                                                         Gary Cole
actor_1_facebook_likes                                                    6000
gross                                                              7.58883e+07
genres                                                          Horror|Mystery
actor_1_name                                                       Naomi Watts
movie_title                                                      The Ring Two 
num_voted_users                                                          71153
cast_total_facebook_likes                                                10163
actor_3_name                                                      Sissy Spacek
facenumber_in_poster                                                         0
plot_keywords                cartoon on tv|foreign language adaptation|seco...
movie_imdb_link              http://www.imdb.com/title/tt0377109/?ref_=fn_t...
num_user_for_reviews                                                       560
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2005
actor_2_facebook_likes                                                     989
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 952, dtype: object
color                                                                    Color
director_name                                                    Glenn Ficarra
num_critic_for_reviews                                                     310
duration                                                                   118
director_facebook_likes                                                     43
actor_3_facebook_likes                                                    7000
actor_2_name                                                        Emma Stone
actor_1_facebook_likes                                                   33000
gross                                                              8.42449e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Ryan Gosling
movie_title                                              Crazy, Stupid, Love. 
num_voted_users                                                         375456
cast_total_facebook_likes                                                57426
actor_3_name                                                      Steve Carell
facenumber_in_poster                                                         7
plot_keywords                     bar|divorce|friend|girl|male objectification
movie_imdb_link              http://www.imdb.com/title/tt1570728/?ref_=fn_t...
num_user_for_reviews                                                       292
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2011
actor_2_facebook_likes                                                   15000
imdb_score                                                                 7.4
aspect_ratio                                                              2.39
movie_facebook_likes                                                     44000
Name: 953, dtype: object
color                                                                    Color
director_name                                                     Peter Hewitt
num_critic_for_reviews                                                     116
duration                                                                    80
director_facebook_likes                                                     12
actor_3_facebook_likes                                                      58
actor_2_name                                         Mark Christopher Lawrence
actor_1_facebook_likes                                                   13000
gross                                                              7.53677e+07
genres                                         Animation|Comedy|Family|Fantasy
actor_1_name                                                       Bill Murray
movie_title                                                          Garfield 
num_voted_users                                                          58961
cast_total_facebook_likes                                                13430
actor_3_name                                                     Michael Monks
facenumber_in_poster                                                         0
plot_keywords                          cat|dog|first part|lasagna|veterinarian
movie_imdb_link              http://www.imdb.com/title/tt0356634/?ref_=fn_t...
num_user_for_reviews                                                       232
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 3.5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     258
imdb_score                                                                   5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       795
Name: 954, dtype: object
color                                                                    Color
director_name                                                         Joe Roth
num_critic_for_reviews                                                     105
duration                                                                    99
director_facebook_likes                                                    148
actor_3_facebook_likes                                                     660
actor_2_name                                                      Cheech Marin
actor_1_facebook_likes                                                    2000
gross                                                              7.37019e+07
genres                                                           Comedy|Family
actor_1_name                                                  Jamie Lee Curtis
movie_title                                         Christmas with the Kranks 
num_voted_users                                                          27548
cast_total_facebook_likes                                                 6729
actor_3_name                                                        Jake Busey
facenumber_in_poster                                                         1
plot_keywords                act of kindness|christmas|christmas eve|neighb...
movie_imdb_link              http://www.imdb.com/title/tt0388419/?ref_=fn_t...
num_user_for_reviews                                                       209
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                2004
actor_2_facebook_likes                                                     843
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 955, dtype: object
color                                                                    Color
director_name                                                   Bennett Miller
num_critic_for_reviews                                                     419
duration                                                                   133
director_facebook_likes                                                    152
actor_3_facebook_likes                                                   11000
actor_2_name                                                      Robin Wright
actor_1_facebook_likes                                                   22000
gross                                                              7.56055e+07
genres                                                   Biography|Drama|Sport
actor_1_name                                            Philip Seymour Hoffman
movie_title                                                         Moneyball 
num_voted_users                                                         283563
cast_total_facebook_likes                                                53094
actor_3_name                                                         Brad Pitt
facenumber_in_poster                                                         1
plot_keywords                  baseball|meeting|statistics|strategy|voice over
movie_imdb_link              http://www.imdb.com/title/tt1210166/?ref_=fn_t...
num_user_for_reviews                                                       312
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2011
actor_2_facebook_likes                                                   18000
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     27000
Name: 956, dtype: object
color                                                                    Color
director_name                                                Wolfgang Petersen
num_critic_for_reviews                                                      64
duration                                                                   127
director_facebook_likes                                                    249
actor_3_facebook_likes                                                     808
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   18000
gross                                                              6.78236e+07
genres                                                   Action|Drama|Thriller
actor_1_name                                                      Kevin Spacey
movie_title                                                          Outbreak 
num_voted_users                                                          91176
cast_total_facebook_likes                                                30383
actor_3_name                                                        Rene Russo
facenumber_in_poster                                                         3
plot_keywords                         disease|epidemic|monkey|quarantine|virus
movie_imdb_link              http://www.imdb.com/title/tt0114069/?ref_=fn_t...
num_user_for_reviews                                                       130
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1995
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 957, dtype: object
color                                                                    Color
director_name                                               Jaume Collet-Serra
num_critic_for_reviews                                                     359
duration                                                                   106
director_facebook_likes                                                    174
actor_3_facebook_likes                                                     660
actor_2_name                                                       Nate Parker
actor_1_facebook_likes                                                   14000
gross                                                              9.14394e+07
genres                                                 Action|Mystery|Thriller
actor_1_name                                                       Liam Neeson
movie_title                                                          Non-Stop 
num_voted_users                                                         200647
cast_total_facebook_likes                                                16967
actor_3_name                                                     Scoot McNairy
facenumber_in_poster                                                         0
plot_keywords                air marshal|death|passenger|terrorist|transatl...
movie_imdb_link              http://www.imdb.com/title/tt2024469/?ref_=fn_t...
num_user_for_reviews                                                       384
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     664
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     24000
Name: 958, dtype: object
color                                                                    Color
director_name                                                     Andy Fickman
num_critic_for_reviews                                                     166
duration                                                                    98
director_facebook_likes                                                     99
actor_3_facebook_likes                                                     433
actor_2_name                                                       Billy Brown
actor_1_facebook_likes                                                   12000
gross                                                              6.71282e+07
genres                         Action|Adventure|Family|Fantasy|Sci-Fi|Thriller
actor_1_name                                                    Dwayne Johnson
movie_title                                            Race to Witch Mountain 
num_voted_users                                                          43328
cast_total_facebook_likes                                                14007
actor_3_name                                                 Tom Everett Scott
facenumber_in_poster                                                         3
plot_keywords                           alien|military|mountain|spacecraft|ufo
movie_imdb_link              http://www.imdb.com/title/tt1075417/?ref_=fn_t...
num_user_for_reviews                                                       110
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     536
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 959, dtype: object
color                                                                    Color
director_name                                                   James McTeigue
num_critic_for_reviews                                                     525
duration                                                                   132
director_facebook_likes                                                    160
actor_3_facebook_likes                                                     443
actor_2_name                                                      Eddie Marsan
actor_1_facebook_likes                                                   20000
gross                                                              7.04968e+07
genres                                                   Action|Drama|Thriller
actor_1_name                                                   Natalie Portman
movie_title                                                    V for Vendetta 
num_voted_users                                                         791783
cast_total_facebook_likes                                                22417
actor_3_name                                                     Rupert Graves
facenumber_in_poster                                                         1
plot_keywords                 dystopia|freedom|government|revolution|terrorist
movie_imdb_link              http://www.imdb.com/title/tt0434409/?ref_=fn_t...
num_user_for_reviews                                                      2042
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.4e+07
title_year                                                                2005
actor_2_facebook_likes                                                     979
imdb_score                                                                 8.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     48000
Name: 960, dtype: object
color                                                                    Color
director_name                                                     David Dobkin
num_critic_for_reviews                                                     165
duration                                                                   114
director_facebook_likes                                                     71
actor_3_facebook_likes                                                      55
actor_2_name                                               Anna-Louise Plowman
actor_1_facebook_likes                                                     154
gross                                                              6.04702e+07
genres                                                 Action|Adventure|Comedy
actor_1_name                                                         Fann Wong
movie_title                                                  Shanghai Knights 
num_voted_users                                                          81444
cast_total_facebook_likes                                                  428
actor_3_name                                                  Georgina Chapman
facenumber_in_poster                                                         2
plot_keywords                         1880s|arrow|imperial seal|murder|revenge
movie_imdb_link              http://www.imdb.com/title/tt0300471/?ref_=fn_t...
num_user_for_reviews                                                       192
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2003
actor_2_facebook_likes                                                     131
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       955
Name: 961, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                       2
duration                                                                    45
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     132
actor_2_name                                                       Gemma Jones
actor_1_facebook_likes                                                     416
gross                                                                      NaN
genres                                                             Crime|Drama
actor_1_name                                                      Bernard Hill
movie_title                                           Unforgotten             
num_voted_users                                                           1824
cast_total_facebook_likes                                                 1816
actor_3_name                                                     Nicola Walker
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt4192812/?ref_=fn_t...
num_user_for_reviews                                                         9
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     171
imdb_score                                                                 7.9
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 962, dtype: object
color                                                                    Color
director_name                                              Matthew O'Callaghan
num_critic_for_reviews                                                      87
duration                                                                    78
director_facebook_likes                                                      5
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Frank Welker
actor_1_facebook_likes                                                    8000
gross                                                              5.83366e+07
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                      Will Ferrell
movie_title                                                    Curious George 
num_voted_users                                                          12845
cast_total_facebook_likes                                                11124
actor_3_name                                                   Alexander Gould
facenumber_in_poster                                                         0
plot_keywords                                  hat|monkey|museum|shrine|yellow
movie_imdb_link              http://www.imdb.com/title/tt0381971/?ref_=fn_t...
num_user_for_reviews                                                       118
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   5e+07
title_year                                                                2006
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       624
Name: 963, dtype: object
color                                                                    Color
director_name                                                  Angela Robinson
num_critic_for_reviews                                                     117
duration                                                                   101
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     541
actor_2_name                                                     Thomas Lennon
actor_1_facebook_likes                                                     660
gross                                                               6.6002e+07
genres                           Adventure|Comedy|Family|Fantasy|Romance|Sport
actor_1_name                                                     Scoot McNairy
movie_title                                               Herbie Fully Loaded 
num_voted_users                                                          36431
cast_total_facebook_likes                                                 2177
actor_3_name                                                      Cheryl Hines
facenumber_in_poster                                                         1
plot_keywords                automobile racing|car|mechanic|nascar|street r...
movie_imdb_link              http://www.imdb.com/title/tt0400497/?ref_=fn_t...
num_user_for_reviews                                                       168
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     651
imdb_score                                                                 4.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 964, dtype: object
color                                                                    Color
director_name                                                      Gary Fleder
num_critic_for_reviews                                                     113
duration                                                                   113
director_facebook_likes                                                     39
actor_3_facebook_likes                                                     477
actor_2_name                                                 Jennifer Esposito
actor_1_facebook_likes                                                    1000
gross                                                              5.49975e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                      Oliver Platt
movie_title                                                  Don't Say a Word 
num_voted_users                                                          40362
cast_total_facebook_likes                                                 3341
actor_3_name                                                      Conrad Goode
facenumber_in_poster                                                         0
plot_keywords                mental institution|post traumatic stress|psych...
movie_imdb_link              http://www.imdb.com/title/tt0260866/?ref_=fn_t...
num_user_for_reviews                                                       248
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2001
actor_2_facebook_likes                                                     912
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       970
Name: 965, dtype: object
color                                                                    Color
director_name                                                    Tommy Wirkola
num_critic_for_reviews                                                     349
duration                                                                    98
director_facebook_likes                                                     75
actor_3_facebook_likes                                                     467
actor_2_name                                                       Derek Mears
actor_1_facebook_likes                                                   10000
gross                                                              5.56821e+07
genres                                                   Action|Fantasy|Horror
actor_1_name                                                     Jeremy Renner
movie_title                                    Hansel & Gretel: Witch Hunters 
num_voted_users                                                         159868
cast_total_facebook_likes                                                11946
actor_3_name                                               Ingrid Bolsø Berdal
facenumber_in_poster                                                         2
plot_keywords                bounty hunter|brother sister team|death of lov...
movie_imdb_link              http://www.imdb.com/title/tt1428538/?ref_=fn_t...
num_user_for_reviews                                                       304
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2013
actor_2_facebook_likes                                                     520
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     45000
Name: 966, dtype: object
color                                                                    Color
director_name                                                      Adrian Lyne
num_critic_for_reviews                                                     152
duration                                                                   124
director_facebook_likes                                                    213
actor_3_facebook_likes                                                     372
actor_2_name                                                 Erik Per Sullivan
actor_1_facebook_likes                                                     838
gross                                                              5.27525e+07
genres                                                          Drama|Thriller
actor_1_name                                                  Olivier Martinez
movie_title                                                        Unfaithful 
num_voted_users                                                          63067
cast_total_facebook_likes                                                 2583
actor_3_name                                                         Chad Lowe
facenumber_in_poster                                                         0
plot_keywords                erotic thriller|infidelity|marital infidelity|...
movie_imdb_link              http://www.imdb.com/title/tt0250797/?ref_=fn_t...
num_user_for_reviews                                                       533
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     593
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 967, dtype: object
color                                                                    Color
director_name                                                      D.J. Caruso
num_critic_for_reviews                                                     288
duration                                                                   109
director_facebook_likes                                                    154
actor_3_facebook_likes                                                     144
actor_2_name                                                  Emily Wickersham
actor_1_facebook_likes                                                   15000
gross                                                              5.50928e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                     Alex Pettyfer
movie_title                                                  I Am Number Four 
num_voted_users                                                         195043
cast_total_facebook_likes                                                15608
actor_3_name                                                    Reuben Langdon
facenumber_in_poster                                                         1
plot_keywords                based on young adult novel|good versus evil|gu...
movie_imdb_link              http://www.imdb.com/title/tt1464540/?ref_=fn_t...
num_user_for_reviews                                                       329
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2011
actor_2_facebook_likes                                                     348
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     27000
Name: 968, dtype: object
color                                                                    Color
director_name                                                   Stephen Gaghan
num_critic_for_reviews                                                     358
duration                                                                   128
director_facebook_likes                                                     79
actor_3_facebook_likes                                                     414
actor_2_name                                                         Amr Waked
actor_1_facebook_likes                                                   13000
gross                                                              5.08153e+07
genres                                                          Drama|Thriller
actor_1_name                                                        Matt Damon
movie_title                                                           Syriana 
num_voted_users                                                         109188
cast_total_facebook_likes                                                14747
actor_3_name                                                      Kayvan Novak
facenumber_in_poster                                                         0
plot_keywords                                 cia|hezbollah|lebanon|oil|prince
movie_imdb_link              http://www.imdb.com/title/tt0365737/?ref_=fn_t...
num_user_for_reviews                                                       625
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     903
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 969, dtype: object
color                                                                    Color
director_name                                                      Michael Bay
num_critic_for_reviews                                                     204
duration                                                                   144
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     681
actor_2_name                                                  James Badge Dale
actor_1_facebook_likes                                                     769
gross                                                              5.28224e+07
genres                                               Action|Drama|Thriller|War
actor_1_name                                                     Toby Stephens
movie_title                                                          13 Hours 
num_voted_users                                                          47764
cast_total_facebook_likes                                                 3580
actor_3_name                                                   David Costabile
facenumber_in_poster                                                         0
plot_keywords                based on true story|cia agent|libya|mercenary|...
movie_imdb_link              http://www.imdb.com/title/tt4172430/?ref_=fn_t...
num_user_for_reviews                                                       219
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2016
actor_2_facebook_likes                                                     726
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     44000
Name: 970, dtype: object
color                                                                    Color
director_name                                               Jorge R. Gutiérrez
num_critic_for_reviews                                                     156
duration                                                                    95
director_facebook_likes                                                     34
actor_3_facebook_likes                                                     679
actor_2_name                                                   Hector Elizondo
actor_1_facebook_likes                                                   17000
gross                                                              5.01506e+07
genres                       Adventure|Animation|Comedy|Family|Fantasy|Romance
actor_1_name                                                    Channing Tatum
movie_title                                                  The Book of Life 
num_voted_users                                                          45580
cast_total_facebook_likes                                                19513
actor_3_name                                                 Ana de la Reguera
facenumber_in_poster                                                         1
plot_keywords                afterlife|bullfight|bullfighting|love triangle...
movie_imdb_link              http://www.imdb.com/title/tt2262227/?ref_=fn_t...
num_user_for_reviews                                                       102
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     995
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 971, dtype: object
color                                                                    Color
director_name                                                Richard Loncraine
num_critic_for_reviews                                                     171
duration                                                                   105
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     935
actor_2_name                                                     Harrison Ford
actor_1_facebook_likes                                                   87000
gross                                                              4.87452e+07
genres                                                          Crime|Thriller
actor_1_name                                                     Jimmy Bennett
movie_title                                                          Firewall 
num_voted_users                                                          50170
cast_total_facebook_likes                                               101383
actor_3_name                                                 Mary Lynn Rajskub
facenumber_in_poster                                                         1
plot_keywords                     architect|bank|cayman islands|meeting|murder
movie_imdb_link              http://www.imdb.com/title/tt0408345/?ref_=fn_t...
num_user_for_reviews                                                       306
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2006
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                       773
Name: 972, dtype: object
color                                                                    Color
director_name                                                   Clint Eastwood
num_critic_for_reviews                                                      76
duration                                                                   121
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     826
actor_2_name                                                     Mark Margolis
actor_1_facebook_likes                                                   16000
gross                                                              5.00072e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                    Clint Eastwood
movie_title                                                    Absolute Power 
num_voted_users                                                          39529
cast_total_facebook_likes                                                19139
actor_3_name                                                       Scott Glenn
facenumber_in_poster                                                         0
plot_keywords                        death|death of wife|murder|thief|violence
movie_imdb_link              http://www.imdb.com/title/tt0118548/?ref_=fn_t...
num_user_for_reviews                                                       142
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1997
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 973, dtype: object
color                                                                    Color
director_name                                                     Ridley Scott
num_critic_for_reviews                                                      97
duration                                                                   125
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     957
actor_2_name                                                        Demi Moore
actor_1_facebook_likes                                                   10000
gross                                                              4.81547e+07
genres                                                        Action|Drama|War
actor_1_name                                                   Viggo Mortensen
movie_title                                                         G.I. Jane 
num_voted_users                                                          60326
cast_total_facebook_likes                                                15569
actor_3_name                                              John Michael Higgins
facenumber_in_poster                                                         1
plot_keywords                feminism|hit in the crotch|kicked in the crotc...
movie_imdb_link              http://www.imdb.com/title/tt0119173/?ref_=fn_t...
num_user_for_reviews                                                       142
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1997
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 974, dtype: object
color                                                                    Color
director_name                                                    David Fincher
num_critic_for_reviews                                                     157
duration                                                                   129
director_facebook_likes                                                  21000
actor_3_facebook_likes                                                     283
actor_2_name                                               Armin Mueller-Stahl
actor_1_facebook_likes                                                     495
gross                                                              4.82656e+07
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                Deborah Kara Unger
movie_title                                                          The Game 
num_voted_users                                                         261069
cast_total_facebook_likes                                                 1397
actor_3_name                                                  Charles Martinet
facenumber_in_poster                                                         1
plot_keywords                birthday|falling through a glass roof|game|hit...
movie_imdb_link              http://www.imdb.com/title/tt0119174/?ref_=fn_t...
num_user_for_reviews                                                       506
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     294
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     25000
Name: 975, dtype: object
color                                                                    Color
director_name                                                  Christophe Gans
num_critic_for_reviews                                                     267
duration                                                                   132
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     368
actor_2_name                                                Deborah Kara Unger
actor_1_facebook_likes                                                     992
gross                                                              4.69826e+07
genres                                                Adventure|Horror|Mystery
actor_1_name                                                    Radha Mitchell
movie_title                                                       Silent Hill 
num_voted_users                                                         172792
cast_total_facebook_likes                                                 1933
actor_3_name                                                       Alice Krige
facenumber_in_poster                                                         0
plot_keywords                gothic|police|police officer|silent hill|sleep...
movie_imdb_link              http://www.imdb.com/title/tt0384537/?ref_=fn_t...
num_user_for_reviews                                                      1740
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     495
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 976, dtype: object
color                                                                    Color
director_name                                                    Howard Deutch
num_critic_for_reviews                                                     118
duration                                                                   118
director_facebook_likes                                                     41
actor_3_facebook_likes                                                     585
actor_2_name                                                       Jon Favreau
actor_1_facebook_likes                                                   18000
gross                                                              4.47371e+07
genres                                                            Comedy|Sport
actor_1_name                                                      Keanu Reeves
movie_title                                                  The Replacements 
num_voted_users                                                          48322
cast_total_facebook_likes                                                24024
actor_3_name                                                       Faizon Love
facenumber_in_poster                                                         1
plot_keywords                coach|football player|misfits|strike|sumo wres...
movie_imdb_link              http://www.imdb.com/title/tt0191397/?ref_=fn_t...
num_user_for_reviews                                                       261
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2000
actor_2_facebook_likes                                                    4000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 977, dtype: object
color                                                                    Color
director_name                                                      Jon Hurwitz
num_critic_for_reviews                                                     291
duration                                                                   113
director_facebook_likes                                                     22
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Dania Ramirez
actor_1_facebook_likes                                                    3000
gross                                                              5.67241e+07
genres                                                                  Comedy
actor_1_name                                                   Alyson Hannigan
movie_title                                                  American Reunion 
num_voted_users                                                         172112
cast_total_facebook_likes                                                 8398
actor_3_name                                                    Natasha Lyonne
facenumber_in_poster                                                         7
plot_keywords                bikini|female female kiss|high school reunion|...
movie_imdb_link              http://www.imdb.com/title/tt1605630/?ref_=fn_t...
num_user_for_reviews                                                       181
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2012
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     39000
Name: 978, dtype: object
color                                                                    Color
director_name                                                     F. Gary Gray
num_critic_for_reviews                                                      68
duration                                                                   140
director_facebook_likes                                                    473
actor_3_facebook_likes                                                     294
actor_2_name                                                   Michael Cudlitz
actor_1_facebook_likes                                                   18000
gross                                                              4.44841e+07
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                      Kevin Spacey
movie_title                                                    The Negotiator 
num_voted_users                                                         107227
cast_total_facebook_likes                                                20152
actor_3_name                                              Siobhan Fallon Hogan
facenumber_in_poster                                                         2
plot_keywords                       hostage|innocence|murder|negotiator|police
movie_imdb_link              http://www.imdb.com/title/tt0120768/?ref_=fn_t...
num_user_for_reviews                                                       279
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     822
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                      3000
Name: 979, dtype: object
color                                                                    Color
director_name                                                     Steven Quale
num_critic_for_reviews                                                     228
duration                                                                    89
director_facebook_likes                                                     77
actor_3_facebook_likes                                                     159
actor_2_name                                               Alycia Debnam-Carey
actor_1_facebook_likes                                                     490
gross                                                              4.75535e+07
genres                                                         Action|Thriller
actor_1_name                                                        Matt Walsh
movie_title                                                    Into the Storm 
num_voted_users                                                          54101
cast_total_facebook_likes                                                 1367
actor_3_name                                                    Scott Lawrence
facenumber_in_poster                                                         0
plot_keywords                      danger|graduation|storm|teenage boy|tornado
movie_imdb_link              http://www.imdb.com/title/tt2106361/?ref_=fn_t...
num_user_for_reviews                                                       210
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     298
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     15000
Name: 980, dtype: object
color                                                                    Color
director_name                                                      John Landis
num_critic_for_reviews                                                      36
duration                                                                   104
director_facebook_likes                                                    644
actor_3_facebook_likes                                                     174
actor_2_name                                                        Jon Tenney
actor_1_facebook_likes                                                     437
gross                                                                4.261e+07
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                                    Louis Lombardi
movie_title                                             Beverly Hills Cop III 
num_voted_users                                                          60293
cast_total_facebook_likes                                                 1093
actor_3_name                                                   Gilbert R. Hill
facenumber_in_poster                                                         1
plot_keywords                california|counterfeit|counterfeit money|money...
movie_imdb_link              http://www.imdb.com/title/tt0109254/?ref_=fn_t...
num_user_for_reviews                                                       114
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                1994
actor_2_facebook_likes                                                     289
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       669
Name: 981, dtype: object
color                                                                    Color
director_name                                                        Joe Dante
num_critic_for_reviews                                                     105
duration                                                                   106
director_facebook_likes                                                    287
actor_3_facebook_likes                                                     767
actor_2_name                                                    Robert Picardo
actor_1_facebook_likes                                                   16000
gross                                                              4.14822e+07
genres                                                   Comedy|Fantasy|Horror
actor_1_name                                                   Christopher Lee
movie_title                                         Gremlins 2: The New Batch 
num_voted_users                                                          68428
cast_total_facebook_likes                                                19610
actor_3_name                                                      Phoebe Cates
facenumber_in_poster                                                         0
plot_keywords                gremlin|horror host|hulk hogan|monster|skyscraper
movie_imdb_link              http://www.imdb.com/title/tt0099700/?ref_=fn_t...
num_user_for_reviews                                                       148
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                1990
actor_2_facebook_likes                                                     823
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 982, dtype: object
color                                                                    Color
director_name                                                     David Dobkin
num_critic_for_reviews                                                     276
duration                                                                   141
director_facebook_likes                                                     71
actor_3_facebook_likes                                                    3000
actor_2_name                                                     Robert Duvall
actor_1_facebook_likes                                                   21000
gross                                                              4.71051e+07
genres                                                             Crime|Drama
actor_1_name                                                 Robert Downey Jr.
movie_title                                                         The Judge 
num_voted_users                                                         136973
cast_total_facebook_likes                                                30183
actor_3_name                                                  Leighton Meester
facenumber_in_poster                                                         1
plot_keywords                courtroom|dysfunctional family|indiana|lawyer|...
movie_imdb_link              http://www.imdb.com/title/tt1872194/?ref_=fn_t...
num_user_for_reviews                                                       275
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2014
actor_2_facebook_likes                                                    3000
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     47000
Name: 983, dtype: object
color                                                                    Color
director_name                                                       Mimi Leder
num_critic_for_reviews                                                      93
duration                                                                   124
director_facebook_likes                                                     75
actor_3_facebook_likes                                                     258
actor_2_name                                                    Holt McCallany
actor_1_facebook_likes                                                     294
gross                                                              4.12563e+07
genres                                                         Action|Thriller
actor_1_name                                               Armin Mueller-Stahl
movie_title                                                    The Peacemaker 
num_voted_users                                                          46451
cast_total_facebook_likes                                                 1289
actor_3_name                                                      Marcel Iures
facenumber_in_poster                                                         2
plot_keywords                nuclear explosion|nuclear weapon|russia|train|...
movie_imdb_link              http://www.imdb.com/title/tt0119874/?ref_=fn_t...
num_user_for_reviews                                                       156
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     273
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 984, dtype: object
color                                                                    Color
director_name                                                   Alexander Witt
num_critic_for_reviews                                                     191
duration                                                                    98
director_facebook_likes                                                     38
actor_3_facebook_likes                                                     706
actor_2_name                                                Thomas Kretschmann
actor_1_facebook_likes                                                   14000
gross                                                              5.07401e+07
genres                                           Action|Horror|Sci-Fi|Thriller
actor_1_name                                                    Milla Jovovich
movie_title                                         Resident Evil: Apocalypse 
num_voted_users                                                         151580
cast_total_facebook_likes                                                16791
actor_3_name                                                         Mike Epps
facenumber_in_poster                                                         1
plot_keywords                cover up|monster|strong female character|stron...
movie_imdb_link              http://www.imdb.com/title/tt0318627/?ref_=fn_t...
num_user_for_reviews                                                       672
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     919
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 985, dtype: object
color                                                                    Color
director_name                                                    Beeban Kidron
num_critic_for_reviews                                                     143
duration                                                                   108
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     186
actor_2_name                                                     Jim Broadbent
actor_1_facebook_likes                                                   14000
gross                                                               4.0203e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                       Colin Firth
movie_title                                 Bridget Jones: The Edge of Reason 
num_voted_users                                                          74315
cast_total_facebook_likes                                                15634
actor_3_name                                                       Celia Imrie
facenumber_in_poster                                                         1
plot_keywords                american actress playing british character|int...
movie_imdb_link              http://www.imdb.com/title/tt0317198/?ref_=fn_t...
num_user_for_reviews                                                       259
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2004
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 986, dtype: object
color                                                                    Color
director_name                                                    Carl Franklin
num_critic_for_reviews                                                     124
duration                                                                   114
director_facebook_likes                                                     73
actor_3_facebook_likes                                                     323
actor_2_name                                                      Sanaa Lathan
actor_1_facebook_likes                                                   18000
gross                                                              4.09053e+07
genres                                            Crime|Drama|Romance|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                                       Out of Time 
num_voted_users                                                          45895
cast_total_facebook_likes                                                19739
actor_3_name                                                  John Billingsley
facenumber_in_poster                                                         3
plot_keywords                cancer|florida|insurance|life insurance policy...
movie_imdb_link              http://www.imdb.com/title/tt0313443/?ref_=fn_t...
num_user_for_reviews                                                       157
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2003
actor_2_facebook_likes                                                     886
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 987, dtype: object
color                                                                    Color
director_name                                                    Steven Seagal
num_critic_for_reviews                                                      47
duration                                                                   101
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     158
actor_2_name                                                         Joan Chen
actor_1_facebook_likes                                                     854
gross                                                              3.85905e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                        Mike Starr
movie_title                                                  On Deadly Ground 
num_voted_users                                                          17997
cast_total_facebook_likes                                                 1860
actor_3_name                                                  Sven-Ole Thorsen
facenumber_in_poster                                                         1
plot_keywords                         environmental|murder|oil|oil spill|tribe
movie_imdb_link              http://www.imdb.com/title/tt0110725/?ref_=fn_t...
num_user_for_reviews                                                       140
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1994
actor_2_facebook_likes                                                     643
imdb_score                                                                 4.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       812
Name: 988, dtype: object
color                                                                    Color
director_name                                                 Robert Rodriguez
num_critic_for_reviews                                                      66
duration                                                                    93
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     717
actor_2_name                                                     Kristin Davis
actor_1_facebook_likes                                                   12000
gross                                                              3.91775e+07
genres                                         Action|Adventure|Family|Fantasy
actor_1_name                                                    Taylor Lautner
movie_title                       The Adventures of Sharkboy and Lavagirl 3-D 
num_voted_users                                                          20310
cast_total_facebook_likes                                                14899
actor_3_name                                                     Taylor Dooley
facenumber_in_poster                                                         1
plot_keywords                            boy|bully|dream|dream sequence|planet
movie_imdb_link              http://www.imdb.com/title/tt0424774/?ref_=fn_t...
num_user_for_reviews                                                       177
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     722
imdb_score                                                                 3.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 989, dtype: object
color                                                                    Color
director_name                                                      Danny Boyle
num_critic_for_reviews                                                     118
duration                                                                   119
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      39
actor_2_name                                                  Virginie Ledoyen
actor_1_facebook_likes                                                   29000
gross                                                              3.97786e+07
genres                                                Adventure|Drama|Thriller
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                         The Beach 
num_voted_users                                                         176169
cast_total_facebook_likes                                                29461
actor_3_name                                            Peter Youngblood Hills
facenumber_in_poster                                                         0
plot_keywords                                love|map|paradise|thailand|travel
movie_imdb_link              http://www.imdb.com/title/tt0163978/?ref_=fn_t...
num_user_for_reviews                                                       548
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     414
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 990, dtype: object
color                                                                    Color
director_name                                                   Garry Marshall
num_critic_for_reviews                                                      93
duration                                                                   119
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     434
actor_2_name                                                  Felicity Huffman
actor_1_facebook_likes                                                     627
gross                                                              3.74861e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                    Amber Valletta
movie_title                                                     Raising Helen 
num_voted_users                                                          30890
cast_total_facebook_likes                                                 2052
actor_3_name                                                   Spencer Breslin
facenumber_in_poster                                                         1
plot_keywords                fashion show|female protagonist|love|pastor|qu...
movie_imdb_link              http://www.imdb.com/title/tt0350028/?ref_=fn_t...
num_user_for_reviews                                                       106
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     508
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       718
Name: 991, dtype: object
color                                                                    Color
director_name                                                   James McTeigue
num_critic_for_reviews                                                     235
duration                                                                    99
director_facebook_likes                                                    160
actor_3_facebook_likes                                                      72
actor_2_name                                                         Ben Miles
actor_1_facebook_likes                                                     330
gross                                                              3.81051e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                        Shô Kosugi
movie_title                                                    Ninja Assassin 
num_voted_users                                                          58349
cast_total_facebook_likes                                                  701
actor_3_name                                                              Rain
facenumber_in_poster                                                         0
plot_keywords                critically bashed|kung fu|martial artist|marti...
movie_imdb_link              http://www.imdb.com/title/tt1186367/?ref_=fn_t...
num_user_for_reviews                                                       194
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2009
actor_2_facebook_likes                                                     119
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 992, dtype: object
color                                                                    Color
director_name                                                        Sam Raimi
num_critic_for_reviews                                                     113
duration                                                                   137
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     432
actor_2_name                                                     Kelly Preston
actor_1_facebook_likes                                                   24000
gross                                                              3.51684e+07
genres                                                     Drama|Romance|Sport
actor_1_name                                                      J.K. Simmons
movie_title                                              For Love of the Game 
num_voted_users                                                          26034
cast_total_facebook_likes                                                25469
actor_3_name                                                Carmine Giovinazzo
facenumber_in_poster                                                         0
plot_keywords                baseball|baseball movie|detroit tigers|perfect...
movie_imdb_link              http://www.imdb.com/title/tt0126916/?ref_=fn_t...
num_user_for_reviews                                                       226
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     743
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 993, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      14
duration                                                                   105
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                       5
actor_2_name                                                   Bruce Alexander
actor_1_facebook_likes                                                     325
gross                                                                      NaN
genres                                                     Crime|Drama|Mystery
actor_1_name                                                       David Jason
movie_title                                      A Touch of Frost             
num_voted_users                                                           4438
cast_total_facebook_likes                                                  344
actor_3_name                                                        John Lyons
facenumber_in_poster                                                         1
plot_keywords                cult tv|death|detective inspector|four word ti...
movie_imdb_link              http://www.imdb.com/title/tt0108967/?ref_=fn_t...
num_user_for_reviews                                                        33
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                       7
imdb_score                                                                 7.8
aspect_ratio                                                              1.33
movie_facebook_likes                                                       361
Name: 994, dtype: object
color                                                                    Color
director_name                                                   Andrew Bergman
num_critic_for_reviews                                                      51
duration                                                                   117
director_facebook_likes                                                     31
actor_3_facebook_likes                                                     210
actor_2_name                                                      Rumer Willis
actor_1_facebook_likes                                                    2000
gross                                                                 3.28e+07
genres                                             Comedy|Crime|Drama|Thriller
actor_1_name                                                        Demi Moore
movie_title                                                        Striptease 
num_voted_users                                                          34896
cast_total_facebook_likes                                                 3016
actor_3_name                                                    Paul Guilfoyle
facenumber_in_poster                                                         1
plot_keywords                bouncer|breasts|congressman|private dancer|str...
movie_imdb_link              http://www.imdb.com/title/tt0117765/?ref_=fn_t...
num_user_for_reviews                                                       118
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                1996
actor_2_facebook_likes                                                     472
imdb_score                                                                 4.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       877
Name: 995, dtype: object
color                                                                    Color
director_name                                                          Tom Dey
num_critic_for_reviews                                                      98
duration                                                                    87
director_facebook_likes                                                      9
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Judy Greer
actor_1_facebook_likes                                                   15000
gross                                                              3.36435e+07
genres                                                           Comedy|Family
actor_1_name                                                        Emma Stone
movie_title                                                         Marmaduke 
num_voted_users                                                          11257
cast_total_facebook_likes                                                20061
actor_3_name                                                      Steve Coogan
facenumber_in_poster                                                         0
plot_keywords                dog|great dane|rivalry|talking animal|talking cat
movie_imdb_link              http://www.imdb.com/title/tt1392197/?ref_=fn_t...
num_user_for_reviews                                                        65
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   5e+07
title_year                                                                2010
actor_2_facebook_likes                                                    2000
imdb_score                                                                 4.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 996, dtype: object
color                                                                    Color
director_name                                                   Clint Eastwood
num_critic_for_reviews                                                     315
duration                                                                   129
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     447
actor_2_name                                                          Jay Mohr
actor_1_facebook_likes                                                   13000
gross                                                              3.27416e+07
genres                                                           Drama|Fantasy
actor_1_name                                                        Matt Damon
movie_title                                                         Hereafter 
num_voted_users                                                          80140
cast_total_facebook_likes                                                14344
actor_3_name                                                  Cécile De France
facenumber_in_poster                                                         0
plot_keywords                death|france|near death experience|tsunami|twi...
movie_imdb_link              http://www.imdb.com/title/tt1212419/?ref_=fn_t...
num_user_for_reviews                                                       323
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2010
actor_2_facebook_likes                                                     563
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 997, dtype: object
color                                                                    Color
director_name                                                 Barbet Schroeder
num_critic_for_reviews                                                     136
duration                                                                   115
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     401
actor_2_name                                                        Chris Penn
actor_1_facebook_likes                                                   33000
gross                                                              3.18749e+07
genres                                                  Crime|Mystery|Thriller
actor_1_name                                                      Ryan Gosling
movie_title                                                 Murder by Numbers 
num_voted_users                                                          43574
cast_total_facebook_likes                                                34606
actor_3_name                                                    Agnes Bruckner
facenumber_in_poster                                                         0
plot_keywords                disposing of a dead body|high school student|m...
movie_imdb_link              http://www.imdb.com/title/tt0264935/?ref_=fn_t...
num_user_for_reviews                                                       302
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     455
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 998, dtype: object
color                                                          Black and White
director_name                                                   Richard Donner
num_critic_for_reviews                                                      61
duration                                                                   132
director_facebook_likes                                                    503
actor_3_facebook_likes                                                     282
actor_2_name                                                Sylvester Stallone
actor_1_facebook_likes                                                   45000
gross                                                              3.03063e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                       Muse Watson
movie_title                                                         Assassins 
num_voted_users                                                          62981
cast_total_facebook_likes                                                58528
actor_3_name                                                       Kelly Rowan
facenumber_in_poster                                                         0
plot_keywords                         assassin|floppy disk|modem|rival|russian
movie_imdb_link              http://www.imdb.com/title/tt0112401/?ref_=fn_t...
num_user_for_reviews                                                        84
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1995
actor_2_facebook_likes                                                   13000
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 999, dtype: object
color                                                                    Color
director_name                                                     Peter Webber
num_critic_for_reviews                                                     209
duration                                                                   131
director_facebook_likes                                                     73
actor_3_facebook_likes                                                     163
actor_2_name                                                   Stephen Walters
actor_1_facebook_likes                                                     879
gross                                                              2.76679e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                           Li Gong
movie_title                                                   Hannibal Rising 
num_voted_users                                                          86374
cast_total_facebook_likes                                                 1344
actor_3_name                                                     Richard Brake
facenumber_in_poster                                                         0
plot_keywords                aunt|cannibalism|faked death|medical student|r...
movie_imdb_link              http://www.imdb.com/title/tt0367959/?ref_=fn_t...
num_user_for_reviews                                                       392
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     184
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                      3000
Name: 1000, dtype: object
color                                                                    Color
director_name                                                       Rob Reiner
num_critic_for_reviews                                                      99
duration                                                                    95
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     323
actor_2_name                                                      Tim Matheson
actor_1_facebook_likes                                                   13000
gross                                                              2.70672e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Bruce Willis
movie_title                                                   The Story of Us 
num_voted_users                                                          18404
cast_total_facebook_likes                                                14706
actor_3_name                                                       Rita Wilson
facenumber_in_poster                                                         1
plot_keywords                four word title|husband wife relationship|male...
movie_imdb_link              http://www.imdb.com/title/tt0160916/?ref_=fn_t...
num_user_for_reviews                                                       150
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     559
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1001, dtype: object
color                                                                    Color
director_name                                                    Andrew Niccol
num_critic_for_reviews                                                     298
duration                                                                   125
director_facebook_likes                                                    487
actor_3_facebook_likes                                                     201
actor_2_name                                               Chandler Canterbury
actor_1_facebook_likes                                                     430
gross                                                               2.6617e+07
genres                                Action|Adventure|Romance|Sci-Fi|Thriller
actor_1_name                                                     J.D. Evermore
movie_title                                                          The Host 
num_voted_users                                                          92461
cast_total_facebook_likes                                                 1300
actor_3_name                                                    Rachel Roberts
facenumber_in_poster                                                         3
plot_keywords                alien|alien creature|body snatching|desert|par...
movie_imdb_link              http://www.imdb.com/title/tt1517260/?ref_=fn_t...
num_user_for_reviews                                                       347
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2013
actor_2_facebook_likes                                                     329
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     43000
Name: 1002, dtype: object
color                                                                    Color
director_name                                                   John McTiernan
num_critic_for_reviews                                                     131
duration                                                                    98
director_facebook_likes                                                    323
actor_3_facebook_likes                                                     511
actor_2_name                                                 Harry Connick Jr.
actor_1_facebook_likes                                                     933
gross                                                              2.65361e+07
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                    Connie Nielsen
movie_title                                                             Basic 
num_voted_users                                                          49926
cast_total_facebook_likes                                                 3357
actor_3_name                                                          Tim Daly
facenumber_in_poster                                                         0
plot_keywords                2000s|army|military crime|necklace yanked off|...
movie_imdb_link              http://www.imdb.com/title/tt0264395/?ref_=fn_t...
num_user_for_reviews                                                       286
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2003
actor_2_facebook_likes                                                     631
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1003, dtype: object
color                                                                    Color
director_name                                                   Clint Eastwood
num_critic_for_reviews                                                     146
duration                                                                   110
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     581
actor_2_name                                                   Anjelica Huston
actor_1_facebook_likes                                                   16000
gross                                                              2.61995e+07
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                    Clint Eastwood
movie_title                                                        Blood Work 
num_voted_users                                                          34356
cast_total_facebook_likes                                                18635
actor_3_name                                                      Rick Hoffman
facenumber_in_poster                                                         1
plot_keywords                boat|heart transplant|murder|serial killer|sister
movie_imdb_link              http://www.imdb.com/title/tt0309377/?ref_=fn_t...
num_user_for_reviews                                                       260
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2002
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       705
Name: 1004, dtype: object
color                                                                    Color
director_name                                                       Tom Tykwer
num_critic_for_reviews                                                     245
duration                                                                   118
director_facebook_likes                                                    670
actor_3_facebook_likes                                                     294
actor_2_name                                                  Brían F. O'Byrne
actor_1_facebook_likes                                                    6000
gross                                                              2.54505e+07
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                       Naomi Watts
movie_title                                                 The International 
num_voted_users                                                          80196
cast_total_facebook_likes                                                 7654
actor_3_name                                               Armin Mueller-Stahl
facenumber_in_poster                                                         0
plot_keywords                     bank|chase|district attorney|interpol|murder
movie_imdb_link              http://www.imdb.com/title/tt0963178/?ref_=fn_t...
num_user_for_reviews                                                       190
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     450
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1005, dtype: object
color                                                                    Color
director_name                                                   John Carpenter
num_critic_for_reviews                                                     104
duration                                                                   101
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     764
actor_2_name                                                    Valeria Golino
actor_1_facebook_likes                                                   12000
gross                                                              2.54072e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                     Steve Buscemi
movie_title                                                  Escape from L.A. 
num_voted_users                                                          54021
cast_total_facebook_likes                                                15935
actor_3_name                                                   Michelle Forbes
facenumber_in_poster                                                         0
plot_keywords                escape|island|los angeles california|machismo|...
movie_imdb_link              http://www.imdb.com/title/tt0116225/?ref_=fn_t...
num_user_for_reviews                                                       227
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1996
actor_2_facebook_likes                                                     898
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1006, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                       4
duration                                                                    60
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     398
actor_2_name                                                   Brittany Curran
actor_1_facebook_likes                                                     629
gross                                                                      NaN
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                        Grey Damon
movie_title                                               Twisted             
num_voted_users                                                           7945
cast_total_facebook_likes                                                 2758
actor_3_name                                                        Aaron Hill
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2355844/?ref_=fn_t...
num_user_for_reviews                                                        22
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     512
imdb_score                                                                 7.5
aspect_ratio                                                                16
movie_facebook_likes                                                       915
Name: 1007, dtype: object
color                                                                    Color
director_name                                                        Brad Bird
num_critic_for_reviews                                                     162
duration                                                                    90
director_facebook_likes                                                    663
actor_3_facebook_likes                                                     521
actor_2_name                                                 Harry Connick Jr.
actor_1_facebook_likes                                                   14000
gross                                                              2.31593e+07
genres                       Action|Adventure|Animation|Comedy|Drama|Family...
actor_1_name                                                        Vin Diesel
movie_title                                                    The Iron Giant 
num_voted_users                                                         128455
cast_total_facebook_likes                                                16358
actor_3_name                                                    M. Emmet Walsh
facenumber_in_poster                                                         1
plot_keywords                          boy|friend|government agent|maine|robot
movie_imdb_link              http://www.imdb.com/title/tt0129167/?ref_=fn_t...
num_user_for_reviews                                                       514
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   7e+07
title_year                                                                1999
actor_2_facebook_likes                                                     631
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1008, dtype: object
color                                                                    Color
director_name                                                     Wes Anderson
num_critic_for_reviews                                                     259
duration                                                                   119
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     639
actor_2_name                                                   Anjelica Huston
actor_1_facebook_likes                                                   13000
gross                                                              2.40067e+07
genres                                                  Adventure|Comedy|Drama
actor_1_name                                                       Bill Murray
movie_title                                The Life Aquatic with Steve Zissou 
num_voted_users                                                         139535
cast_total_facebook_likes                                                15757
actor_3_name                                               Matthew Gray Gubler
facenumber_in_poster                                                         8
plot_keywords                          expedition|oceanographer|sea|shark|team
movie_imdb_link              http://www.imdb.com/title/tt0362270/?ref_=fn_t...
num_user_for_reviews                                                       632
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2004
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1009, dtype: object
color                                                                    Color
director_name                                                        Gary Ross
num_critic_for_reviews                                                      79
duration                                                                   139
director_facebook_likes                                                    378
actor_3_facebook_likes                                                     303
actor_2_name                                                    Donald Watkins
actor_1_facebook_likes                                                   11000
gross                                                                2.039e+07
genres                                      Action|Biography|Drama|History|War
actor_1_name                                               Matthew McConaughey
movie_title                                               Free State of Jones 
num_voted_users                                                           3077
cast_total_facebook_likes                                                12786
actor_3_name                                                   Jessica Collins
facenumber_in_poster                                                         1
plot_keywords                      american civil war|civil war|u.s. civil war
movie_imdb_link              http://www.imdb.com/title/tt1124037/?ref_=fn_t...
num_user_for_reviews                                                        47
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2016
actor_2_facebook_likes                                                     552
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 1010, dtype: object
color                                                                    Color
director_name                                                      Alan Parker
num_critic_for_reviews                                                     141
duration                                                                   130
director_facebook_likes                                                    317
actor_3_facebook_likes                                                     256
actor_2_name                                                      Kate Winslet
actor_1_facebook_likes                                                   18000
gross                                                              1.95937e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                      Kevin Spacey
movie_title                                            The Life of David Gale 
num_voted_users                                                          88270
cast_total_facebook_likes                                                32637
actor_3_name                                                       Matt Craven
facenumber_in_poster                                                         0
plot_keywords                            activist|death|death row|murder|texas
movie_imdb_link              http://www.imdb.com/title/tt0289992/?ref_=fn_t...
num_user_for_reviews                                                       420
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2003
actor_2_facebook_likes                                                   14000
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1011, dtype: object
color                                                                    Color
director_name                                                    Stephen Herek
num_critic_for_reviews                                                      59
duration                                                                   100
director_facebook_likes                                                     65
actor_3_facebook_likes                                                     730
actor_2_name                                                   Vanessa Ferlito
actor_1_facebook_likes                                                    1000
gross                                                              1.91182e+07
genres                                                           Action|Comedy
actor_1_name                                                  Christina Milian
movie_title                                                  Man of the House 
num_voted_users                                                          19829
cast_total_facebook_likes                                                 6171
actor_3_name                                                      Kelli Garner
facenumber_in_poster                                                         5
plot_keywords                cheerleader|cheerleading movie|neo noir|neo we...
movie_imdb_link              http://www.imdb.com/title/tt0331933/?ref_=fn_t...
num_user_for_reviews                                                        94
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2005
actor_2_facebook_likes                                                     923
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       779
Name: 1012, dtype: object
color                                                                    Color
director_name                                               Jaume Collet-Serra
num_critic_for_reviews                                                     236
duration                                                                   114
director_facebook_likes                                                    174
actor_3_facebook_likes                                                     655
actor_2_name                                                            Common
actor_1_facebook_likes                                                   14000
gross                                                              2.64423e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                       Liam Neeson
movie_title                                                     Run All Night 
num_voted_users                                                          76010
cast_total_facebook_likes                                                16992
actor_3_name                                                      Bruce McGill
facenumber_in_poster                                                         2
plot_keywords                death|drug dealer|limousine|limousine driver|o...
movie_imdb_link              http://www.imdb.com/title/tt2199571/?ref_=fn_t...
num_user_for_reviews                                                       205
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2015
actor_2_facebook_likes                                                     988
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 1013, dtype: object
color                                                                    Color
director_name                                                 David Cronenberg
num_critic_for_reviews                                                     356
duration                                                                    96
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     509
actor_2_name                                                       Naomi Watts
actor_1_facebook_likes                                                   10000
gross                                                              1.71149e+07
genres                                                  Crime|Mystery|Thriller
actor_1_name                                                   Viggo Mortensen
movie_title                                                  Eastern Promises 
num_voted_users                                                         189249
cast_total_facebook_likes                                                17211
actor_3_name                                                      Raza Jaffrey
facenumber_in_poster                                                         1
plot_keywords                male pubic hair|pubic hair|russian|sex scene|t...
movie_imdb_link              http://www.imdb.com/title/tt0765443/?ref_=fn_t...
num_user_for_reviews                                                       398
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 2.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                    6000
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1014, dtype: object
color                                                                    Color
director_name                                                   John Stockwell
num_critic_for_reviews                                                     120
duration                                                                   110
director_facebook_likes                                                    134
actor_3_facebook_likes                                                     795
actor_2_name                                                       James Frain
actor_1_facebook_likes                                                   23000
gross                                                              1.84724e+07
genres                                         Action|Adventure|Crime|Thriller
actor_1_name                                                       Paul Walker
movie_title                                                     Into the Blue 
num_voted_users                                                          63599
cast_total_facebook_likes                                                25049
actor_3_name                                                      Ashley Scott
facenumber_in_poster                                                         3
plot_keywords                 bahamas|blood splatter|cocaine|hairy chest|shark
movie_imdb_link              http://www.imdb.com/title/tt0378109/?ref_=fn_t...
num_user_for_reviews                                                       208
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2005
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1015, dtype: object
color                                                                    Color
director_name                                                       Luc Besson
num_critic_for_reviews                                                     111
duration                                                                   158
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      15
actor_2_name                                                      David Bailie
actor_1_facebook_likes                                                      51
gross                                                              1.41313e+07
genres                                   Adventure|Biography|Drama|History|War
actor_1_name                                                       Paul Brooke
movie_title                           The Messenger: The Story of Joan of Arc 
num_voted_users                                                          55889
cast_total_facebook_likes                                                  144
actor_3_name                                                       Rab Affleck
facenumber_in_poster                                                         0
plot_keywords                      cathedral|dauphin|france|trial|wartime rape
movie_imdb_link              http://www.imdb.com/title/tt0151137/?ref_=fn_t...
num_user_for_reviews                                                       390
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                 3.9e+08
title_year                                                                1999
actor_2_facebook_likes                                                      40
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1016, dtype: object
color                                                                    Color
director_name                                               David Gordon Green
num_critic_for_reviews                                                     208
duration                                                                   102
director_facebook_likes                                                    234
actor_3_facebook_likes                                                   11000
actor_2_name                                                   Zooey Deschanel
actor_1_facebook_likes                                                   20000
gross                                                              2.15572e+07
genres                                                Adventure|Comedy|Fantasy
actor_1_name                                                   Natalie Portman
movie_title                                                     Your Highness 
num_voted_users                                                          85237
cast_total_facebook_likes                                                45202
actor_3_name                                                      James Franco
facenumber_in_poster                                                         3
plot_keywords                          knight|prince|quest|rescue|thong bikini
movie_imdb_link              http://www.imdb.com/title/tt1240982/?ref_=fn_t...
num_user_for_reviews                                                       274
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                4.99e+07
title_year                                                                2011
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 1017, dtype: object
color                                                                    Color
director_name                                                     Jim Sheridan
num_critic_for_reviews                                                     174
duration                                                                    84
director_facebook_likes                                                    260
actor_3_facebook_likes                                                     692
actor_2_name                                                     Gregory Smith
actor_1_facebook_likes                                                    6000
gross                                                              2.12834e+07
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                       Naomi Watts
movie_title                                                       Dream House 
num_voted_users                                                          46239
cast_total_facebook_likes                                                 8018
actor_3_name                                                       Sarah Gadon
facenumber_in_poster                                                         0
plot_keywords                closet|father daughter relationship|psychiatri...
movie_imdb_link              http://www.imdb.com/title/tt1462041/?ref_=fn_t...
num_user_for_reviews                                                       137
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                     694
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1018, dtype: object
color                                                                    Color
director_name                                                     Costa-Gavras
num_critic_for_reviews                                                      59
duration                                                                   115
director_facebook_likes                                                    333
actor_3_facebook_likes                                                     317
actor_2_name                                                     Blythe Danner
actor_1_facebook_likes                                                     972
gross                                                              1.05562e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                      Mia Kirshner
movie_title                                                          Mad City 
num_voted_users                                                          16562
cast_total_facebook_likes                                                 2606
actor_3_name                                                  William Atherton
facenumber_in_poster                                                         2
plot_keywords                hostage|museum|natural history museum|news rep...
movie_imdb_link              http://www.imdb.com/title/tt0119592/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     713
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       697
Name: 1019, dtype: object
color                                                                    Color
director_name                                             Patrick Read Johnson
num_critic_for_reviews                                                      22
duration                                                                    99
director_facebook_likes                                                     32
actor_3_facebook_likes                                                     479
actor_2_name                                                  Lara Flynn Boyle
actor_1_facebook_likes                                                    1000
gross                                                              1.66715e+07
genres                                     Adventure|Comedy|Crime|Drama|Family
actor_1_name                                                      Joe Mantegna
movie_title                                                    Baby's Day Out 
num_voted_users                                                          33186
cast_total_facebook_likes                                                 2949
actor_3_name                                                     Cynthia Nixon
facenumber_in_poster                                                         1
plot_keywords                 baby|baby boy|kidnapping|kidnapping a child|taxi
movie_imdb_link              http://www.imdb.com/title/tt0109190/?ref_=fn_t...
num_user_for_reviews                                                        78
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   5e+07
title_year                                                                1994
actor_2_facebook_likes                                                     619
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1020, dtype: object
color                                                                    Color
director_name                                                     Roland Joffé
num_critic_for_reviews                                                      34
duration                                                                   135
director_facebook_likes                                                    596
actor_3_facebook_likes                                                    2000
actor_2_name                                                     Robert Duvall
actor_1_facebook_likes                                                   10000
gross                                                                 1.04e+07
genres                                                           Drama|Romance
actor_1_name                                                       Gary Oldman
movie_title                                                The Scarlet Letter 
num_voted_users                                                          12037
cast_total_facebook_likes                                                15820
actor_3_name                                                        Demi Moore
facenumber_in_poster                                                         1
plot_keywords                 17th century|adultery|letter|pubic hair|swimming
movie_imdb_link              http://www.imdb.com/title/tt0114345/?ref_=fn_t...
num_user_for_reviews                                                        90
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1995
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       943
Name: 1021, dtype: object
color                                                                    Color
director_name                                                       Doug Liman
num_critic_for_reviews                                                     214
duration                                                                   108
director_facebook_likes                                                    218
actor_3_facebook_likes                                                     405
actor_2_name                                                        Ty Burrell
actor_1_facebook_likes                                                    6000
gross                                                              9.52809e+06
genres                                                Biography|Drama|Thriller
actor_1_name                                                       Naomi Watts
movie_title                                                         Fair Game 
num_voted_users                                                          38513
cast_total_facebook_likes                                                10191
actor_3_name                                                      Brooke Smith
facenumber_in_poster                                                         2
plot_keywords                bush administration|cia|interview|iraq|new yor...
movie_imdb_link              http://www.imdb.com/title/tt0977855/?ref_=fn_t...
num_user_for_reviews                                                       127
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.2e+07
title_year                                                                2010
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                      9000
Name: 1022, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      28
duration                                                                    43
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     600
actor_2_name                                                       Tony Curran
actor_1_facebook_likes                                                    3000
gross                                                                      NaN
genres                                                     Action|Drama|Sci-Fi
actor_1_name                                                        Julie Benz
movie_title                                              Defiance             
num_voted_users                                                          33535
cast_total_facebook_likes                                                 5381
actor_3_name                                                      Grant Bowler
facenumber_in_poster                                                         3
plot_keywords                alien|alien invasion|planet invasion|post apoc...
movie_imdb_link              http://www.imdb.com/title/tt2189221/?ref_=fn_t...
num_user_for_reviews                                                       149
language                                                               English
country                                                                    USA
content_rating                                                           TV-MA
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     845
imdb_score                                                                   7
aspect_ratio                                                              1.78
movie_facebook_likes                                                         0
Name: 1023, dtype: object
color                                                                    Color
director_name                                                       Tony Scott
num_critic_for_reviews                                                     186
duration                                                                   127
director_facebook_likes                                                  12000
actor_3_facebook_likes                                                     897
actor_2_name                                                          Mo'Nique
actor_1_facebook_likes                                                     984
gross                                                              1.01372e+07
genres                                   Action|Biography|Crime|Drama|Thriller
actor_1_name                                                       Ian Ziering
movie_title                                                            Domino 
num_voted_users                                                          58015
cast_total_facebook_likes                                                 5702
actor_3_name                                                     Edgar Ramírez
facenumber_in_poster                                                         0
plot_keywords                bounty hunter|fbi|female bounty hunter|female ...
movie_imdb_link              http://www.imdb.com/title/tt0421054/?ref_=fn_t...
num_user_for_reviews                                                       374
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     940
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1024, dtype: object
color                                                                    Color
director_name                                                 William Friedkin
num_critic_for_reviews                                                      50
duration                                                                   107
director_facebook_likes                                                    607
actor_3_facebook_likes                                                     602
actor_2_name                                                  Chazz Palminteri
actor_1_facebook_likes                                                    2000
gross                                                              9.79502e+06
genres                                                    Crime|Drama|Thriller
actor_1_name                                                     Michael Biehn
movie_title                                                              Jade 
num_voted_users                                                           9227
cast_total_facebook_likes                                                 5461
actor_3_name                                                  Linda Fiorentino
facenumber_in_poster                                                         0
plot_keywords                blackmail|investigation|murder|panties pulled ...
movie_imdb_link              http://www.imdb.com/title/tt0113451/?ref_=fn_t...
num_user_for_reviews                                                        70
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1995
actor_2_facebook_likes                                                     979
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       422
Name: 1025, dtype: object
color                                                                    Color
director_name                                                   Mark Neveldine
num_critic_for_reviews                                                     180
duration                                                                    95
director_facebook_likes                                                     83
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Logan Lerman
actor_1_facebook_likes                                                   18000
gross                                                              2.04886e+07
genres                                                  Action|Sci-Fi|Thriller
actor_1_name                                                     Gerard Butler
movie_title                                                             Gamer 
num_voted_users                                                         113483
cast_total_facebook_likes                                                29926
actor_3_name                                                     Alison Lohman
facenumber_in_poster                                                         1
plot_keywords                   battle|convict|death|mind control|role playing
movie_imdb_link              http://www.imdb.com/title/tt1034032/?ref_=fn_t...
num_user_for_reviews                                                       245
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2009
actor_2_facebook_likes                                                    8000
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1026, dtype: object
color                                                                    Color
director_name                                              Richard LaGravenese
num_critic_for_reviews                                                     231
duration                                                                   124
director_facebook_likes                                                     98
actor_3_facebook_likes                                                     592
actor_2_name                                                       Zoey Deutch
actor_1_facebook_likes                                                    1000
gross                                                              1.94452e+07
genres                                                   Drama|Fantasy|Romance
actor_1_name                                                  Alden Ehrenreich
movie_title                                               Beautiful Creatures 
num_voted_users                                                          67796
cast_total_facebook_likes                                                 3580
actor_3_name                                               Pruitt Taylor Vince
facenumber_in_poster                                                         7
plot_keywords                        dream|escape|magic|magic spell|small town
movie_imdb_link              http://www.imdb.com/title/tt1559547/?ref_=fn_t...
num_user_for_reviews                                                       258
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2013
actor_2_facebook_likes                                                     852
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     14000
Name: 1027, dtype: object
color                                                                    Color
director_name                                                     Danny DeVito
num_critic_for_reviews                                                     105
duration                                                                   109
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     809
actor_2_name                                                Vincent Schiavelli
actor_1_facebook_likes                                                   49000
gross                                                              8.35582e+06
genres                                             Comedy|Crime|Drama|Thriller
actor_1_name                                                    Robin Williams
movie_title                                                  Death to Smoochy 
num_voted_users                                                          34730
cast_total_facebook_likes                                                52885
actor_3_name                                                    Danny Woodburn
facenumber_in_poster                                                         2
plot_keywords                children|children's tv show|money|revenge|scandal
movie_imdb_link              http://www.imdb.com/title/tt0266452/?ref_=fn_t...
num_user_for_reviews                                                       341
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     811
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1028, dtype: object
color                                                                    Color
director_name                                                      Ben Stiller
num_critic_for_reviews                                                     226
duration                                                                   102
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Will Ferrell
actor_1_facebook_likes                                                   14000
gross                                                              2.88371e+07
genres                                                                  Comedy
actor_1_name                                                    Milla Jovovich
movie_title                                                       Zoolander 2 
num_voted_users                                                          34964
cast_total_facebook_likes                                                24107
actor_3_name                                                    Justin Theroux
facenumber_in_poster                                                         4
plot_keywords                   chosen one|fashion|fashion model|model|retired
movie_imdb_link              http://www.imdb.com/title/tt1608290/?ref_=fn_t...
num_user_for_reviews                                                       150
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2016
actor_2_facebook_likes                                                    8000
imdb_score                                                                 4.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     28000
Name: 1029, dtype: object
color                                                                    Color
director_name                                                  George Armitage
num_critic_for_reviews                                                      75
duration                                                                    88
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     338
actor_2_name                                                     Andrew Wilson
actor_1_facebook_likes                                                   11000
gross                                                              6.47139e+06
genres                                                            Comedy|Crime
actor_1_name                                                    Morgan Freeman
movie_title                                                    The Big Bounce 
num_voted_users                                                          15880
cast_total_facebook_likes                                                11972
actor_3_name                                                     Willie Nelson
facenumber_in_poster                                                         5
plot_keywords                breasts|consensual sex|female nudity|judge|surfer
movie_imdb_link              http://www.imdb.com/title/tt0315824/?ref_=fn_t...
num_user_for_reviews                                                        93
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     387
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       288
Name: 1030, dtype: object
color                                                                    Color
director_name                                                     Mike Nichols
num_critic_for_reviews                                                      82
duration                                                                    87
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     591
actor_2_name                                                  Linda Fiorentino
actor_1_facebook_likes                                                    2000
gross                                                               6.2916e+06
genres                                                           Comedy|Sci-Fi
actor_1_name                                                        Judy Greer
movie_title                                         What Planet Are You From? 
num_voted_users                                                           8070
cast_total_facebook_likes                                                 3954
actor_3_name                                                   Garry Shandling
facenumber_in_poster                                                         0
plot_keywords                    alien|baby|banker|pregnancy|question in title
movie_imdb_link              http://www.imdb.com/title/tt0181151/?ref_=fn_t...
num_user_for_reviews                                                        91
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     602
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       255
Name: 1031, dtype: object
color                                                                    Color
director_name                                                  Patrick Lussier
num_critic_for_reviews                                                     296
duration                                                                   104
director_facebook_likes                                                     71
actor_3_facebook_likes                                                     982
actor_2_name                                                       Billy Burke
actor_1_facebook_likes                                                   12000
gross                                                              1.07068e+07
genres                                                 Action|Fantasy|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                                       Drive Angry 
num_voted_users                                                          81800
cast_total_facebook_likes                                                16481
actor_3_name                                                        Katy Mixon
facenumber_in_poster                                                         1
plot_keywords                            baby|cult|oklahoma|sex scene|waitress
movie_imdb_link              http://www.imdb.com/title/tt1502404/?ref_=fn_t...
num_user_for_reviews                                                       211
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2011
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     15000
Name: 1032, dtype: object
color                                                                    Color
director_name                                               Andrzej Bartkowiak
num_critic_for_reviews                                                     103
duration                                                                    96
director_facebook_likes                                                     43
actor_3_facebook_likes                                                      77
actor_2_name                                                        Robin Shou
actor_1_facebook_likes                                                     841
gross                                                              8.74226e+06
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                       Chris Klein
movie_title                             Street Fighter: The Legend of Chun-Li 
num_voted_users                                                          19824
cast_total_facebook_likes                                                 1385
actor_3_name                                                          Josie Ho
facenumber_in_poster                                                         2
plot_keywords                    chun li|crime fighter|gangster|mobster|rescue
movie_imdb_link              http://www.imdb.com/title/tt0891592/?ref_=fn_t...
num_user_for_reviews                                                       179
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                 1.8e+07
title_year                                                                2009
actor_2_facebook_likes                                                     342
imdb_score                                                                 3.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1033, dtype: object
color                                                                    Color
director_name                                                       James Wong
num_critic_for_reviews                                                      98
duration                                                                    85
director_facebook_likes                                                     70
actor_3_facebook_likes                                                     848
actor_2_name                                                            Jet Li
actor_1_facebook_likes                                                   26000
gross                                                              4.39057e+07
genres                                                  Action|Sci-Fi|Thriller
actor_1_name                                                     Jason Statham
movie_title                                                           The One 
num_voted_users                                                          77684
cast_total_facebook_likes                                                32831
actor_3_name                                                      Delroy Lindo
facenumber_in_poster                                                         1
plot_keywords                    fight|multiverse|police|police officer|prison
movie_imdb_link              http://www.imdb.com/title/tt0267804/?ref_=fn_t...
num_user_for_reviews                                                       294
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.9e+07
title_year                                                                2001
actor_2_facebook_likes                                                    5000
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1034, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      30
duration                                                                    64
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     184
actor_2_name                                                   Graham McTavish
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                    Drama|Romance|Sci-Fi
actor_1_name                                                    Tobias Menzies
movie_title                                             Outlander             
num_voted_users                                                          50391
cast_total_facebook_likes                                                 1863
actor_3_name                                                   Stephen Walters
facenumber_in_poster                                                         8
plot_keywords                based on novel|clan|scotland|scottish highland...
movie_imdb_link              http://www.imdb.com/title/tt3006802/?ref_=fn_t...
num_user_for_reviews                                                       148
language                                                               English
country                                                                    USA
content_rating                                                           TV-MA
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     531
imdb_score                                                                 8.5
aspect_ratio                                                                16
movie_facebook_likes                                                     31000
Name: 1035, dtype: object
color                                                                    Color
director_name                                                     Renny Harlin
num_critic_for_reviews                                                      48
duration                                                                   104
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     380
actor_2_name                                                 Gilbert Gottfried
actor_1_facebook_likes                                                     879
gross                                                              2.14135e+07
genres                             Action|Adventure|Comedy|Crime|Music|Mystery
actor_1_name                                                      Lauren Holly
movie_title                                   The Adventures of Ford Fairlane 
num_voted_users                                                          14429
cast_total_facebook_likes                                                 2795
actor_3_name                                               David Patrick Kelly
facenumber_in_poster                                                         5
plot_keywords                detective|groupie|murder|music industry|rock n...
movie_imdb_link              http://www.imdb.com/title/tt0098987/?ref_=fn_t...
num_user_for_reviews                                                       113
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                1990
actor_2_facebook_likes                                                     560
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 1036, dtype: object
color                                                                    Color
director_name                                                   Richard Curtis
num_critic_for_reviews                                                     195
duration                                                                   135
director_facebook_likes                                                    628
actor_3_facebook_likes                                                     830
actor_2_name                                                      Charlie Rowe
actor_1_facebook_likes                                                   22000
gross                                                              7.99412e+06
genres                                                      Comedy|Drama|Music
actor_1_name                                            Philip Seymour Hoffman
movie_title                                                      Pirate Radio 
num_voted_users                                                          90932
cast_total_facebook_likes                                                24316
actor_3_name                                                     Tom Sturridge
facenumber_in_poster                                                         2
plot_keywords                inspired by radio program|inspired by true eve...
movie_imdb_link              http://www.imdb.com/title/tt1131729/?ref_=fn_t...
num_user_for_reviews                                                       209
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     882
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     21000
Name: 1037, dtype: object
color                                                                    Color
director_name                                                Steven Soderbergh
num_critic_for_reviews                                                     223
duration                                                                   190
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     215
actor_2_name                                                      Jacob Vargas
actor_1_facebook_likes                                                     599
gross                                                              1.24107e+08
genres                                                    Crime|Drama|Thriller
actor_1_name                                                   Michael O'Neill
movie_title                                                           Traffic 
num_voted_users                                                         170684
cast_total_facebook_likes                                                 1418
actor_3_name                                                         James Lew
facenumber_in_poster                                                         0
plot_keywords                cocaine|drug smuggling|interlinked stories|jud...
movie_imdb_link              http://www.imdb.com/title/tt0181865/?ref_=fn_t...
num_user_for_reviews                                                       867
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.8e+07
title_year                                                                2000
actor_2_facebook_likes                                                     399
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1038, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     149
duration                                                                   127
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     440
actor_2_name                                                     Julian Glover
actor_1_facebook_likes                                                   11000
gross                                                              1.97172e+08
genres                                                Action|Adventure|Fantasy
actor_1_name                                                     Harrison Ford
movie_title                                Indiana Jones and the Last Crusade 
num_voted_users                                                         515306
cast_total_facebook_likes                                                12884
actor_3_name                                                      Alison Doody
facenumber_in_poster                                                         5
plot_keywords                                 castle|diary|holy grail|map|nazi
movie_imdb_link              http://www.imdb.com/title/tt0097576/?ref_=fn_t...
num_user_for_reviews                                                       477
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.8e+07
title_year                                                                1989
actor_2_facebook_likes                                                     844
imdb_score                                                                 8.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1039, dtype: object
color                                                                    Color
director_name                                                       Joe Wright
num_critic_for_reviews                                                     324
duration                                                                   129
director_facebook_likes                                                    456
actor_3_facebook_likes                                                       0
actor_2_name                                               Guro Nagelhus Schia
actor_1_facebook_likes                                                    2000
gross                                                              1.28029e+07
genres                                                           Drama|Romance
actor_1_name                                                   Kelly Macdonald
movie_title                                                     Anna Karenina 
num_voted_users                                                          70886
cast_total_facebook_likes                                                 2035
actor_3_name                                                 Matthew Macfadyen
facenumber_in_poster                                                         1
plot_keywords                         dance|infidelity|marriage|russia|russian
movie_imdb_link              http://www.imdb.com/title/tt1781769/?ref_=fn_t...
num_user_for_reviews                                                       226
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2012
actor_2_facebook_likes                                                      35
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     36000
Name: 1040, dtype: object
color                                                                    Color
director_name                                                   Neill Blomkamp
num_critic_for_reviews                                                     371
duration                                                                   120
director_facebook_likes                                                    662
actor_3_facebook_likes                                                     502
actor_2_name                                                    Sharlto Copley
actor_1_facebook_likes                                                   20000
gross                                                              3.15693e+07
genres                                      Action|Crime|Drama|Sci-Fi|Thriller
actor_1_name                                                      Hugh Jackman
movie_title                                                           Chappie 
num_voted_users                                                         172965
cast_total_facebook_likes                                                23051
actor_3_name                                               Jose Pablo Cantillo
facenumber_in_poster                                                         0
plot_keywords                artificial intelligence|consciousness|future|m...
movie_imdb_link              http://www.imdb.com/title/tt1823672/?ref_=fn_t...
num_user_for_reviews                                                       627
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.9e+07
title_year                                                                2015
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     67000
Name: 1041, dtype: object
color                                                                    Color
director_name                                                    Phillip Noyce
num_critic_for_reviews                                                      75
duration                                                                   118
director_facebook_likes                                                    176
actor_3_facebook_likes                                                     308
actor_2_name                                               Angelina Jolie Pitt
actor_1_facebook_likes                                                   18000
gross                                                              6.64881e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                                The Bone Collector 
num_voted_users                                                         120202
cast_total_facebook_likes                                                29748
actor_3_name                                                      Leland Orser
facenumber_in_poster                                                         2
plot_keywords                new york city|police|quadriplegic|serial kille...
movie_imdb_link              http://www.imdb.com/title/tt0145681/?ref_=fn_t...
num_user_for_reviews                                                       397
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.8e+07
title_year                                                                1999
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1042, dtype: object
color                                                                    Color
director_name                                                    David Fincher
num_critic_for_reviews                                                     233
duration                                                                   112
director_facebook_likes                                                  21000
actor_3_facebook_likes                                                     237
actor_2_name                                                     Dwight Yoakam
actor_1_facebook_likes                                                   17000
gross                                                              9.53084e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                   Kristen Stewart
movie_title                                                        Panic Room 
num_voted_users                                                         206104
cast_total_facebook_likes                                                18141
actor_3_name                                                     Mel Rodriguez
facenumber_in_poster                                                         0
plot_keywords                        brownstone|burglar|money|panic|panic room
movie_imdb_link              http://www.imdb.com/title/tt0258000/?ref_=fn_t...
num_user_for_reviews                                                       850
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.8e+07
title_year                                                                2002
actor_2_facebook_likes                                                     324
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1043, dtype: object
color                                                                    Color
director_name                                                     Chuck Bowman
num_critic_for_reviews                                                      32
duration                                                                    89
director_facebook_likes                                                     42
actor_3_facebook_likes                                                     235
actor_2_name                                                     Lochlyn Munro
actor_1_facebook_likes                                                     598
gross                                                                      NaN
genres                                                         Horror|Thriller
actor_1_name                                                        P.J. Soles
movie_title                                                   The Tooth Fairy 
num_voted_users                                                           1263
cast_total_facebook_likes                                                 2353
actor_3_name                                                       Steve Bacic
facenumber_in_poster                                                         0
plot_keywords                bare breasts|genital dismemberment|mulching so...
movie_imdb_link              http://www.imdb.com/title/tt0473553/?ref_=fn_t...
num_user_for_reviews                                                        32
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                 1.5e+06
title_year                                                                2006
actor_2_facebook_likes                                                     555
imdb_score                                                                 4.6
aspect_ratio                                                              1.78
movie_facebook_likes                                                       352
Name: 1044, dtype: object
color                                                                    Color
director_name                                                 David O. Russell
num_critic_for_reviews                                                     150
duration                                                                   114
director_facebook_likes                                                    737
actor_3_facebook_likes                                                     393
actor_2_name                                                     Jamie Kennedy
actor_1_facebook_likes                                                    2000
gross                                                               6.0652e+07
genres                                       Action|Adventure|Comedy|Drama|War
actor_1_name                                                        Judy Greer
movie_title                                                       Three Kings 
num_voted_users                                                         137854
cast_total_facebook_likes                                                 3743
actor_3_name                                                Mykelti Williamson
facenumber_in_poster                                                         1
plot_keywords                                    gold|gulf war|iraq|kuwait|map
movie_imdb_link              http://www.imdb.com/title/tt0120188/?ref_=fn_t...
num_user_for_reviews                                                       560
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.8e+07
title_year                                                                1999
actor_2_facebook_likes                                                     490
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                      3000
Name: 1045, dtype: object
color                                                                    Color
director_name                                                  Daniel Espinosa
num_critic_for_reviews                                                     172
duration                                                                   137
director_facebook_likes                                                     79
actor_3_facebook_likes                                                     194
actor_2_name                                                       Fares Fares
actor_1_facebook_likes                                                   27000
gross                                                              1.20614e+06
genres                                                    Crime|Drama|Thriller
actor_1_name                                                         Tom Hardy
movie_title                                                          Child 44 
num_voted_users                                                          40568
cast_total_facebook_likes                                                27666
actor_3_name                                                   Michael Nardone
facenumber_in_poster                                                         3
plot_keywords                child murderer|murder|sex|soviet union|woman s...
movie_imdb_link              http://www.imdb.com/title/tt1014763/?ref_=fn_t...
num_user_for_reviews                                                       185
language                                                               English
country                                                         Czech Republic
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2015
actor_2_facebook_likes                                                     254
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 1046, dtype: object
color                                                                    Color
director_name                                                     Jerry Zucker
num_critic_for_reviews                                                     103
duration                                                                   112
director_facebook_likes                                                    109
actor_3_facebook_likes                                                     261
actor_2_name                                                     Douglas Haase
actor_1_facebook_likes                                                     779
gross                                                              5.66072e+07
genres                                                        Adventure|Comedy
actor_1_name                                                    Corinna Harney
movie_title                                                          Rat Race 
num_voted_users                                                          93367
cast_total_facebook_likes                                                 1823
actor_3_name                                                      Vince Vieluf
facenumber_in_poster                                                         8
plot_keywords                                  casino|locker|money|museum|race
movie_imdb_link              http://www.imdb.com/title/tt0250687/?ref_=fn_t...
num_user_for_reviews                                                       497
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                 4.8e+07
title_year                                                                2001
actor_2_facebook_likes                                                     629
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1047, dtype: object
color                                                                    Color
director_name                                                     Iain Softley
num_critic_for_reviews                                                     140
duration                                                                   120
director_facebook_likes                                                     34
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Jeff Bridges
actor_1_facebook_likes                                                   18000
gross                                                              5.01732e+07
genres                                                    Drama|Mystery|Sci-Fi
actor_1_name                                                      Kevin Spacey
movie_title                                                             K-PAX 
num_voted_users                                                         148490
cast_total_facebook_likes                                                33615
actor_3_name                                                     Alfre Woodard
facenumber_in_poster                                                         1
plot_keywords                 extraterrestrial|hospital|patient|planet|science
movie_imdb_link              http://www.imdb.com/title/tt0272152/?ref_=fn_t...
num_user_for_reviews                                                       537
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.8e+07
title_year                                                                2001
actor_2_facebook_likes                                                   12000
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1048, dtype: object
color                                                                    Color
director_name                                                    James Mangold
num_critic_for_reviews                                                     125
duration                                                                   123
director_facebook_likes                                                    446
actor_3_facebook_likes                                                     821
actor_2_name                                                    Natasha Lyonne
actor_1_facebook_likes                                                   20000
gross                                                              4.70955e+07
genres                                                  Comedy|Fantasy|Romance
actor_1_name                                                      Hugh Jackman
movie_title                                                    Kate & Leopold 
num_voted_users                                                          64595
cast_total_facebook_likes                                                22209
actor_3_name                                                  Bradley Whitford
facenumber_in_poster                                                         1
plot_keywords                bridge|brooklyn bridge|falling down an elevato...
movie_imdb_link              http://www.imdb.com/title/tt0035423/?ref_=fn_t...
num_user_for_reviews                                                       316
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.8e+07
title_year                                                                2001
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1049, dtype: object
color                                                                    Color
director_name                                                     Harold Ramis
num_critic_for_reviews                                                     125
duration                                                                    93
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     484
actor_2_name                                                  Frances O'Connor
actor_1_facebook_likes                                                    3000
gross                                                                3.788e+07
genres                                                  Comedy|Fantasy|Romance
actor_1_name                                                    Brendan Fraser
movie_title                                                         Bedazzled 
num_voted_users                                                          81888
cast_total_facebook_likes                                                 5390
actor_3_name                                                Brian Doyle-Murray
facenumber_in_poster                                                         2
plot_keywords                                   contract|devil|dream|soul|wish
movie_imdb_link              http://www.imdb.com/title/tt0230030/?ref_=fn_t...
num_user_for_reviews                                                       254
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.8e+07
title_year                                                                2000
actor_2_facebook_likes                                                     575
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1050, dtype: object
color                                                                    Color
director_name                                             Francis Ford Coppola
num_critic_for_reviews                                                      36
duration                                                                   123
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     886
actor_2_name                                                       Bob Hoskins
actor_1_facebook_likes                                                   12000
gross                                                                 2.59e+07
genres                                                       Crime|Drama|Music
actor_1_name                                                      Nicolas Cage
movie_title                                                   The Cotton Club 
num_voted_users                                                          12771
cast_total_facebook_likes                                                18793
actor_3_name                                                       Fred Gwynne
facenumber_in_poster                                                         1
plot_keywords                brothers hugging|jazz|jealousy|nudity|parole v...
movie_imdb_link              http://www.imdb.com/title/tt0087089/?ref_=fn_t...
num_user_for_reviews                                                        84
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.8e+07
title_year                                                                1984
actor_2_facebook_likes                                                    5000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       828
Name: 1051, dtype: object
color                                                                    Color
director_name                                                    James Mangold
num_critic_for_reviews                                                     295
duration                                                                   122
director_facebook_likes                                                    446
actor_3_facebook_likes                                                     600
actor_2_name                                                      Logan Lerman
actor_1_facebook_likes                                                   23000
gross                                                              5.35741e+07
genres                                           Adventure|Crime|Drama|Western
actor_1_name                                                    Christian Bale
movie_title                                                      3:10 to Yuma 
num_voted_users                                                         237872
cast_total_facebook_likes                                                33548
actor_3_name                                                      Gretchen Mol
facenumber_in_poster                                                         1
plot_keywords                outlaw|rancher|small western town|stagecoach|t...
movie_imdb_link              http://www.imdb.com/title/tt0381849/?ref_=fn_t...
num_user_for_reviews                                                       560
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                    8000
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1052, dtype: object
color                                                                    Color
director_name                                                  Olivier Megaton
num_critic_for_reviews                                                     222
duration                                                                   115
director_facebook_likes                                                    118
actor_3_facebook_likes                                                     482
actor_2_name                                                     Dougray Scott
actor_1_facebook_likes                                                   14000
gross                                                              8.92533e+07
genres                                                         Action|Thriller
actor_1_name                                                       Liam Neeson
movie_title                                                           Taken 3 
num_voted_users                                                         133436
cast_total_facebook_likes                                                16967
actor_3_name                                                         Jon Gries
facenumber_in_poster                                                         0
plot_keywords                  betrayal|death|final showdown|murder|on the run
movie_imdb_link              http://www.imdb.com/title/tt2446042/?ref_=fn_t...
num_user_for_reviews                                                       323
language                                                               English
country                                                                 France
content_rating                                                           PG-13
budget                                                                 4.8e+07
title_year                                                                2014
actor_2_facebook_likes                                                     794
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     38000
Name: 1053, dtype: object
color                                                                    Color
director_name                                                Steven Soderbergh
num_critic_for_reviews                                                     158
duration                                                                   123
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      23
actor_2_name                                                     Albert Brooks
actor_1_facebook_likes                                                    3000
gross                                                              3.73395e+07
genres                                            Crime|Drama|Romance|Thriller
actor_1_name                                                       Don Cheadle
movie_title                                                      Out of Sight 
num_voted_users                                                          71708
cast_total_facebook_likes                                                 3768
actor_3_name                                                      Keith Hudson
facenumber_in_poster                                                         1
plot_keywords                heist|neo noir|one last job|opposites attract|...
movie_imdb_link              http://www.imdb.com/title/tt0120780/?ref_=fn_t...
num_user_for_reviews                                                       307
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.8e+07
title_year                                                                1998
actor_2_facebook_likes                                                     745
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1054, dtype: object
color                                                                    Color
director_name                                                      Ben Stiller
num_critic_for_reviews                                                      72
duration                                                                    96
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     302
actor_2_name                                                  Janeane Garofalo
actor_1_facebook_likes                                                    2000
gross                                                              6.01544e+07
genres                                                   Comedy|Drama|Thriller
actor_1_name                                                 Matthew Broderick
movie_title                                                     The Cable Guy 
num_voted_users                                                         122347
cast_total_facebook_likes                                                 3718
actor_3_name                                                         Andy Dick
facenumber_in_poster                                                         1
plot_keywords                     cable guy|foreplay|friend|kissing|television
movie_imdb_link              http://www.imdb.com/title/tt0115798/?ref_=fn_t...
num_user_for_reviews                                                       345
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.7e+07
title_year                                                                1996
actor_2_facebook_likes                                                    1000
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1055, dtype: object
color                                                                    Color
director_name                                                      Deepa Mehta
num_critic_for_reviews                                                      34
duration                                                                   110
director_facebook_likes                                                    375
actor_3_facebook_likes                                                      59
actor_2_name                                                    Gulshan Grover
actor_1_facebook_likes                                                     113
gross                                                                   528972
genres                                                       Drama|Romance|War
actor_1_name                                                       Nandita Das
movie_title                                                             Earth 
num_voted_users                                                           5639
cast_total_facebook_likes                                                  371
actor_3_name                                                     Eric Peterson
facenumber_in_poster                                                         0
plot_keywords                                   friend|hindu|india|muslim|sikh
movie_imdb_link              http://www.imdb.com/title/tt0150433/?ref_=fn_t...
num_user_for_reviews                                                        55
language                                                                 Hindi
country                                                                  India
content_rating                                                         Unrated
budget                                                                     NaN
title_year                                                                1998
actor_2_facebook_likes                                                     102
imdb_score                                                                 7.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                       522
Name: 1056, dtype: object
color                                                                    Color
director_name                                                    Warren Beatty
num_critic_for_reviews                                                      72
duration                                                                   105
director_facebook_likes                                                    631
actor_3_facebook_likes                                                     327
actor_2_name                                                     Warren Beatty
actor_1_facebook_likes                                                     678
gross                                                              1.03739e+08
genres                              Action|Comedy|Crime|Music|Romance|Thriller
actor_1_name                                                    Charlie Korsmo
movie_title                                                        Dick Tracy 
num_voted_users                                                          47819
cast_total_facebook_likes                                                 2096
actor_3_name                                                    Seymour Cassel
facenumber_in_poster                                                         1
plot_keywords                  crime boss|detective|dick tracy|gangster|orphan
movie_imdb_link              http://www.imdb.com/title/tt0099422/?ref_=fn_t...
num_user_for_reviews                                                       164
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+08
title_year                                                                1990
actor_2_facebook_likes                                                     631
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                      2000
Name: 1057, dtype: object
color                                                                    Color
director_name                                                   John McTiernan
num_critic_for_reviews                                                     152
duration                                                                   113
director_facebook_likes                                                    323
actor_3_facebook_likes                                                     835
actor_2_name                                                      Faye Dunaway
actor_1_facebook_likes                                                    1000
gross                                                              6.93043e+07
genres                                                  Crime|Romance|Thriller
actor_1_name                                                     Mark Margolis
movie_title                                           The Thomas Crown Affair 
num_voted_users                                                          73068
cast_total_facebook_likes                                                 4660
actor_3_name                                                       Denis Leary
facenumber_in_poster                                                         0
plot_keywords                art|insurance investigator|martinique|painting...
movie_imdb_link              http://www.imdb.com/title/tt0155267/?ref_=fn_t...
num_user_for_reviews                                                       419
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.8e+07
title_year                                                                1999
actor_2_facebook_likes                                                     977
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1058, dtype: object
color                                                                    Color
director_name                                                   Penny Marshall
num_critic_for_reviews                                                      89
duration                                                                   132
director_facebook_likes                                                    545
actor_3_facebook_likes                                                     807
actor_2_name                                                       Adam Garcia
actor_1_facebook_likes                                                     919
gross                                                              2.97815e+07
genres                                                  Biography|Comedy|Drama
actor_1_name                                                       Rosie Perez
movie_title                                          Riding in Cars with Boys 
num_voted_users                                                          22447
cast_total_facebook_likes                                                 4796
actor_3_name                                                       Alissa Dean
facenumber_in_poster                                                         1
plot_keywords                          boy|college|heroin|working class|writer
movie_imdb_link              http://www.imdb.com/title/tt0200027/?ref_=fn_t...
num_user_for_reviews                                                       210
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.8e+07
title_year                                                                2001
actor_2_facebook_likes                                                     811
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1059, dtype: object
color                                                                    Color
director_name                                                     Ted Kotcheff
num_critic_for_reviews                                                     145
duration                                                                    93
director_facebook_likes                                                    270
actor_3_facebook_likes                                                     535
actor_2_name                                                     Brian Dennehy
actor_1_facebook_likes                                                   13000
gross                                                                      NaN
genres                                                  Action|Adventure|Drama
actor_1_name                                                Sylvester Stallone
movie_title                                                       First Blood 
num_voted_users                                                         172489
cast_total_facebook_likes                                                15192
actor_3_name                                                      Chris Mulkey
facenumber_in_poster                                                         1
plot_keywords                               1980s|colonel|deputy|rambo|sheriff
movie_imdb_link              http://www.imdb.com/title/tt0083944/?ref_=fn_t...
num_user_for_reviews                                                       376
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                1982
actor_2_facebook_likes                                                     954
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1060, dtype: object
color                                                          Black and White
director_name                                                 Andrei Tarkovsky
num_critic_for_reviews                                                     144
duration                                                                   115
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      12
actor_2_name                                               Anatoliy Solonitsyn
actor_1_facebook_likes                                                      29
gross                                                                      NaN
genres                                                    Drama|Mystery|Sci-Fi
actor_1_name                                                  Donatas Banionis
movie_title                                                           Solaris 
num_voted_users                                                          54057
cast_total_facebook_likes                                                   95
actor_3_name                                                Natalya Bondarchuk
facenumber_in_poster                                                         0
plot_keywords                hallucination|ocean|psychologist|scientist|spa...
movie_imdb_link              http://www.imdb.com/title/tt0069293/?ref_=fn_t...
num_user_for_reviews                                                       236
language                                                               Russian
country                                                           Soviet Union
content_rating                                                              PG
budget                                                                   1e+06
title_year                                                                1972
actor_2_facebook_likes                                                      29
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1061, dtype: object
color                                                                    Color
director_name                                                      Paul Bolger
num_critic_for_reviews                                                      93
duration                                                                    75
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     677
actor_2_name                                                     George Carlin
actor_1_facebook_likes                                                    4000
gross                                                              1.55198e+07
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                             Sarah Michelle Gellar
movie_title                                              Happily N'Ever After 
num_voted_users                                                           8693
cast_total_facebook_likes                                                 6863
actor_3_name                                                       Rob Paulsen
facenumber_in_poster                                                         3
plot_keywords                apostrophe in title|cinderella|first of series...
movie_imdb_link              http://www.imdb.com/title/tt0308353/?ref_=fn_t...
num_user_for_reviews                                                        71
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 4.7e+07
title_year                                                                2006
actor_2_facebook_likes                                                     769
imdb_score                                                                 4.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       261
Name: 1062, dtype: object
color                                                                    Color
director_name                                                   Stephen Frears
num_critic_for_reviews                                                      46
duration                                                                   108
director_facebook_likes                                                    350
actor_3_facebook_likes                                                      77
actor_2_name                                                 Bronagh Gallagher
actor_1_facebook_likes                                                    8000
gross                                                                  5.6e+06
genres                                           Drama|Horror|Romance|Thriller
actor_1_name                                                     Julia Roberts
movie_title                                                       Mary Reilly 
num_voted_users                                                          11913
cast_total_facebook_likes                                                 8349
actor_3_name                                                       George Cole
facenumber_in_poster                                                         1
plot_keywords                 19th century|butler|housemaid|laboratory|servant
movie_imdb_link              http://www.imdb.com/title/tt0117002/?ref_=fn_t...
num_user_for_reviews                                                        97
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.7e+07
title_year                                                                1996
actor_2_facebook_likes                                                     115
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       616
Name: 1063, dtype: object
color                                                                    Color
director_name                                                       P.J. Hogan
num_critic_for_reviews                                                      84
duration                                                                   105
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     692
actor_2_name                                             Christopher Masterson
actor_1_facebook_likes                                                    8000
gross                                                              1.26805e+08
genres                                                          Comedy|Romance
actor_1_name                                                     Julia Roberts
movie_title                                          My Best Friend's Wedding 
num_voted_users                                                          98199
cast_total_facebook_likes                                                12344
actor_3_name                                                    Rupert Everett
facenumber_in_poster                                                         1
plot_keywords                best friend|chick flick|male female friendship...
movie_imdb_link              http://www.imdb.com/title/tt0119738/?ref_=fn_t...
num_user_for_reviews                                                       169
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.6e+07
title_year                                                                1997
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1064, dtype: object
color                                                                    Color
director_name                                                         Joe Roth
num_critic_for_reviews                                                     142
duration                                                                   102
director_facebook_likes                                                    148
actor_3_facebook_likes                                                     135
actor_2_name                                                      Rainn Wilson
actor_1_facebook_likes                                                    8000
gross                                                              9.36077e+07
genres                                                          Comedy|Romance
actor_1_name                                                     Julia Roberts
movie_title                                             America's Sweethearts 
num_voted_users                                                          47573
cast_total_facebook_likes                                                 9176
actor_3_name                                                        Larry King
facenumber_in_poster                                                         4
plot_keywords                            actor|love|movie star|press|publicist
movie_imdb_link              http://www.imdb.com/title/tt0265029/?ref_=fn_t...
num_user_for_reviews                                                       343
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.8e+07
title_year                                                                2001
actor_2_facebook_likes                                                     973
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       881
Name: 1065, dtype: object
color                                                                    Color
director_name                                                Christopher Nolan
num_critic_for_reviews                                                     185
duration                                                                   118
director_facebook_likes                                                  22000
actor_3_facebook_likes                                                     319
actor_2_name                                                     Maura Tierney
actor_1_facebook_likes                                                   14000
gross                                                              6.72632e+07
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                         Al Pacino
movie_title                                                          Insomnia 
num_voted_users                                                         218771
cast_total_facebook_likes                                                15658
actor_3_name                                                      Crystal Lowe
facenumber_in_poster                                                         0
plot_keywords                         detective|insomnia|murder|partner|police
movie_imdb_link              http://www.imdb.com/title/tt0278504/?ref_=fn_t...
num_user_for_reviews                                                       651
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.6e+07
title_year                                                                2002
actor_2_facebook_likes                                                     509
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1066, dtype: object
color                                                                    Color
director_name                                                  Jonathan Frakes
num_critic_for_reviews                                                     143
duration                                                                   111
director_facebook_likes                                                    906
actor_3_facebook_likes                                                     906
actor_2_name                                                     Alfre Woodard
actor_1_facebook_likes                                                    1000
gross                                                               9.2001e+07
genres                                  Action|Adventure|Drama|Sci-Fi|Thriller
actor_1_name                                                      LeVar Burton
movie_title                                          Star Trek: First Contact 
num_voted_users                                                          97838
cast_total_facebook_likes                                                 6315
actor_3_name                                                   Jonathan Frakes
facenumber_in_poster                                                         2
plot_keywords                     21st century|borg|borg sphere|captain|sphere
movie_imdb_link              http://www.imdb.com/title/tt0117731/?ref_=fn_t...
num_user_for_reviews                                                       286
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                1996
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                      3000
Name: 1067, dtype: object
color                                                                    Color
director_name                                                    Jimmy Hayward
num_critic_for_reviews                                                     178
duration                                                                    81
director_facebook_likes                                                     39
actor_3_facebook_likes                                                     364
actor_2_name                                                       Billy Blair
actor_1_facebook_likes                                                   13000
gross                                                              1.05394e+07
genres                                   Action|Drama|Fantasy|Thriller|Western
actor_1_name                                                Michael Fassbender
movie_title                                                         Jonah Hex 
num_voted_users                                                          45729
cast_total_facebook_likes                                                14619
actor_3_name                                                       Julia Jones
facenumber_in_poster                                                         1
plot_keywords                confederate|death|independence day|military|te...
movie_imdb_link              http://www.imdb.com/title/tt1075747/?ref_=fn_t...
num_user_for_reviews                                                       176
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.7e+07
title_year                                                                2010
actor_2_facebook_likes                                                     541
imdb_score                                                                 4.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1068, dtype: object
color                                                                    Color
director_name                                                     Edward Zwick
num_critic_for_reviews                                                      65
duration                                                                   116
director_facebook_likes                                                    380
actor_3_facebook_likes                                                     826
actor_2_name                                                        Matt Damon
actor_1_facebook_likes                                                   18000
gross                                                              5.89185e+07
genres                                       Action|Drama|Mystery|Thriller|War
actor_1_name                                                 Denzel Washington
movie_title                                                Courage Under Fire 
num_voted_users                                                          40126
cast_total_facebook_likes                                                33233
actor_3_name                                                       Scott Glenn
facenumber_in_poster                                                         1
plot_keywords                bravery|honor|medal of honor|military life|unr...
movie_imdb_link              http://www.imdb.com/title/tt0115956/?ref_=fn_t...
num_user_for_reviews                                                       107
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.6e+07
title_year                                                                1996
actor_2_facebook_likes                                                   13000
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       975
Name: 1069, dtype: object
color                                                                    Color
director_name                                                      Tom Shadyac
num_critic_for_reviews                                                      73
duration                                                                    86
director_facebook_likes                                                    293
actor_3_facebook_likes                                                     255
actor_2_name                                                     Swoosie Kurtz
actor_1_facebook_likes                                                     509
gross                                                              1.81395e+08
genres                                                  Comedy|Fantasy|Romance
actor_1_name                                                     Maura Tierney
movie_title                                                         Liar Liar 
num_voted_users                                                         220392
cast_total_facebook_likes                                                 2070
actor_3_name                                                Randall 'Tex' Cobb
facenumber_in_poster                                                         1
plot_keywords                birthday|birthday wish|father disappoints chil...
movie_imdb_link              http://www.imdb.com/title/tt0119528/?ref_=fn_t...
num_user_for_reviews                                                       243
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     418
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1070, dtype: object
color                                                                    Color
director_name                                                      Brad Furman
num_critic_for_reviews                                                      72
duration                                                                   127
director_facebook_likes                                                     65
actor_3_facebook_likes                                                     345
actor_2_name                                                          Amy Ryan
actor_1_facebook_likes                                                     788
gross                                                              1.49462e+07
genres                                          Biography|Crime|Drama|Thriller
actor_1_name                                                     Joseph Gilgun
movie_title                                                   The Infiltrator 
num_voted_users                                                           2581
cast_total_facebook_likes                                                 2104
actor_3_name                                                   Olympia Dukakis
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1355631/?ref_=fn_t...
num_user_for_reviews                                                        29
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 2.5e+07
title_year                                                                2016
actor_2_facebook_likes                                                     423
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1071, dtype: object
color                                                                    Color
director_name                                                    Terence Young
num_critic_for_reviews                                                      10
duration                                                                   140
director_facebook_likes                                                     92
actor_3_facebook_likes                                                     522
actor_2_name                                                       Ben Gazzara
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                       Drama|History|War
actor_1_name                                                  Laurence Olivier
movie_title                                                            Inchon 
num_voted_users                                                            491
cast_total_facebook_likes                                                 2704
actor_3_name                                                 Jacqueline Bisset
facenumber_in_poster                                                         1
plot_keywords                  1950s|douglas macarthur|general|inchon|invasion
movie_imdb_link              http://www.imdb.com/title/tt0084132/?ref_=fn_t...
num_user_for_reviews                                                        16
language                                                               English
country                                                            South Korea
content_rating                                                              PG
budget                                                                 4.8e+07
title_year                                                                1981
actor_2_facebook_likes                                                     623
imdb_score                                                                 2.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       115
Name: 1072, dtype: object
color                                                                    Color
director_name                                                     Brian Levant
num_critic_for_reviews                                                      35
duration                                                                    91
director_facebook_likes                                                     32
actor_3_facebook_likes                                                     628
actor_2_name                                                 Elizabeth Perkins
actor_1_facebook_likes                                                     924
gross                                                              1.30513e+08
genres                                                   Comedy|Family|Fantasy
actor_1_name                                                  Jonathan Winters
movie_title                                                   The Flintstones 
num_voted_users                                                          60884
cast_total_facebook_likes                                                 3244
actor_3_name                                                     Harvey Korman
facenumber_in_poster                                                         2
plot_keywords                1000000 b.c.|box office hit|lawn mowing|produc...
movie_imdb_link              http://www.imdb.com/title/tt0109813/?ref_=fn_t...
num_user_for_reviews                                                        85
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 4.5e+07
title_year                                                                1994
actor_2_facebook_likes                                                     664
imdb_score                                                                 4.8
aspect_ratio                                                              1.33
movie_facebook_likes                                                         0
Name: 1073, dtype: object
color                                                                    Color
director_name                                                  Olivier Megaton
num_critic_for_reviews                                                     358
duration                                                                    98
director_facebook_likes                                                    118
actor_3_facebook_likes                                                     558
actor_2_name                                                       Luke Grimes
actor_1_facebook_likes                                                   14000
gross                                                              1.39853e+08
genres                                                   Action|Crime|Thriller
actor_1_name                                                       Liam Neeson
movie_title                                                           Taken 2 
num_voted_users                                                         238671
cast_total_facebook_likes                                                16410
actor_3_name                                                      D.B. Sweeney
facenumber_in_poster                                                         0
plot_keywords                albanian|revenge|revenge motive|teenage daught...
movie_imdb_link              http://www.imdb.com/title/tt1397280/?ref_=fn_t...
num_user_for_reviews                                                       461
language                                                               English
country                                                                 France
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     935
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     63000
Name: 1074, dtype: object
color                                                                    Color
director_name                                                     David Zucker
num_critic_for_reviews                                                     151
duration                                                                    84
director_facebook_likes                                                    119
actor_3_facebook_likes                                                     750
actor_2_name                                                   Pamela Anderson
actor_1_facebook_likes                                                     807
gross                                                                  1.1e+08
genres                                                                  Comedy
actor_1_name                                                       Regina Hall
movie_title                                                     Scary Movie 3 
num_voted_users                                                         111526
cast_total_facebook_likes                                                 3629
actor_3_name                                                    Jenny McCarthy
facenumber_in_poster                                                         7
plot_keywords                crop circle|farm|orchestral music score|refere...
movie_imdb_link              http://www.imdb.com/title/tt0306047/?ref_=fn_t...
num_user_for_reviews                                                       347
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.8e+07
title_year                                                                2003
actor_2_facebook_likes                                                     780
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1075, dtype: object
color                                                                    Color
director_name                                                    Donald Petrie
num_critic_for_reviews                                                     140
duration                                                                   109
director_facebook_likes                                                     80
actor_3_facebook_likes                                                     213
actor_2_name                                             Wendy Raquel Robinson
actor_1_facebook_likes                                                     545
gross                                                              1.06808e+08
genres                                             Action|Comedy|Crime|Romance
actor_1_name                                                    Candice Bergen
movie_title                                                 Miss Congeniality 
num_voted_users                                                         137377
cast_total_facebook_likes                                                 1574
actor_3_name                                                     Heather Burns
facenumber_in_poster                                                         1
plot_keywords                beauty pageant|fbi|female agent|pageant|underc...
movie_imdb_link              http://www.imdb.com/title/tt0212346/?ref_=fn_t...
num_user_for_reviews                                                       370
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     337
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1076, dtype: object
color                                                                    Color
director_name                                                      Eric Brevig
num_critic_for_reviews                                                     201
duration                                                                    93
director_facebook_likes                                                     40
actor_3_facebook_likes                                                     311
actor_2_name                                                    Brendan Fraser
actor_1_facebook_likes                                                   14000
gross                                                              1.01702e+08
genres                                  Action|Adventure|Family|Fantasy|Sci-Fi
actor_1_name                                                   Josh Hutcherson
movie_title                                Journey to the Center of the Earth 
num_voted_users                                                          85323
cast_total_facebook_likes                                                17925
actor_3_name                                                       Anita Briem
facenumber_in_poster                                                         0
plot_keywords                cave|lost world|missing brother|mountain|venus...
movie_imdb_link              http://www.imdb.com/title/tt0373051/?ref_=fn_t...
num_user_for_reviews                                                       212
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 4.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1077, dtype: object
color                                                                    Color
director_name                                                   Garry Marshall
num_critic_for_reviews                                                      77
duration                                                                   113
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     995
actor_2_name                                                      Raven-Symoné
actor_1_facebook_likes                                                   11000
gross                                                              9.51494e+07
genres                                                   Comedy|Family|Romance
actor_1_name                                                     Anne Hathaway
movie_title                          The Princess Diaries 2: Royal Engagement 
num_voted_users                                                          53687
cast_total_facebook_likes                                                15362
actor_3_name                                                   Hector Elizondo
facenumber_in_poster                                                         2
plot_keywords                      coronation|horse|princess|queen|side saddle
movie_imdb_link              http://www.imdb.com/title/tt0368933/?ref_=fn_t...
num_user_for_reviews                                                       152
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   4e+07
title_year                                                                2004
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 1078, dtype: object
color                                                                    Color
director_name                                                   Alan J. Pakula
num_critic_for_reviews                                                      43
duration                                                                   141
director_facebook_likes                                                     79
actor_3_facebook_likes                                                     956
actor_2_name                                                     Julia Roberts
actor_1_facebook_likes                                                   18000
gross                                                              1.00768e+08
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                                 The Pelican Brief 
num_voted_users                                                          59569
cast_total_facebook_likes                                                30063
actor_3_name                                                      Tony Goldwyn
facenumber_in_poster                                                         0
plot_keywords                college professor|fbi|president|professor|supr...
movie_imdb_link              http://www.imdb.com/title/tt0107798/?ref_=fn_t...
num_user_for_reviews                                                        89
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                1993
actor_2_facebook_likes                                                    8000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1079, dtype: object
color                                                                    Color
director_name                                                  Joel Schumacher
num_critic_for_reviews                                                      39
duration                                                                   119
director_facebook_likes                                                    541
actor_3_facebook_likes                                                     551
actor_2_name                                                  Anthony LaPaglia
actor_1_facebook_likes                                                     821
gross                                                              9.21152e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                  Bradley Whitford
movie_title                                                        The Client 
num_voted_users                                                          45798
cast_total_facebook_likes                                                 4043
actor_3_name                                                       Brad Renfro
facenumber_in_poster                                                         3
plot_keywords                                 boy|brother|lawyer|mafia|senator
movie_imdb_link              http://www.imdb.com/title/tt0109446/?ref_=fn_t...
num_user_for_reviews                                                        94
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                1994
actor_2_facebook_likes                                                     577
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 1080, dtype: object
color                                                                    Color
director_name                                                       Rob Reiner
num_critic_for_reviews                                                     207
duration                                                                    97
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     760
actor_2_name                                                     Noel Gugliemi
actor_1_facebook_likes                                                   11000
gross                                                              9.34521e+07
genres                                                  Adventure|Comedy|Drama
actor_1_name                                                    Morgan Freeman
movie_title                                                   The Bucket List 
num_voted_users                                                         184795
cast_total_facebook_likes                                                14868
actor_3_name                                                        Sean Hayes
facenumber_in_poster                                                         1
plot_keywords                        billionaire|friend|hospital|list|mechanic
movie_imdb_link              http://www.imdb.com/title/tt0825232/?ref_=fn_t...
num_user_for_reviews                                                       310
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                    2000
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     22000
Name: 1081, dtype: object
color                                                                    Color
director_name                                                    Phillip Noyce
num_critic_for_reviews                                                      47
duration                                                                   117
director_facebook_likes                                                    176
actor_3_facebook_likes                                                     308
actor_2_name                                                      Polly Walker
actor_1_facebook_likes                                                   11000
gross                                                              8.32874e+07
genres                                                         Action|Thriller
actor_1_name                                                     Harrison Ford
movie_title                                                     Patriot Games 
num_voted_users                                                          81442
cast_total_facebook_likes                                                12757
actor_3_name                                                    Patrick Bergin
facenumber_in_poster                                                         1
plot_keywords                       analyst|cia|ira|terrorist|terrorist attack
movie_imdb_link              http://www.imdb.com/title/tt0105112/?ref_=fn_t...
num_user_for_reviews                                                       137
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                1992
actor_2_facebook_likes                                                     530
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1082, dtype: object
color                                                                    Color
director_name                                                   Robert Luketic
num_critic_for_reviews                                                     132
duration                                                                   101
director_facebook_likes                                                    126
actor_3_facebook_likes                                                     586
actor_2_name                                                        Jane Fonda
actor_1_facebook_likes                                                    3000
gross                                                              8.29313e+07
genres                                                          Comedy|Romance
actor_1_name                                                        Adam Scott
movie_title                                                    Monster-in-Law 
num_voted_users                                                          43358
cast_total_facebook_likes                                                 6292
actor_3_name                                                    Elaine Stritch
facenumber_in_poster                                                         0
plot_keywords                     breakdown|fight|mother in law|scheme|wedding
movie_imdb_link              http://www.imdb.com/title/tt0369735/?ref_=fn_t...
num_user_for_reviews                                                       228
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2005
actor_2_facebook_likes                                                     949
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1083, dtype: object
color                                                                    Color
director_name                                                 Denis Villeneuve
num_critic_for_reviews                                                     454
duration                                                                   153
director_facebook_likes                                                    777
actor_3_facebook_likes                                                    1000
actor_2_name                                                   Jake Gyllenhaal
actor_1_facebook_likes                                                   20000
gross                                                              6.09629e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                      Hugh Jackman
movie_title                                                         Prisoners 
num_voted_users                                                         383591
cast_total_facebook_likes                                                37321
actor_3_name                                                    Dylan Minnette
facenumber_in_poster                                                         2
plot_keywords                child abduction|detective|investigation|police...
movie_imdb_link              http://www.imdb.com/title/tt1392214/?ref_=fn_t...
num_user_for_reviews                                                       620
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.6e+07
title_year                                                                2013
actor_2_facebook_likes                                                   15000
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     86000
Name: 1084, dtype: object
color                                                                    Color
director_name                                                    Antoine Fuqua
num_critic_for_reviews                                                     109
duration                                                                   122
director_facebook_likes                                                    845
actor_3_facebook_likes                                                     854
actor_2_name                                                        Snoop Dogg
actor_1_facebook_likes                                                   18000
gross                                                               7.6261e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                 Denzel Washington
movie_title                                                      Training Day 
num_voted_users                                                         305929
cast_total_facebook_likes                                                22370
actor_3_name                                                      Tom Berenger
facenumber_in_poster                                                         2
plot_keywords                lapd|narc|narcotics|title spoken by character|...
movie_imdb_link              http://www.imdb.com/title/tt0139654/?ref_=fn_t...
num_user_for_reviews                                                       633
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2001
actor_2_facebook_likes                                                     881
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1085, dtype: object
color                                                                    Color
director_name                                                     Dean Parisot
num_critic_for_reviews                                                     213
duration                                                                   102
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     436
actor_2_name                                                  Enrico Colantoni
actor_1_facebook_likes                                                   25000
gross                                                              7.14237e+07
genres                                                 Adventure|Comedy|Sci-Fi
actor_1_name                                                      Alan Rickman
movie_title                                                      Galaxy Quest 
num_voted_users                                                         123558
cast_total_facebook_likes                                                26998
actor_3_name                                                       Robin Sachs
facenumber_in_poster                                                         3
plot_keywords                          alien|alien race|convention|fan|general
movie_imdb_link              http://www.imdb.com/title/tt0177789/?ref_=fn_t...
num_user_for_reviews                                                       609
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 4.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     724
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     19000
Name: 1086, dtype: object
color                                                                    Color
director_name                                              Keenen Ivory Wayans
num_critic_for_reviews                                                     127
duration                                                                    83
director_facebook_likes                                                    322
actor_3_facebook_likes                                                     179
actor_2_name                                               Veronica Cartwright
actor_1_facebook_likes                                                    1000
gross                                                              7.12774e+07
genres                                                                  Comedy
actor_1_name                                                    Natasha Lyonne
movie_title                                                     Scary Movie 2 
num_voted_users                                                         119590
cast_total_facebook_likes                                                 1645
actor_3_name                                                      Andy Richter
facenumber_in_poster                                                         7
plot_keywords                         blow job|demon|exorcism|priest|professor
movie_imdb_link              http://www.imdb.com/title/tt0257106/?ref_=fn_t...
num_user_for_reviews                                                       548
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2001
actor_2_facebook_likes                                                     422
imdb_score                                                                 5.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1087, dtype: object
color                                                                    Color
director_name                                                      James Bobin
num_critic_for_reviews                                                     398
duration                                                                   103
director_facebook_likes                                                     33
actor_3_facebook_likes                                                      84
actor_2_name                                                     Eric Jacobson
actor_1_facebook_likes                                                     970
gross                                                              8.86259e+07
genres                                         Adventure|Comedy|Family|Musical
actor_1_name                                                        Bill Cobbs
movie_title                                                       The Muppets 
num_voted_users                                                          75176
cast_total_facebook_likes                                                 1336
actor_3_name                                                    Steve Whitmire
facenumber_in_poster                                                         3
plot_keywords                bel air california|book|friends who live toget...
movie_imdb_link              http://www.imdb.com/title/tt1204342/?ref_=fn_t...
num_user_for_reviews                                                       252
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 4.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                      91
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     26000
Name: 1088, dtype: object
color                                                                    Color
director_name                                               Stephen Norrington
num_critic_for_reviews                                                     184
duration                                                                   110
director_facebook_likes                                                     45
actor_3_facebook_likes                                                     595
actor_2_name                                                       Traci Lords
actor_1_facebook_likes                                                     886
gross                                                              7.00011e+07
genres                                                           Action|Horror
actor_1_name                                                      Sanaa Lathan
movie_title                                                             Blade 
num_voted_users                                                         191437
cast_total_facebook_likes                                                 3174
actor_3_name                                                          Udo Kier
facenumber_in_poster                                                         1
plot_keywords                         1990s|blade|blood|vampire|vampire hunter
movie_imdb_link              http://www.imdb.com/title/tt0120611/?ref_=fn_t...
num_user_for_reviews                                                       582
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     650
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1089, dtype: object
color                                                                    Color
director_name                                                    Thomas Carter
num_critic_for_reviews                                                     127
duration                                                                   136
director_facebook_likes                                                     49
actor_3_facebook_likes                                                     730
actor_2_name                                                     Rick Gonzalez
actor_1_facebook_likes                                                   17000
gross                                                              6.72531e+07
genres                                                             Drama|Sport
actor_1_name                                                    Channing Tatum
movie_title                                                      Coach Carter 
num_voted_users                                                          92702
cast_total_facebook_likes                                                20299
actor_3_name                                                   Robert Ri'chard
facenumber_in_poster                                                         0
plot_keywords                basketball|basketball coach|coach|contract|hig...
movie_imdb_link              http://www.imdb.com/title/tt0393162/?ref_=fn_t...
num_user_for_reviews                                                       209
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   3e+07
title_year                                                                2005
actor_2_facebook_likes                                                     807
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1090, dtype: object
color                                                                    Color
director_name                                                    Roger Michell
num_critic_for_reviews                                                     167
duration                                                                    91
director_facebook_likes                                                     50
actor_3_facebook_likes                                                      67
actor_2_name                                                       Matt Malloy
actor_1_facebook_likes                                                     521
gross                                                              6.67902e+07
genres                                                          Drama|Thriller
actor_1_name                                                    Sydney Pollack
movie_title                                                    Changing Lanes 
num_voted_users                                                          57281
cast_total_facebook_likes                                                  758
actor_3_name                                                      Bruce Altman
facenumber_in_poster                                                         0
plot_keywords                       car accident|feud|lawyer|revenge|road rage
movie_imdb_link              http://www.imdb.com/title/tt0264472/?ref_=fn_t...
num_user_for_reviews                                                       350
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     108
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1091, dtype: object
color                                                                    Color
director_name                                                       Luis Llosa
num_critic_for_reviews                                                     119
duration                                                                    89
director_facebook_likes                                                     49
actor_3_facebook_likes                                                     514
actor_2_name                                                       Eric Stoltz
actor_1_facebook_likes                                                    2000
gross                                                               6.5558e+07
genres                                        Action|Adventure|Horror|Thriller
actor_1_name                                                      Frank Welker
movie_title                                                          Anaconda 
num_voted_users                                                          73539
cast_total_facebook_likes                                                 3717
actor_3_name                                                       Kari Wuhrer
facenumber_in_poster                                                         0
plot_keywords                                amazon|anaconda|boat|jungle|snake
movie_imdb_link              http://www.imdb.com/title/tt0118615/?ref_=fn_t...
num_user_for_reviews                                                       271
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     902
imdb_score                                                                 4.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1092, dtype: object
color                                                                    Color
director_name                                                    David McNally
num_critic_for_reviews                                                     155
duration                                                                   107
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     560
actor_2_name                                                        Tyra Banks
actor_1_facebook_likes                                                     811
gross                                                              6.07863e+07
genres                                              Comedy|Drama|Music|Romance
actor_1_name                                                       Adam Garcia
movie_title                                                       Coyote Ugly 
num_voted_users                                                          90539
cast_total_facebook_likes                                                 3106
actor_3_name                                                     Izabella Miko
facenumber_in_poster                                                         5
plot_keywords                girl in panties|lift skirt|sexual attraction|s...
movie_imdb_link              http://www.imdb.com/title/tt0200550/?ref_=fn_t...
num_user_for_reviews                                                       379
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     625
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1093, dtype: object
color                                                                    Color
director_name                                                   Richard Curtis
num_critic_for_reviews                                                     218
duration                                                                   129
director_facebook_likes                                                    628
actor_3_facebook_likes                                                     548
actor_2_name                                                       Liam Neeson
actor_1_facebook_likes                                                   14000
gross                                                              5.93651e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                       Colin Firth
movie_title                                                     Love Actually 
num_voted_users                                                         318634
cast_total_facebook_likes                                                28886
actor_3_name                                                     Kris Marshall
facenumber_in_poster                                                         9
plot_keywords                aging rocker|christmas|love at first sight|min...
movie_imdb_link              http://www.imdb.com/title/tt0314331/?ref_=fn_t...
num_user_for_reviews                                                      1004
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2003
actor_2_facebook_likes                                                   14000
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     52000
Name: 1094, dtype: object
color                                                                    Color
director_name                                                    John Lasseter
num_critic_for_reviews                                                     117
duration                                                                    95
director_facebook_likes                                                    487
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Madeline Kahn
actor_1_facebook_likes                                                   18000
gross                                                              1.62793e+08
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                      Kevin Spacey
movie_title                                                      A Bug's Life 
num_voted_users                                                         211226
cast_total_facebook_likes                                                24205
actor_3_name                                                 John Ratzenberger
facenumber_in_poster                                                         0
plot_keywords                ant|circus|grasshopper|misunderstanding|overhe...
movie_imdb_link              http://www.imdb.com/title/tt0120623/?ref_=fn_t...
num_user_for_reviews                                                       317
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 1.2e+08
title_year                                                                1998
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1095, dtype: object
color                                                                    Color
director_name                                                    Albert Hughes
num_critic_for_reviews                                                     208
duration                                                                   122
director_facebook_likes                                                    117
actor_3_facebook_likes                                                     140
actor_2_name                                                     Jason Flemyng
actor_1_facebook_likes                                                   40000
gross                                                              3.15983e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                       Johnny Depp
movie_title                                                         From Hell 
num_voted_users                                                         124765
cast_total_facebook_likes                                                41636
actor_3_name                                                    Ian Richardson
facenumber_in_poster                                                         1
plot_keywords                freemason|jack the ripper|opium|prostitute|vic...
movie_imdb_link              http://www.imdb.com/title/tt0120681/?ref_=fn_t...
num_user_for_reviews                                                       541
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 3.5e+07
title_year                                                                2001
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1096, dtype: object
color                                                                    Color
director_name                                                       Luis Llosa
num_critic_for_reviews                                                      38
duration                                                                   110
director_facebook_likes                                                     49
actor_3_facebook_likes                                                      20
actor_2_name                                                       Rod Steiger
actor_1_facebook_likes                                                   13000
gross                                                              5.73626e+07
genres                                     Action|Crime|Drama|Romance|Thriller
actor_1_name                                                Sylvester Stallone
movie_title                                                    The Specialist 
num_voted_users                                                          50148
cast_total_facebook_likes                                                13331
actor_3_name                                                Emilio Estefan Jr.
facenumber_in_poster                                                         2
plot_keywords                bomb|cia|explosive|explosives expert|miami flo...
movie_imdb_link              http://www.imdb.com/title/tt0111255/?ref_=fn_t...
num_user_for_reviews                                                       116
language                                                               English
country                                                                   Peru
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                1994
actor_2_facebook_likes                                                     279
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1097, dtype: object
color                                                                    Color
director_name                                                      Ron Shelton
num_critic_for_reviews                                                      48
duration                                                                   135
director_facebook_likes                                                     41
actor_3_facebook_likes                                                     808
actor_2_name                                                      Cheech Marin
actor_1_facebook_likes                                                     982
gross                                                              5.38546e+07
genres                                              Comedy|Drama|Romance|Sport
actor_1_name                                                       Don Johnson
movie_title                                                           Tin Cup 
num_voted_users                                                          37911
cast_total_facebook_likes                                                 3648
actor_3_name                                                        Rene Russo
facenumber_in_poster                                                         0
plot_keywords                   driving range|golf|golfer|tournament|winnebago
movie_imdb_link              http://www.imdb.com/title/tt0117918/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                1996
actor_2_facebook_likes                                                     843
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 1098, dtype: object
color                                                                    Color
director_name                                               Melville Shavelson
num_critic_for_reviews                                                       8
duration                                                                   111
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     559
actor_2_name                                                        Tom Bosley
actor_1_facebook_likes                                                    6000
gross                                                                      NaN
genres                                                           Comedy|Family
actor_1_name                                                      Lucille Ball
movie_title                                              Yours, Mine and Ours 
num_voted_users                                                           5888
cast_total_facebook_likes                                                 7493
actor_3_name                                                      Tim Matheson
facenumber_in_poster                                                         0
plot_keywords                               nurse|parent|sibling|widow|widower
movie_imdb_link              http://www.imdb.com/title/tt0063829/?ref_=fn_t...
num_user_for_reviews                                                        61
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                 2.5e+06
title_year                                                                1968
actor_2_facebook_likes                                                     584
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1099, dtype: object
color                                                                    Color
director_name                                                      Jesse Dylan
num_critic_for_reviews                                                      94
duration                                                                    95
director_facebook_likes                                                     58
actor_3_facebook_likes                                                    3000
actor_2_name                                                      Will Ferrell
actor_1_facebook_likes                                                   14000
gross                                                              5.25809e+07
genres                                             Comedy|Family|Romance|Sport
actor_1_name                                                   Josh Hutcherson
movie_title                                               Kicking & Screaming 
num_voted_users                                                          30255
cast_total_facebook_likes                                                27351
actor_3_name                                                     Robert Duvall
facenumber_in_poster                                                         1
plot_keywords                        book|child|slapstick comedy|soccer|suburb
movie_imdb_link              http://www.imdb.com/title/tt0384642/?ref_=fn_t...
num_user_for_reviews                                                       118
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 4.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                    8000
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       743
Name: 1100, dtype: object
color                                                                    Color
director_name                                                   Garth Jennings
num_critic_for_reviews                                                     276
duration                                                                   109
director_facebook_likes                                                     37
actor_3_facebook_likes                                                     651
actor_2_name                                                   Kelly Macdonald
actor_1_facebook_likes                                                   11000
gross                                                              5.10191e+07
genres                                                 Adventure|Comedy|Sci-Fi
actor_1_name                                                   Zooey Deschanel
movie_title                              The Hitchhiker's Guide to the Galaxy 
num_voted_users                                                         155745
cast_total_facebook_likes                                                14073
actor_3_name                                                     Thomas Lennon
facenumber_in_poster                                                         0
plot_keywords                         alien|friend|galaxy|hyperspace|spaceship
movie_imdb_link              http://www.imdb.com/title/tt0371724/?ref_=fn_t...
num_user_for_reviews                                                      1053
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   5e+07
title_year                                                                2005
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 1101, dtype: object
color                                                                    Color
director_name                                                       Joel Zwick
num_critic_for_reviews                                                      59
duration                                                                    93
director_facebook_likes                                                     38
actor_3_facebook_likes                                                     631
actor_2_name                                                         Nick Zano
actor_1_facebook_likes                                                    1000
gross                                                              4.81146e+07
genres                                           Comedy|Family|Fantasy|Romance
actor_1_name                                                     Dania Ramirez
movie_title                                                        Fat Albert 
num_voted_users                                                           9380
cast_total_facebook_likes                                                 4604
actor_3_name                                                     Alice Greczyn
facenumber_in_poster                                                         1
plot_keywords                 animated sequence|junkyard|love|party|television
movie_imdb_link              http://www.imdb.com/title/tt0396592/?ref_=fn_t...
num_user_for_reviews                                                        91
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 2.6e+07
title_year                                                                2004
actor_2_facebook_likes                                                     641
imdb_score                                                                 4.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       531
Name: 1102, dtype: object
color                                                                    Color
director_name                                                  Russell Mulcahy
num_critic_for_reviews                                                     216
duration                                                                    94
director_facebook_likes                                                     85
actor_3_facebook_likes                                                     443
actor_2_name                                                         Mike Epps
actor_1_facebook_likes                                                   14000
gross                                                              5.06487e+07
genres                                           Action|Horror|Sci-Fi|Thriller
actor_1_name                                                    Milla Jovovich
movie_title                                         Resident Evil: Extinction 
num_voted_users                                                         149549
cast_total_facebook_likes                                                16225
actor_3_name                                                    James Tumminia
facenumber_in_poster                                                         1
plot_keywords                               clone|convoy|crow|desert|satellite
movie_imdb_link              http://www.imdb.com/title/tt0432021/?ref_=fn_t...
num_user_for_reviews                                                       348
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     706
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1103, dtype: object
color                                                                    Color
director_name                                                     Frank Coraci
num_critic_for_reviews                                                     173
duration                                                                   117
director_facebook_likes                                                    153
actor_3_facebook_likes                                                     734
actor_2_name                                                      Adam Sandler
actor_1_facebook_likes                                                   35000
gross                                                              4.62805e+07
genres                                                          Comedy|Romance
actor_1_name                                                      Bella Thorne
movie_title                                                           Blended 
num_voted_users                                                          87165
cast_total_facebook_likes                                                49743
actor_3_name                                                       Joel McHale
facenumber_in_poster                                                         0
plot_keywords                            blind date|children|date|daughter|son
movie_imdb_link              http://www.imdb.com/title/tt1086772/?ref_=fn_t...
num_user_for_reviews                                                       184
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2014
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     12000
Name: 1104, dtype: object
color                                                                    Color
director_name                                                       Wayne Wang
num_critic_for_reviews                                                      99
duration                                                                   112
director_facebook_likes                                                     61
actor_3_facebook_likes                                                     501
actor_2_name                                                       Alicia Witt
actor_1_facebook_likes                                                    1000
gross                                                              3.83602e+07
genres                                                  Adventure|Comedy|Drama
actor_1_name                                                         LL Cool J
movie_title                                                      Last Holiday 
num_voted_users                                                          21215
cast_total_facebook_likes                                                 3757
actor_3_name                                                    Timothy Hutton
facenumber_in_poster                                                         1
plot_keywords                              chef|congressman|cook|hotel|senator
movie_imdb_link              http://www.imdb.com/title/tt0408985/?ref_=fn_t...
num_user_for_reviews                                                       116
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     976
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1105, dtype: object
color                                                                    Color
director_name                                                    Curtis Hanson
num_critic_for_reviews                                                      42
duration                                                                   111
director_facebook_likes                                                    161
actor_3_facebook_likes                                                     132
actor_2_name                                                   Glenn Morshower
actor_1_facebook_likes                                                   11000
gross                                                              4.68157e+07
genres                                         Action|Adventure|Crime|Thriller
actor_1_name                                                      Meryl Streep
movie_title                                                    The River Wild 
num_voted_users                                                          32544
cast_total_facebook_likes                                                12161
actor_3_name                                                   William Lucking
facenumber_in_poster                                                         1
plot_keywords                criminal|rafting|river|robber|white water rafting
movie_imdb_link              http://www.imdb.com/title/tt0110997/?ref_=fn_t...
num_user_for_reviews                                                        69
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                1994
actor_2_facebook_likes                                                     894
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1106, dtype: object
color                                                                    Color
director_name                                                         Frank Oz
num_critic_for_reviews                                                      25
duration                                                                    96
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     563
actor_2_name                                                Vincent Kartheiser
actor_1_facebook_likes                                                    1000
gross                                                              3.56176e+07
genres                                                    Drama|Family|Fantasy
actor_1_name                                                      Steve Coogan
movie_title                                        The Indian in the Cupboard 
num_voted_users                                                          20688
cast_total_facebook_likes                                                 2965
actor_3_name                                                       David Keith
facenumber_in_poster                                                         1
plot_keywords                            best friend|birthday|boy|friend|magic
movie_imdb_link              http://www.imdb.com/title/tt0113419/?ref_=fn_t...
num_user_for_reviews                                                        47
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 4.5e+07
title_year                                                                1995
actor_2_facebook_likes                                                     845
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1107, dtype: object
color                                                          Black and White
director_name                                                     Oliver Stone
num_critic_for_reviews                                                     339
duration                                                                   141
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     404
actor_2_name                                                      Shea Whigham
actor_1_facebook_likes                                                     749
gross                                                              4.73076e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                     Demián Bichir
movie_title                                                           Savages 
num_voted_users                                                         104301
cast_total_facebook_likes                                                 1948
actor_3_name                                                      Gary Stretch
facenumber_in_poster                                                         4
plot_keywords                arms tied overhead|damsel in distress|dea|mari...
movie_imdb_link              http://www.imdb.com/title/tt1615065/?ref_=fn_t...
num_user_for_reviews                                                       269
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     463
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     28000
Name: 1108, dtype: object
color                                                                    Color
director_name                                                   David R. Ellis
num_critic_for_reviews                                                     127
duration                                                                    94
director_facebook_likes                                                    160
actor_3_facebook_likes                                                     167
actor_2_name                                                      Valerie Cruz
actor_1_facebook_likes                                                     550
gross                                                              3.20036e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                     Richard Burgi
movie_title                                                          Cellular 
num_voted_users                                                          79141
cast_total_facebook_likes                                                 1102
actor_3_name                                                    Will Beinbrink
facenumber_in_poster                                                         1
plot_keywords                cell phone|distress signal|family in danger|po...
movie_imdb_link              http://www.imdb.com/title/tt0337921/?ref_=fn_t...
num_user_for_reviews                                                       355
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     216
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 1109, dtype: object
color                                                                    Color
director_name                                                     Peter Howitt
num_critic_for_reviews                                                     122
duration                                                                    87
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     252
actor_2_name                                                 Natalie Imbruglia
actor_1_facebook_likes                                                     427
gross                                                              2.79724e+07
genres                                                 Action|Adventure|Comedy
actor_1_name                                                     Kevin McNally
movie_title                                                    Johnny English 
num_voted_users                                                         114692
cast_total_facebook_likes                                                 1461
actor_3_name                                                        Ben Miller
facenumber_in_poster                                                         1
plot_keywords                       british|crown jewels|explosion|funeral|spy
movie_imdb_link              http://www.imdb.com/title/tt0274166/?ref_=fn_t...
num_user_for_reviews                                                       285
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 3.5e+07
title_year                                                                2003
actor_2_facebook_likes                                                     304
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                      2000
Name: 1110, dtype: object
color                                                                    Color
director_name                                                    John A. Davis
num_critic_for_reviews                                                     105
duration                                                                    88
director_facebook_likes                                                      8
actor_3_facebook_likes                                                    8000
actor_2_name                                                      Meryl Streep
actor_1_facebook_likes                                                   12000
gross                                                              2.81332e+07
genres                               Adventure|Animation|Comedy|Family|Fantasy
actor_1_name                                                      Nicolas Cage
movie_title                                                     The Ant Bully 
num_voted_users                                                          30055
cast_total_facebook_likes                                                33822
actor_3_name                                                     Julia Roberts
facenumber_in_poster                                                         1
plot_keywords                ant|miniaturization|punishment|shrinking|sudde...
movie_imdb_link              http://www.imdb.com/title/tt0429589/?ref_=fn_t...
num_user_for_reviews                                                        70
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   5e+07
title_year                                                                2006
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       593
Name: 1111, dtype: object
color                                                                    Color
director_name                                                      David Lynch
num_critic_for_reviews                                                     144
duration                                                                   177
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     202
actor_2_name                                                   Jürgen Prochnow
actor_1_facebook_likes                                                     913
gross                                                                 2.74e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                   Virginia Madsen
movie_title                                                              Dune 
num_voted_users                                                          97087
cast_total_facebook_likes                                                 2449
actor_3_name                                                       José Ferrer
facenumber_in_poster                                                         3
plot_keywords                 desert planet|dune|giant worm|space travel|spice
movie_imdb_link              http://www.imdb.com/title/tt0087182/?ref_=fn_t...
num_user_for_reviews                                                       569
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                1984
actor_2_facebook_likes                                                     362
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 1112, dtype: object
color                                                                    Color
director_name                                                     Julie Taymor
num_critic_for_reviews                                                     156
duration                                                                   133
director_facebook_likes                                                    278
actor_3_facebook_likes                                                     107
actor_2_name                                                       T.V. Carpio
actor_1_facebook_likes                                                    5000
gross                                                              2.43437e+07
genres                                           Drama|Fantasy|Musical|Romance
actor_1_name                                                      Jim Sturgess
movie_title                                               Across the Universe 
num_voted_users                                                          91860
cast_total_facebook_likes                                                 5405
actor_3_name                                                   Robert Clohessy
facenumber_in_poster                                                         0
plot_keywords                             anti war|liverpool|love|protest|song
movie_imdb_link              http://www.imdb.com/title/tt0445922/?ref_=fn_t...
num_user_for_reviews                                                       524
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     117
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     14000
Name: 1113, dtype: object
color                                                                    Color
director_name                                                       Sam Mendes
num_critic_for_reviews                                                     323
duration                                                                   119
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   10000
actor_2_name                                                      Kate Winslet
actor_1_facebook_likes                                                   29000
gross                                                              2.28778e+07
genres                                                           Drama|Romance
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                Revolutionary Road 
num_voted_users                                                         152591
cast_total_facebook_likes                                                53895
actor_3_name                                                        Joe Komara
facenumber_in_poster                                                         0
plot_keywords                  based on novel|children|connecticut|suburb|work
movie_imdb_link              http://www.imdb.com/title/tt0959337/?ref_=fn_t...
num_user_for_reviews                                                       414
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 3.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                   14000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1114, dtype: object
color                                                                    Color
director_name                                                   Richard Donner
num_critic_for_reviews                                                     199
duration                                                                   102
director_facebook_likes                                                    503
actor_3_facebook_likes                                                     795
actor_2_name                                                       David Zayas
actor_1_facebook_likes                                                   13000
gross                                                              3.68835e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                      Bruce Willis
movie_title                                                         16 Blocks 
num_voted_users                                                         112769
cast_total_facebook_likes                                                15053
actor_3_name                                                        Sasha Roiz
facenumber_in_poster                                                         2
plot_keywords                      alcoholic|courthouse|detective|jail|witness
movie_imdb_link              http://www.imdb.com/title/tt0450232/?ref_=fn_t...
num_user_for_reviews                                                       305
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                 5.2e+07
title_year                                                                2006
actor_2_facebook_likes                                                     929
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1115, dtype: object
color                                                                    Color
director_name                                                Mathieu Kassovitz
num_critic_for_reviews                                                     164
duration                                                                   101
director_facebook_likes                                                    326
actor_3_facebook_likes                                                     510
actor_2_name                                                Charlotte Rampling
actor_1_facebook_likes                                                   14000
gross                                                              2.25317e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                        Vin Diesel
movie_title                                                      Babylon A.D. 
num_voted_users                                                          81523
cast_total_facebook_likes                                                15990
actor_3_name                                                       David Belle
facenumber_in_poster                                                         0
plot_keywords                box office flop|convent|mercenary|new york|pre...
movie_imdb_link              http://www.imdb.com/title/tt0364970/?ref_=fn_t...
num_user_for_reviews                                                       214
language                                                               English
country                                                                 France
content_rating                                                           PG-13
budget                                                                   7e+07
title_year                                                                2008
actor_2_facebook_likes                                                     844
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1116, dtype: object
color                                                                    Color
director_name                                                        John Gray
num_critic_for_reviews                                                      39
duration                                                                    91
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     322
actor_2_name                                                        Bob Gunton
actor_1_facebook_likes                                                    2000
gross                                                              2.04009e+07
genres                                      Action|Comedy|Crime|Drama|Thriller
actor_1_name                                                    Alexa PenaVega
movie_title                                                   The Glimmer Man 
num_voted_users                                                          15455
cast_total_facebook_likes                                                 3855
actor_3_name                                               Keenen Ivory Wayans
facenumber_in_poster                                                         1
plot_keywords                detective|heavy rain|murder|partner|serial killer
movie_imdb_link              http://www.imdb.com/title/tt0116421/?ref_=fn_t...
num_user_for_reviews                                                        80
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                1996
actor_2_facebook_likes                                                     461
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       451
Name: 1117, dtype: object
color                                                                    Color
director_name                                                     Harold Ramis
num_critic_for_reviews                                                      43
duration                                                                   117
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     451
actor_2_name                                                Brian Doyle-Murray
actor_1_facebook_likes                                                     905
gross                                                              2.01019e+07
genres                                                   Comedy|Romance|Sci-Fi
actor_1_name                                                    John de Lancie
movie_title                                                      Multiplicity 
num_voted_users                                                          24757
cast_total_facebook_likes                                                 2348
actor_3_name                                                    Obba Babatundé
facenumber_in_poster                                                         0
plot_keywords                clone|cloning|construction|same actor playing ...
movie_imdb_link              http://www.imdb.com/title/tt0117108/?ref_=fn_t...
num_user_for_reviews                                                        81
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                1996
actor_2_facebook_likes                                                     484
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1118, dtype: object
color                                                                    Color
director_name                                                     John Schultz
num_critic_for_reviews                                                      82
duration                                                                    86
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     553
actor_2_name                                                    Carter Jenkins
actor_1_facebook_likes                                                    1000
gross                                                              2.52004e+07
genres                                  Adventure|Comedy|Family|Fantasy|Sci-Fi
actor_1_name                                                        Malese Jow
movie_title                                               Aliens in the Attic 
num_voted_users                                                          16580
cast_total_facebook_likes                                                 3423
actor_3_name                                                       Tim Meadows
facenumber_in_poster                                                         3
plot_keywords                   alien|attic|boyfriend|mind control|nintendo ds
movie_imdb_link              http://www.imdb.com/title/tt0775552/?ref_=fn_t...
num_user_for_reviews                                                        55
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 4.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     701
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       916
Name: 1119, dtype: object
color                                                                    Color
director_name                                                        Sean Penn
num_critic_for_reviews                                                     150
duration                                                                   124
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      19
actor_2_name                                                     Adrien Dorval
actor_1_facebook_likes                                                     723
gross                                                              1.97199e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                   Costas Mandylor
movie_title                                                        The Pledge 
num_voted_users                                                          42621
cast_total_facebook_likes                                                  793
actor_3_name                                                    Nels Lennarson
facenumber_in_poster                                                         0
plot_keywords                            nevada|pledge|police|porcupine|search
movie_imdb_link              http://www.imdb.com/title/tt0237572/?ref_=fn_t...
num_user_for_reviews                                                       531
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2001
actor_2_facebook_likes                                                      44
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1120, dtype: object
color                                                                    Color
director_name                                                    Susan Stroman
num_critic_for_reviews                                                     168
duration                                                                   134
director_facebook_likes                                                     38
actor_3_facebook_likes                                                    2000
actor_2_name                                                      Will Ferrell
actor_1_facebook_likes                                                   11000
gross                                                              1.93777e+07
genres                                                          Comedy|Musical
actor_1_name                                                        Jon Lovitz
movie_title                                                     The Producers 
num_voted_users                                                          35140
cast_total_facebook_likes                                                24351
actor_3_name                                                 Matthew Broderick
facenumber_in_poster                                                         3
plot_keywords                    accountant|money|opening night|scheme|swedish
movie_imdb_link              http://www.imdb.com/title/tt0395251/?ref_=fn_t...
num_user_for_reviews                                                       409
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                    8000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1121, dtype: object
color                                                                    Color
director_name                                                      Pete Travis
num_critic_for_reviews                                                     432
duration                                                                    95
director_facebook_likes                                                     38
actor_3_facebook_likes                                                      20
actor_2_name                                                        Jason Cope
actor_1_facebook_likes                                                     409
gross                                                              1.34017e+07
genres                                                           Action|Sci-Fi
actor_1_name                                                       Wood Harris
movie_title                                                             Dredd 
num_voted_users                                                         203461
cast_total_facebook_likes                                                  578
actor_3_name                                                       Rakie Ayola
facenumber_in_poster                                                         0
plot_keywords                brutality|dark humor|female antagonist|female ...
movie_imdb_link              http://www.imdb.com/title/tt1343727/?ref_=fn_t...
num_user_for_reviews                                                       588
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 3.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     107
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     46000
Name: 1122, dtype: object
color                                                                    Color
director_name                                                     Simon Wincer
num_critic_for_reviews                                                      60
duration                                                                   100
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     579
actor_2_name                                                    Treat Williams
actor_1_facebook_likes                                                    1000
gross                                                              1.73009e+07
genres                                         Action|Adventure|Comedy|Fantasy
actor_1_name                                              Cary-Hiroyuki Tagawa
movie_title                                                       The Phantom 
num_voted_users                                                          27648
cast_total_facebook_likes                                                 3855
actor_3_name                                                    Kristy Swanson
facenumber_in_poster                                                         0
plot_keywords                      ghost|new york city|phantom|skull|superhero
movie_imdb_link              http://www.imdb.com/title/tt0117331/?ref_=fn_t...
num_user_for_reviews                                                       148
language                                                               English
country                                                              Australia
content_rating                                                              PG
budget                                                                 4.5e+07
title_year                                                                1996
actor_2_facebook_likes                                                     642
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1123, dtype: object
color                                                                    Color
director_name                                               Billy Bob Thornton
num_critic_for_reviews                                                      85
duration                                                                   220
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     820
actor_2_name                                                      Henry Thomas
actor_1_facebook_likes                                                   13000
gross                                                              1.55271e+07
genres                                                   Drama|Romance|Western
actor_1_name                                                        Matt Damon
movie_title                                             All the Pretty Horses 
num_voted_users                                                          11388
cast_total_facebook_likes                                                15006
actor_3_name                                                       Sam Shepard
facenumber_in_poster                                                         2
plot_keywords                        1940s|cowboy|mexico|railway station|texas
movie_imdb_link              http://www.imdb.com/title/tt0149624/?ref_=fn_t...
num_user_for_reviews                                                       183
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.7e+07
title_year                                                                2000
actor_2_facebook_likes                                                     861
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                       652
Name: 1124, dtype: object
color                                                          Black and White
director_name                                                     Oliver Stone
num_critic_for_reviews                                                      83
duration                                                                   212
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     805
actor_2_name                                                       Bob Hoskins
actor_1_facebook_likes                                                   12000
gross                                                               1.3561e+07
genres                                                 Biography|Drama|History
actor_1_name                                                   Anthony Hopkins
movie_title                                                             Nixon 
num_voted_users                                                          23996
cast_total_facebook_likes                                                21130
actor_3_name                                                        Joan Allen
facenumber_in_poster                                                         0
plot_keywords                     courtship|election|paranoia|president|quaker
movie_imdb_link              http://www.imdb.com/title/tt0113987/?ref_=fn_t...
num_user_for_reviews                                                       161
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1995
actor_2_facebook_likes                                                    5000
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       915
Name: 1125, dtype: object
color                                                                    Color
director_name                                                   Roman Polanski
num_critic_for_reviews                                                     343
duration                                                                   128
director_facebook_likes                                                   2000
actor_3_facebook_likes                                                     501
actor_2_name                                                   Olivia Williams
actor_1_facebook_likes                                                     854
gross                                                              1.55232e+07
genres                                                        Mystery|Thriller
actor_1_name                                                       Jim Belushi
movie_title                                                  The Ghost Writer 
num_voted_users                                                         132423
cast_total_facebook_likes                                                 2507
actor_3_name                                                    Timothy Hutton
facenumber_in_poster                                                         2
plot_keywords                british prime minister|death|island|memoir|writer
movie_imdb_link              http://www.imdb.com/title/tt1139328/?ref_=fn_t...
num_user_for_reviews                                                       349
language                                                               English
country                                                                 France
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                     766
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 1126, dtype: object
color                                                                    Color
director_name                                                  Stephen Sommers
num_critic_for_reviews                                                     106
duration                                                                   106
director_facebook_likes                                                    208
actor_3_facebook_likes                                                     855
actor_2_name                                                     Jason Flemyng
actor_1_facebook_likes                                                    3000
gross                                                              1.11464e+07
genres                                          Action|Adventure|Horror|Sci-Fi
actor_1_name                                                    Djimon Hounsou
movie_title                                                       Deep Rising 
num_voted_users                                                          26551
cast_total_facebook_likes                                                 6558
actor_3_name                                                         Wes Studi
facenumber_in_poster                                                         0
plot_keywords                creature feature|hijacker|ocean|ship|shot in t...
movie_imdb_link              http://www.imdb.com/title/tt0118956/?ref_=fn_t...
num_user_for_reviews                                                       273
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                    1000
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1127, dtype: object
color                                                                    Color
director_name                                                        Spike Lee
num_critic_for_reviews                                                     158
duration                                                                   160
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     826
actor_2_name                                                    Omari Hardwick
actor_1_facebook_likes                                                   23000
gross                                                              7.91689e+06
genres                                         Action|Crime|Drama|Thriller|War
actor_1_name                                              Joseph Gordon-Levitt
movie_title                                               Miracle at St. Anna 
num_voted_users                                                          15697
cast_total_facebook_likes                                                26982
actor_3_name                                                        Laz Alonso
facenumber_in_poster                                                         0
plot_keywords                      boy|german soldier|partisan|trapped|village
movie_imdb_link              http://www.imdb.com/title/tt1046997/?ref_=fn_t...
num_user_for_reviews                                                       182
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                    1000
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1128, dtype: object
color                                                                    Color
director_name                                                      Yimou Zhang
num_critic_for_reviews                                                     189
duration                                                                   114
director_facebook_likes                                                    611
actor_3_facebook_likes                                                      10
actor_2_name                                                            Ye Liu
actor_1_facebook_likes                                                     879
gross                                                               6.5655e+06
genres                                                           Drama|Romance
actor_1_name                                                           Li Gong
movie_title                                        Curse of the Golden Flower 
num_voted_users                                                          36455
cast_total_facebook_likes                                                  949
actor_3_name                                                            Man Li
facenumber_in_poster                                                         2
plot_keywords                       china|chrysanthemum|emperor|empress|prince
movie_imdb_link              http://www.imdb.com/title/tt0473444/?ref_=fn_t...
num_user_for_reviews                                                       229
language                                                              Mandarin
country                                                                  China
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                      52
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1129, dtype: object
color                                                                    Color
director_name                                                       Danny Pang
num_critic_for_reviews                                                     125
duration                                                                    99
director_facebook_likes                                                     15
actor_3_facebook_likes                                                      61
actor_2_name                                                     Charlie Yeung
actor_1_facebook_likes                                                   12000
gross                                                              1.52797e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                                 Bangkok Dangerous 
num_voted_users                                                          48245
cast_total_facebook_likes                                                12166
actor_3_name                                                        James With
facenumber_in_poster                                                         1
plot_keywords                deaf|hitman|nightclub|pickpocket|rules of prof...
movie_imdb_link              http://www.imdb.com/title/tt0814022/?ref_=fn_t...
num_user_for_reviews                                                       154
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2008
actor_2_facebook_likes                                                      68
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1130, dtype: object
color                                                                    Color
director_name                                                 Barry Sonnenfeld
num_critic_for_reviews                                                      87
duration                                                                    74
director_facebook_likes                                                    188
actor_3_facebook_likes                                                     865
actor_2_name                                                  Janeane Garofalo
actor_1_facebook_likes                                                   11000
gross                                                              7.26229e+06
genres                                                   Comedy|Crime|Thriller
actor_1_name                                                   Zooey Deschanel
movie_title                                                       Big Trouble 
num_voted_users                                                          17307
cast_total_facebook_likes                                                13917
actor_3_name                                                         Omar Epps
facenumber_in_poster                                                         2
plot_keywords                airport|fbi agent|person in a car trunk|suitca...
movie_imdb_link              http://www.imdb.com/title/tt0246464/?ref_=fn_t...
num_user_for_reviews                                                       186
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2002
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       892
Name: 1131, dtype: object
color                                                                    Color
director_name                                                      Mike Newell
num_critic_for_reviews                                                     115
duration                                                                   139
director_facebook_likes                                                    179
actor_3_facebook_likes                                                      50
actor_2_name                                              Giovanna Mezzogiorno
actor_1_facebook_likes                                                     267
gross                                                              4.58489e+06
genres                                                           Drama|Romance
actor_1_name                                                       Marcela Mar
movie_title                                       Love in the Time of Cholera 
num_voted_users                                                          19114
cast_total_facebook_likes                                                  538
actor_3_name                                                       Unax Ugalde
facenumber_in_poster                                                         0
plot_keywords                        19th century|colombia|love|marriage|widow
movie_imdb_link              http://www.imdb.com/title/tt0484740/?ref_=fn_t...
num_user_for_reviews                                                       115
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     202
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1132, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      23
duration                                                                    52
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     114
actor_2_name                                                    Clotilde Hesme
actor_1_facebook_likes                                                     164
gross                                                                      NaN
genres                                            Drama|Fantasy|Horror|Mystery
actor_1_name                                                    Pierre Perrier
movie_title                                          The Returned             
num_voted_users                                                          15762
cast_total_facebook_likes                                                  654
actor_3_name                                                   Céline Sallette
facenumber_in_poster                                                         9
plot_keywords                france|living dead|serial killer|small town|su...
movie_imdb_link              http://www.imdb.com/title/tt2521668/?ref_=fn_t...
num_user_for_reviews                                                        47
language                                                                French
country                                                                 France
content_rating                                                           TV-MA
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     116
imdb_score                                                                 8.3
aspect_ratio                                                                16
movie_facebook_likes                                                     17000
Name: 1133, dtype: object
color                                                                    Color
director_name                                               George P. Cosmatos
num_critic_for_reviews                                                      24
duration                                                                   103
director_facebook_likes                                                    170
actor_3_facebook_likes                                                     269
actor_2_name                                                       Ben Gazzara
actor_1_facebook_likes                                                     849
gross                                                              2.15454e+06
genres                                                         Action|Thriller
actor_1_name                                                     Sam Waterston
movie_title                                                 Shadow Conspiracy 
num_voted_users                                                           3803
cast_total_facebook_likes                                                 2457
actor_3_name                                                 Nicholas Turturro
facenumber_in_poster                                                         2
plot_keywords                american president|assassin|conspiracy|preside...
movie_imdb_link              http://www.imdb.com/title/tt0120107/?ref_=fn_t...
num_user_for_reviews                                                        41
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     623
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                        68
Name: 1134, dtype: object
color                                                                    Color
director_name                                                    Oliver Parker
num_critic_for_reviews                                                     152
duration                                                                   101
director_facebook_likes                                                     32
actor_3_facebook_likes                                                     104
actor_2_name                                                     Tim McInnerny
actor_1_facebook_likes                                                     219
gross                                                              8.12946e+06
genres                                           Action|Adventure|Comedy|Crime
actor_1_name                                                    Daniel Kaluuya
movie_title                                             Johnny English Reborn 
num_voted_users                                                          89568
cast_total_facebook_likes                                                  661
actor_3_name                                                        Togo Igawa
facenumber_in_poster                                                         1
plot_keywords                       assassin|chinese|conspiracy|gadget|premier
movie_imdb_link              http://www.imdb.com/title/tt1634122/?ref_=fn_t...
num_user_for_reviews                                                       142
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 4.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                     141
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     17000
Name: 1135, dtype: object
color                                                                    Color
director_name                                                Lawrence Kasanoff
num_critic_for_reviews                                                      12
duration                                                                    91
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     500
actor_2_name                                                      Larry Miller
actor_1_facebook_likes                                                     719
gross                                                                      NaN
genres                                  Action|Animation|Comedy|Family|Fantasy
actor_1_name                                                     Jerry Stiller
movie_title                                                        Foodfight! 
num_voted_users                                                           4377
cast_total_facebook_likes                                                 3090
actor_3_name                                                  Harvey Fierstein
facenumber_in_poster                                                         0
plot_keywords                femme fatale|food|pun|supermarket|troubled pro...
movie_imdb_link              http://www.imdb.com/title/tt0249516/?ref_=fn_t...
num_user_for_reviews                                                        66
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     611
imdb_score                                                                 1.7
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 1136, dtype: object
color                                                                    Color
director_name                                                      Ben Affleck
num_critic_for_reviews                                                     656
duration                                                                   130
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     650
actor_2_name                                                     Scoot McNairy
actor_1_facebook_likes                                                    1000
gross                                                              1.36019e+08
genres                                        Biography|Drama|History|Thriller
actor_1_name                                                       Clea DuVall
movie_title                                                              Argo 
num_voted_users                                                         452465
cast_total_facebook_likes                                                 3133
actor_3_name                                                      Tate Donovan
facenumber_in_poster                                                         1
plot_keywords                          1970s|cia|f word|u.s. embassy|year 1979
movie_imdb_link              http://www.imdb.com/title/tt1024648/?ref_=fn_t...
num_user_for_reviews                                                       695
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                4.45e+07
title_year                                                                2012
actor_2_facebook_likes                                                     660
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     89000
Name: 1137, dtype: object
color                                                                    Color
director_name                                                     Andrew Davis
num_critic_for_reviews                                                     119
duration                                                                   130
director_facebook_likes                                                     99
actor_3_facebook_likes                                                     812
actor_2_name                                                    Daniel Roebuck
actor_1_facebook_likes                                                   11000
gross                                                              1.83876e+08
genres                           Action|Adventure|Crime|Drama|Mystery|Thriller
actor_1_name                                                     Harrison Ford
movie_title                                                      The Fugitive 
num_voted_users                                                         213668
cast_total_facebook_likes                                                13357
actor_3_name                                                         Sela Ward
facenumber_in_poster                                                         1
plot_keywords                hospital|on the run|one armed man|surgeon|u.s....
movie_imdb_link              http://www.imdb.com/title/tt0106977/?ref_=fn_t...
num_user_for_reviews                                                       270
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.4e+07
title_year                                                                1993
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1138, dtype: object
color                                                                    Color
director_name                                                     Andy Tennant
num_critic_for_reviews                                                     161
duration                                                                   110
director_facebook_likes                                                     72
actor_3_facebook_likes                                                     789
actor_2_name                                                    Dorian Missick
actor_1_facebook_likes                                                   18000
gross                                                              6.70612e+07
genres                                                   Action|Comedy|Romance
actor_1_name                                                     Gerard Butler
movie_title                                                 The Bounty Hunter 
num_voted_users                                                          96565
cast_total_facebook_likes                                                21554
actor_3_name                                                      Peter Greene
facenumber_in_poster                                                         1
plot_keywords                bounty hunter|death|murder|police officer|repo...
movie_imdb_link              http://www.imdb.com/title/tt1038919/?ref_=fn_t...
num_user_for_reviews                                                       135
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2010
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1139, dtype: object
color                                                          Black and White
director_name                                                   Barry Levinson
num_critic_for_reviews                                                      73
duration                                                                   147
director_facebook_likes                                                    272
actor_3_facebook_likes                                                     893
actor_2_name                                                         Brad Pitt
actor_1_facebook_likes                                                   22000
gross                                                              5.33009e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                    Robert De Niro
movie_title                                                          Sleepers 
num_voted_users                                                         154487
cast_total_facebook_likes                                                37076
actor_3_name                                                     Minnie Driver
facenumber_in_poster                                                         3
plot_keywords                boy|guard|kicked in the crotch|prank|sexual abuse
movie_imdb_link              http://www.imdb.com/title/tt0117665/?ref_=fn_t...
num_user_for_reviews                                                       259
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.4e+07
title_year                                                                1996
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1140, dtype: object
color                                                                    Color
director_name                                               George P. Cosmatos
num_critic_for_reviews                                                      96
duration                                                                    96
director_facebook_likes                                                    170
actor_3_facebook_likes                                                     668
actor_2_name                                                     Julia Nickson
actor_1_facebook_likes                                                   13000
gross                                                              1.50415e+08
genres                                           Action|Adventure|Thriller|War
actor_1_name                                                Sylvester Stallone
movie_title                                        Rambo: First Blood Part II 
num_voted_users                                                         117606
cast_total_facebook_likes                                                15662
actor_3_name                                                       Martin Kove
facenumber_in_poster                                                         0
plot_keywords                               1980s|mission|prison|rambo|vietnam
movie_imdb_link              http://www.imdb.com/title/tt0089880/?ref_=fn_t...
num_user_for_reviews                                                       217
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.4e+07
title_year                                                                1985
actor_2_facebook_likes                                                     738
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1141, dtype: object
color                                                                    Color
director_name                                                     Brian Gibson
num_critic_for_reviews                                                      28
duration                                                                   118
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     643
actor_2_name                                                        Demi Moore
actor_1_facebook_likes                                                   23000
gross                                                              4.48347e+07
genres                                                          Drama|Thriller
actor_1_name                                              Joseph Gordon-Levitt
movie_title                                                         The Juror 
num_voted_users                                                          13995
cast_total_facebook_likes                                                26907
actor_3_name                                                        Anne Heche
facenumber_in_poster                                                         1
plot_keywords                             breasts|mafia|sex scene|temple|woods
movie_imdb_link              http://www.imdb.com/title/tt0116731/?ref_=fn_t...
num_user_for_reviews                                                        62
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.4e+07
title_year                                                                1996
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       353
Name: 1142, dtype: object
color                                                                    Color
director_name                                                  Norman Ferguson
num_critic_for_reviews                                                     105
duration                                                                    88
director_facebook_likes                                                      3
actor_3_facebook_likes                                                      40
actor_2_name                                                      Dickie Jones
actor_1_facebook_likes                                                    1000
gross                                                                 8.43e+07
genres                                        Animation|Family|Fantasy|Musical
actor_1_name                                                         Mel Blanc
movie_title                                                         Pinocchio 
num_voted_users                                                          90360
cast_total_facebook_likes                                                 1178
actor_3_name                                                     Cliff Edwards
facenumber_in_poster                                                         0
plot_keywords                    boy|conscience|fairy|jiminy cricket|pinocchio
movie_imdb_link              http://www.imdb.com/title/tt0032910/?ref_=fn_t...
num_user_for_reviews                                                       147
language                                                               English
country                                                                    USA
content_rating                                                        Approved
budget                                                                 2.6e+06
title_year                                                                1940
actor_2_facebook_likes                                                      48
imdb_score                                                                 7.5
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 1143, dtype: object
color                                                                    Color
director_name                                                   Michael Cimino
num_critic_for_reviews                                                     102
duration                                                                   325
director_facebook_likes                                                    517
actor_3_facebook_likes                                                     678
actor_2_name                                                     Sam Waterston
actor_1_facebook_likes                                                   12000
gross                                                                  1.5e+06
genres                                                 Adventure|Drama|Western
actor_1_name                                                      Jeff Bridges
movie_title                                                     Heaven's Gate 
num_voted_users                                                           9830
cast_total_facebook_likes                                                14255
actor_3_name                                                  Isabelle Huppert
facenumber_in_poster                                                         0
plot_keywords                1890s|hired gun|immigrant|johnson county war|s...
movie_imdb_link              http://www.imdb.com/title/tt0080855/?ref_=fn_t...
num_user_for_reviews                                                       189
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.4e+07
title_year                                                                1980
actor_2_facebook_likes                                                     849
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 1144, dtype: object
color                                                                    Color
director_name                                                      Len Wiseman
num_critic_for_reviews                                                     206
duration                                                                   102
director_facebook_likes                                                    235
actor_3_facebook_likes                                                     520
actor_2_name                                                       Tony Curran
actor_1_facebook_likes                                                     956
gross                                                              6.23189e+07
genres                                Action|Adventure|Fantasy|Sci-Fi|Thriller
actor_1_name                                                      Sophia Myles
movie_title                                             Underworld: Evolution 
num_voted_users                                                         156225
cast_total_facebook_likes                                                 2998
actor_3_name                                                      Derek Jacobi
facenumber_in_poster                                                         1
plot_keywords                       death|feud|forbidden love|vampire|werewolf
movie_imdb_link              http://www.imdb.com/title/tt0401855/?ref_=fn_t...
num_user_for_reviews                                                       502
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     845
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1145, dtype: object
color                                                                    Color
director_name                                                    Paul McGuigan
num_critic_for_reviews                                                     159
duration                                                                   110
director_facebook_likes                                                    118
actor_3_facebook_likes                                                     287
actor_2_name                                                   Spencer Wilding
actor_1_facebook_likes                                                   11000
gross                                                              5.77352e+06
genres                                            Drama|Horror|Sci-Fi|Thriller
actor_1_name                                                  Daniel Radcliffe
movie_title                                               Victor Frankenstein 
num_voted_users                                                          28618
cast_total_facebook_likes                                                12876
actor_3_name                                                       Daniel Mays
facenumber_in_poster                                                         2
plot_keywords                assistant|experiment|frankenstein|medical stud...
movie_imdb_link              http://www.imdb.com/title/tt1976009/?ref_=fn_t...
num_user_for_reviews                                                        91
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2015
actor_2_facebook_likes                                                    1000
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 1146, dtype: object
color                                                                    Color
director_name                                                     Gus Van Sant
num_critic_for_reviews                                                     137
duration                                                                   136
director_facebook_likes                                                    835
actor_3_facebook_likes                                                     225
actor_2_name                                                         Rob Brown
actor_1_facebook_likes                                                     670
gross                                                              5.17686e+07
genres                                                                   Drama
actor_1_name                                                 F. Murray Abraham
movie_title                                                 Finding Forrester 
num_voted_users                                                          73006
cast_total_facebook_likes                                                 1801
actor_3_name                                                     Michael Nouri
facenumber_in_poster                                                         1
plot_keywords                        basketball|mentor|new york|school|writing
movie_imdb_link              http://www.imdb.com/title/tt0181536/?ref_=fn_t...
num_user_for_reviews                                                       297
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.3e+07
title_year                                                                2000
actor_2_facebook_likes                                                     370
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1147, dtype: object
color                                                                    Color
director_name                                                     Betty Thomas
num_critic_for_reviews                                                     116
duration                                                                   103
director_facebook_likes                                                     84
actor_3_facebook_likes                                                     664
actor_2_name                                                   Viggo Mortensen
actor_1_facebook_likes                                                   12000
gross                                                              3.70355e+07
genres                                                            Comedy|Drama
actor_1_name                                                     Steve Buscemi
movie_title                                                           28 Days 
num_voted_users                                                          34597
cast_total_facebook_likes                                                23864
actor_3_name                                                 Elizabeth Perkins
facenumber_in_poster                                                         1
plot_keywords                12 step program|box office hit|car accident|vo...
movie_imdb_link              http://www.imdb.com/title/tt0191754/?ref_=fn_t...
num_user_for_reviews                                                       194
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.3e+07
title_year                                                                2000
actor_2_facebook_likes                                                   10000
imdb_score                                                                   6
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 1148, dtype: object
color                                                                    Color
director_name                                                  Louis Leterrier
num_critic_for_reviews                                                     177
duration                                                                   103
director_facebook_likes                                                    255
actor_3_facebook_likes                                                    5000
actor_2_name                                                            Jet Li
actor_1_facebook_likes                                                   11000
gross                                                              2.45209e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                    Morgan Freeman
movie_title                                                         Unleashed 
num_voted_users                                                          85198
cast_total_facebook_likes                                                22383
actor_3_name                                                       Bob Hoskins
facenumber_in_poster                                                         1
plot_keywords                                  collar|dog|fight|fighting|piano
movie_imdb_link              http://www.imdb.com/title/tt0342258/?ref_=fn_t...
num_user_for_reviews                                                       303
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                    5000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1149, dtype: object
color                                                                    Color
director_name                                                     Roger Kumble
num_critic_for_reviews                                                      99
duration                                                                    90
director_facebook_likes                                                     16
actor_3_facebook_likes                                                      16
actor_2_name                                                     Lillian Adams
actor_1_facebook_likes                                                      44
gross                                                              2.44303e+07
genres                                                          Comedy|Romance
actor_1_name                                                    Judith Chapman
movie_title                                                The Sweetest Thing 
num_voted_users                                                          46158
cast_total_facebook_likes                                                  132
actor_3_name                                                      Chelsea Bond
facenumber_in_poster                                                         3
plot_keywords                female removes her clothes|roommate|voyeur|voy...
movie_imdb_link              http://www.imdb.com/title/tt0253867/?ref_=fn_t...
num_user_for_reviews                                                       403
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.3e+07
title_year                                                                2002
actor_2_facebook_likes                                                      28
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1150, dtype: object
color                                                                    Color
director_name                                                   Sydney Pollack
num_critic_for_reviews                                                      56
duration                                                                   154
director_facebook_likes                                                    521
actor_3_facebook_likes                                                     957
actor_2_name                                                      Holly Hunter
actor_1_facebook_likes                                                   10000
gross                                                              1.58348e+08
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                        Tom Cruise
movie_title                                                          The Firm 
num_voted_users                                                          88844
cast_total_facebook_likes                                                14244
actor_3_name                                                   Wilford Brimley
facenumber_in_poster                                                         0
plot_keywords                                      bar|fbi|law|law firm|lawyer
movie_imdb_link              http://www.imdb.com/title/tt0106918/?ref_=fn_t...
num_user_for_reviews                                                       142
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.2e+07
title_year                                                                1993
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1151, dtype: object
color                                                                    Color
director_name                                                      Burr Steers
num_critic_for_reviews                                                     117
duration                                                                    99
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     135
actor_2_name                                                     Charlie Tahan
actor_1_facebook_likes                                                     405
gross                                                               3.1137e+07
genres                                                   Drama|Fantasy|Romance
actor_1_name                                                     Augustus Prew
movie_title                                                 Charlie St. Cloud 
num_voted_users                                                          47364
cast_total_facebook_likes                                                 1066
actor_3_name                                                      Valerie Tian
facenumber_in_poster                                                         1
plot_keywords                brother brother relationship|death of brother|...
movie_imdb_link              http://www.imdb.com/title/tt1438254/?ref_=fn_t...
num_user_for_reviews                                                        75
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.4e+07
title_year                                                                2010
actor_2_facebook_likes                                                     268
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1152, dtype: object
color                                                                    Color
director_name                                                       Simon West
num_critic_for_reviews                                                     252
duration                                                                    93
director_facebook_likes                                                    165
actor_3_facebook_likes                                                     350
actor_2_name                                                      Tony Goldwyn
actor_1_facebook_likes                                                   26000
gross                                                              2.91136e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                     Jason Statham
movie_title                                                      The Mechanic 
num_voted_users                                                         117999
cast_total_facebook_likes                                                27834
actor_3_name                                                        Mini Anden
facenumber_in_poster                                                         0
plot_keywords                apprentice|disobeying orders|gas station|hitma...
movie_imdb_link              http://www.imdb.com/title/tt0472399/?ref_=fn_t...
num_user_for_reviews                                                       181
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2011
actor_2_facebook_likes                                                     956
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 1153, dtype: object
color                                                                    Color
director_name                                                        Phil Lord
num_critic_for_reviews                                                     375
duration                                                                   109
director_facebook_likes                                                     97
actor_3_facebook_likes                                                     839
actor_2_name                                                         Dax Flame
actor_1_facebook_likes                                                   17000
gross                                                              1.38448e+08
genres                                                     Action|Comedy|Crime
actor_1_name                                                    Channing Tatum
movie_title                                                    21 Jump Street 
num_voted_users                                                         408302
cast_total_facebook_likes                                                19968
actor_3_name                                                        Rob Riggle
facenumber_in_poster                                                         2
plot_keywords                    narcotics|parody|police|remake|undercover cop
movie_imdb_link              http://www.imdb.com/title/tt1232829/?ref_=fn_t...
num_user_for_reviews                                                       345
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.2e+07
title_year                                                                2012
actor_2_facebook_likes                                                     971
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     39000
Name: 1154, dtype: object
color                                                                    Color
director_name                                                    Roger Michell
num_critic_for_reviews                                                     150
duration                                                                   124
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     427
actor_2_name                                                     Clarke Peters
actor_1_facebook_likes                                                    8000
gross                                                              1.16006e+08
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Julia Roberts
movie_title                                                      Notting Hill 
num_voted_users                                                         203269
cast_total_facebook_likes                                                 9255
actor_3_name                                                       Dylan Moran
facenumber_in_poster                                                         1
plot_keywords                               actress|bookstore|friend|kiss|love
movie_imdb_link              http://www.imdb.com/title/tt0125439/?ref_=fn_t...
num_user_for_reviews                                                       602
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 4.2e+07
title_year                                                                1999
actor_2_facebook_likes                                                     437
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 1155, dtype: object
color                                                                    Color
director_name                                                       Peter Lord
num_critic_for_reviews                                                     187
duration                                                                    84
director_facebook_likes                                                     91
actor_3_facebook_likes                                                     206
actor_2_name                                                Miranda Richardson
actor_1_facebook_likes                                                     579
gross                                                              1.06794e+08
genres                                 Adventure|Animation|Comedy|Drama|Family
actor_1_name                                                   Imelda Staunton
movie_title                                                       Chicken Run 
num_voted_users                                                         140499
cast_total_facebook_likes                                                 1817
actor_3_name                                                     Julia Sawalha
facenumber_in_poster                                                         0
plot_keywords                              chicken|escape|farm|freedom|rooster
movie_imdb_link              http://www.imdb.com/title/tt0120630/?ref_=fn_t...
num_user_for_reviews                                                       358
language                                                               English
country                                                                     UK
content_rating                                                               G
budget                                                                 4.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     530
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1156, dtype: object
color                                                                    Color
director_name                                                     John Hamburg
num_critic_for_reviews                                                     108
duration                                                                    90
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     650
actor_2_name                                                          Masi Oka
actor_1_facebook_likes                                                   22000
gross                                                              8.78566e+07
genres                                                          Comedy|Romance
actor_1_name                                            Philip Seymour Hoffman
movie_title                                                  Along Came Polly 
num_voted_users                                                         106909
cast_total_facebook_likes                                                24534
actor_3_name                                                     Debra Messing
facenumber_in_poster                                                         1
plot_keywords                bride|friend|honeymoon|insurance|insurance com...
movie_imdb_link              http://www.imdb.com/title/tt0343135/?ref_=fn_t...
num_user_for_reviews                                                       268
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.2e+07
title_year                                                                2004
actor_2_facebook_likes                                                     923
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1157, dtype: object
color                                                                    Color
director_name                                                  Reginald Hudlin
num_critic_for_reviews                                                      21
duration                                                                   117
director_facebook_likes                                                     71
actor_3_facebook_likes                                                     547
actor_2_name                                                       Eartha Kitt
actor_1_facebook_likes                                                     723
gross                                                                 7.01e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                  John Witherspoon
movie_title                                                         Boomerang 
num_voted_users                                                          20183
cast_total_facebook_likes                                                 3841
actor_3_name                                                   Geoffrey Holder
facenumber_in_poster                                                         1
plot_keywords                advertising|battle of the sexes|dating|one wor...
movie_imdb_link              http://www.imdb.com/title/tt0103859/?ref_=fn_t...
num_user_for_reviews                                                        41
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                1992
actor_2_facebook_likes                                                     558
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1158, dtype: object
color                                                                    Color
director_name                                                        Paul Feig
num_critic_for_reviews                                                     270
duration                                                                   123
director_facebook_likes                                                    176
actor_3_facebook_likes                                                     749
actor_2_name                                                   William Xifaras
actor_1_facebook_likes                                                     975
gross                                                              1.59578e+08
genres                                                     Action|Comedy|Crime
actor_1_name                                                  Michael Rapaport
movie_title                                                          The Heat 
num_voted_users                                                         133177
cast_total_facebook_likes                                                 4825
actor_3_name                                                     Demián Bichir
facenumber_in_poster                                                         7
plot_keywords                drug lord|fbi|fbi agent|hospital|shot in the c...
movie_imdb_link              http://www.imdb.com/title/tt2404463/?ref_=fn_t...
num_user_for_reviews                                                       380
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.3e+07
title_year                                                                2013
actor_2_facebook_likes                                                     815
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     24000
Name: 1159, dtype: object
color                                                                    Color
director_name                                             Joseph L. Mankiewicz
num_critic_for_reviews                                                      72
duration                                                                   251
director_facebook_likes                                                    311
actor_3_facebook_likes                                                     595
actor_2_name                                                    Richard Burton
actor_1_facebook_likes                                                     940
gross                                                                5.775e+07
genres                                         Biography|Drama|History|Romance
actor_1_name                                                     Martin Landau
movie_title                                                         Cleopatra 
num_voted_users                                                          21554
cast_total_facebook_likes                                                 2957
actor_3_name                                                    Roddy McDowall
facenumber_in_poster                                                         2
plot_keywords                          cleopatra|egypt|epic|queen|roman empire
movie_imdb_link              http://www.imdb.com/title/tt0056937/?ref_=fn_t...
num_user_for_reviews                                                       192
language                                                               English
country                                                                     UK
content_rating                                                        Approved
budget                                                              3.1115e+07
title_year                                                                1963
actor_2_facebook_likes                                                     726
imdb_score                                                                   7
aspect_ratio                                                               2.2
movie_facebook_likes                                                         0
Name: 1160, dtype: object
color                                                                    Color
director_name                                                     Frank Coraci
num_critic_for_reviews                                                     154
duration                                                                   105
director_facebook_likes                                                    153
actor_3_facebook_likes                                                     491
actor_2_name                                                        Reggie Lee
actor_1_facebook_likes                                                    4000
gross                                                              4.52903e+07
genres                                                     Action|Comedy|Sport
actor_1_name                                                       Salma Hayek
movie_title                                               Here Comes the Boom 
num_voted_users                                                          74169
cast_total_facebook_likes                                                 6727
actor_3_name                                                           Charice
facenumber_in_poster                                                         2
plot_keywords                claim in title|high school|mixed martial arts|...
movie_imdb_link              http://www.imdb.com/title/tt1648179/?ref_=fn_t...
num_user_for_reviews                                                       112
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 4.2e+07
title_year                                                                2012
actor_2_facebook_likes                                                     828
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     17000
Name: 1161, dtype: object
color                                                                    Color
director_name                                                    Carl Franklin
num_critic_for_reviews                                                     114
duration                                                                   115
director_facebook_likes                                                     73
actor_3_facebook_likes                                                     505
actor_2_name                                                        Adam Scott
actor_1_facebook_likes                                                   11000
gross                                                              4.15432e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                    Morgan Freeman
movie_title                                                       High Crimes 
num_voted_users                                                          30077
cast_total_facebook_likes                                                15571
actor_3_name                                                     Bruce Davison
facenumber_in_poster                                                         1
plot_keywords                     defense lawyer|lawyer|marine|murder|villager
movie_imdb_link              http://www.imdb.com/title/tt0257756/?ref_=fn_t...
num_user_for_reviews                                                       175
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.2e+07
title_year                                                                2002
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       893
Name: 1162, dtype: object
color                                                                    Color
director_name                                                 Barbra Streisand
num_critic_for_reviews                                                      27
duration                                                                   122
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     292
actor_2_name                                                  Austin Pendleton
actor_1_facebook_likes                                                   12000
gross                                                              4.12524e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Jeff Bridges
movie_title                                          The Mirror Has Two Faces 
num_voted_users                                                          11453
cast_total_facebook_likes                                                13716
actor_3_name                                                       Mimi Rogers
facenumber_in_poster                                                         0
plot_keywords                columbia university|lecture|marriage|professor...
movie_imdb_link              http://www.imdb.com/title/tt0117057/?ref_=fn_t...
num_user_for_reviews                                                        71
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.2e+07
title_year                                                                1996
actor_2_facebook_likes                                                     592
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1163, dtype: object
color                                                                    Color
director_name                                                  Mark Pellington
num_critic_for_reviews                                                     166
duration                                                                   119
director_facebook_likes                                                     89
actor_3_facebook_likes                                                     395
actor_2_name                                                       Will Patton
actor_1_facebook_likes                                                     650
gross                                                              3.52287e+07
genres                                           Drama|Horror|Mystery|Thriller
actor_1_name                                                     Debra Messing
movie_title                                            The Mothman Prophecies 
num_voted_users                                                          63677
cast_total_facebook_likes                                                 1651
actor_3_name                                                   David Eigenberg
facenumber_in_poster                                                         0
plot_keywords                car accident|death of wife|mothman|point pleas...
movie_imdb_link              http://www.imdb.com/title/tt0265349/?ref_=fn_t...
num_user_for_reviews                                                       460
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 3.2e+07
title_year                                                                2002
actor_2_facebook_likes                                                     537
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1164, dtype: object
color                                                                    Color
director_name                                                    Larry Charles
num_critic_for_reviews                                                     288
duration                                                                    81
director_facebook_likes                                                    119
actor_3_facebook_likes                                                     412
actor_2_name                                                        Elton John
actor_1_facebook_likes                                                     468
gross                                                              5.99928e+07
genres                                                                  Comedy
actor_1_name                                                              Bono
movie_title                                                             Brüno 
num_voted_users                                                         119622
cast_total_facebook_likes                                                 2134
actor_3_name                                                             Slash
facenumber_in_poster                                                         1
plot_keywords                austrian|fame|fashion|gay lead character|mocku...
movie_imdb_link              http://www.imdb.com/title/tt0889583/?ref_=fn_t...
num_user_for_reviews                                                       396
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.2e+07
title_year                                                                2009
actor_2_facebook_likes                                                     442
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1165, dtype: object
color                                                                    Color
director_name                                                        John Glen
num_critic_for_reviews                                                     117
duration                                                                   133
director_facebook_likes                                                     46
actor_3_facebook_likes                                                     275
actor_2_name                                                       Talisa Soto
actor_1_facebook_likes                                                     683
gross                                                               3.4667e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                       Robert Davi
movie_title                                                   Licence to Kill 
num_voted_users                                                          74009
cast_total_facebook_likes                                                 2371
actor_3_name                                                     Anthony Zerbe
facenumber_in_poster                                                         0
plot_keywords                drug cartel|drug lord|james bond 007|personal ...
movie_imdb_link              http://www.imdb.com/title/tt0097742/?ref_=fn_t...
num_user_for_reviews                                                       317
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 3.2e+07
title_year                                                                1989
actor_2_facebook_likes                                                     349
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1166, dtype: object
color                                                                    Color
director_name                                              Catherine Hardwicke
num_critic_for_reviews                                                     291
duration                                                                   100
director_facebook_likes                                                    308
actor_3_facebook_likes                                                     913
actor_2_name                                                       Billy Burke
actor_1_facebook_likes                                                   10000
gross                                                              3.76526e+07
genres                                         Fantasy|Horror|Mystery|Thriller
actor_1_name                                                       Gary Oldman
movie_title                                                   Red Riding Hood 
num_voted_users                                                          91151
cast_total_facebook_likes                                                15369
actor_3_name                                                   Virginia Madsen
facenumber_in_poster                                                         2
plot_keywords                         death|forest|love|werewolf|werewolf bite
movie_imdb_link              http://www.imdb.com/title/tt1486185/?ref_=fn_t...
num_user_for_reviews                                                       283
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.2e+07
title_year                                                                2011
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     20000
Name: 1167, dtype: object
color                                                                    Color
director_name                                                    John Herzfeld
num_critic_for_reviews                                                     151
duration                                                                   120
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     808
actor_2_name                                                   Charlize Theron
actor_1_facebook_likes                                                   22000
gross                                                              2.43754e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                    Robert De Niro
movie_title                                                        15 Minutes 
num_voted_users                                                          42547
cast_total_facebook_likes                                                33585
actor_3_name                                                    Kelsey Grammer
facenumber_in_poster                                                         1
plot_keywords                           criminal|detective|fire|homicide|media
movie_imdb_link              http://www.imdb.com/title/tt0179626/?ref_=fn_t...
num_user_for_reviews                                                       265
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.2e+07
title_year                                                                2001
actor_2_facebook_likes                                                    9000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       748
Name: 1168, dtype: object
color                                                                    Color
director_name                                                   Annabel Jankel
num_critic_for_reviews                                                      36
duration                                                                   104
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     687
actor_2_name                                                    Fisher Stevens
actor_1_facebook_likes                                                    5000
gross                                                              2.09155e+07
genres                                  Adventure|Comedy|Family|Fantasy|Sci-Fi
actor_1_name                                                       Bob Hoskins
movie_title                                                 Super Mario Bros. 
num_voted_users                                                          38203
cast_total_facebook_likes                                                 7723
actor_3_name                                                        Fiona Shaw
facenumber_in_poster                                                         0
plot_keywords                  based on video game|dinosaur|king|mario|plumber
movie_imdb_link              http://www.imdb.com/title/tt0108255/?ref_=fn_t...
num_user_for_reviews                                                       290
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 4.2e+07
title_year                                                                1993
actor_2_facebook_likes                                                     922
imdb_score                                                                   4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1169, dtype: object
color                                                                    Color
director_name                                                    Andrew Niccol
num_critic_for_reviews                                                     168
duration                                                                   122
director_facebook_likes                                                    487
actor_3_facebook_likes                                                      16
actor_2_name                                                  Jeremy Crutchley
actor_1_facebook_likes                                                   12000
gross                                                              2.41279e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                                       Lord of War 
num_voted_users                                                         248123
cast_total_facebook_likes                                                12076
actor_3_name                                                       Jared Burke
facenumber_in_poster                                                         2
plot_keywords                   1980s|arms dealer|immorality|ukrainian|warlord
movie_imdb_link              http://www.imdb.com/title/tt0399295/?ref_=fn_t...
num_user_for_reviews                                                       437
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2005
actor_2_facebook_likes                                                      43
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 1170, dtype: object
color                                                          Black and White
director_name                                                      Yimou Zhang
num_critic_for_reviews                                                     283
duration                                                                    80
director_facebook_likes                                                    611
actor_3_facebook_likes                                                     576
actor_2_name                                               Tony Chiu Wai Leung
actor_1_facebook_likes                                                    5000
gross                                                                    84961
genres                                                Action|Adventure|History
actor_1_name                                                            Jet Li
movie_title                                                              Hero 
num_voted_users                                                         149414
cast_total_facebook_likes                                                 6229
actor_3_name                                                     Maggie Cheung
facenumber_in_poster                                                         4
plot_keywords                                   china|flying|king|palace|sword
movie_imdb_link              http://www.imdb.com/title/tt0299977/?ref_=fn_t...
num_user_for_reviews                                                       841
language                                                              Mandarin
country                                                                  China
content_rating                                                           PG-13
budget                                                                 3.1e+07
title_year                                                                2002
actor_2_facebook_likes                                                     643
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1171, dtype: object
color                                                                    Color
director_name                                              Julie Anne Robinson
num_critic_for_reviews                                                     127
duration                                                                    91
director_facebook_likes                                                     30
actor_3_facebook_likes                                                     497
actor_2_name                                                   Debbie Reynolds
actor_1_facebook_likes                                                     922
gross                                                              2.64048e+07
genres                                    Action|Comedy|Crime|Romance|Thriller
actor_1_name                                                    Fisher Stevens
movie_title                                                 One for the Money 
num_voted_users                                                          34203
cast_total_facebook_likes                                                 3301
actor_3_name                                                  Patrick Fischler
facenumber_in_poster                                                         1
plot_keywords                bail bond|bounty hunter|jeans|shot in the butt...
movie_imdb_link              http://www.imdb.com/title/tt1598828/?ref_=fn_t...
num_user_for_reviews                                                       169
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2012
actor_2_facebook_likes                                                     786
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     19000
Name: 1172, dtype: object
color                                                                    Color
director_name                                                    Evan Goldberg
num_critic_for_reviews                                                     293
duration                                                                   112
director_facebook_likes                                                    133
actor_3_facebook_likes                                                     365
actor_2_name                                                      Randall Park
actor_1_facebook_likes                                                   11000
gross                                                              6.10518e+06
genres                                                                  Comedy
actor_1_name                                                      James Franco
movie_title                                                     The Interview 
num_voted_users                                                         247020
cast_total_facebook_likes                                                12239
actor_3_name                                                       Anders Holm
facenumber_in_poster                                                         4
plot_keywords                assassination attempt|communist dictatorship|d...
movie_imdb_link              http://www.imdb.com/title/tt2788710/?ref_=fn_t...
num_user_for_reviews                                                       835
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.4e+07
title_year                                                                2014
actor_2_facebook_likes                                                     392
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     50000
Name: 1173, dtype: object
color                                                                    Color
director_name                                                       Sngmoo Lee
num_critic_for_reviews                                                      95
duration                                                                   100
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     433
actor_2_name                                                     Dong-gun Jang
actor_1_facebook_likes                                                     624
gross                                                              5.66425e+06
genres                                                  Action|Fantasy|Western
actor_1_name                                                          Tony Cox
movie_title                                                 The Warrior's Way 
num_voted_users                                                          22309
cast_total_facebook_likes                                                 2056
actor_3_name                                                        Jed Brophy
facenumber_in_poster                                                         1
plot_keywords                bullet time|explosion|knife throwing|throwing ...
movie_imdb_link              http://www.imdb.com/title/tt1032751/?ref_=fn_t...
num_user_for_reviews                                                       102
language                                                               English
country                                                            New Zealand
content_rating                                                               R
budget                                                                 4.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                     489
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1174, dtype: object
color                                                          Black and White
director_name                                                              NaN
num_critic_for_reviews                                                       4
duration                                                                    30
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     253
actor_2_name                                                     Gavin MacLeod
actor_1_facebook_likes                                                     870
gross                                                                      NaN
genres                                                              Comedy|War
actor_1_name                                                        Tim Conway
movie_title                                         McHale's Navy             
num_voted_users                                                           1558
cast_total_facebook_likes                                                 1610
actor_3_name                                                      Bob Hastings
facenumber_in_poster                                                         1
plot_keywords                american soldier|naval uniform|navy|patrol boa...
movie_imdb_link              http://www.imdb.com/title/tt0055689/?ref_=fn_t...
num_user_for_reviews                                                        18
language                                                               English
country                                                                    USA
content_rating                                                            TV-G
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     284
imdb_score                                                                 7.5
aspect_ratio                                                                 4
movie_facebook_likes                                                       455
Name: 1175, dtype: object
color                                                                    Color
director_name                                               Jean-Pierre Jeunet
num_critic_for_reviews                                                     213
duration                                                                   105
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      52
actor_2_name                                                         Dany Boon
actor_1_facebook_likes                                                    1000
gross                                                              1.26092e+06
genres                                                     Action|Comedy|Crime
actor_1_name                                                           Omar Sy
movie_title                                                           Micmacs 
num_voted_users                                                          24657
cast_total_facebook_likes                                                 1342
actor_3_name                                                  André Dussollier
facenumber_in_poster                                                         4
plot_keywords                bullet|contortionist|gag humor|human cannonbal...
movie_imdb_link              http://www.imdb.com/title/tt1149361/?ref_=fn_t...
num_user_for_reviews                                                        71
language                                                                French
country                                                                 France
content_rating                                                               R
budget                                                                 2.7e+07
title_year                                                                2009
actor_2_facebook_likes                                                     172
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1176, dtype: object
color                                                                    Color
director_name                                                    Curtis Hanson
num_critic_for_reviews                                                     119
duration                                                                   110
director_facebook_likes                                                    161
actor_3_facebook_likes                                                     196
actor_2_name                                                Omar Benson Miller
actor_1_facebook_likes                                                    1000
gross                                                              1.16724e+08
genres                                                             Drama|Music
actor_1_name                                                      Mekhi Phifer
movie_title                                                            8 Mile 
num_voted_users                                                         187181
cast_total_facebook_likes                                                 1954
actor_3_name                                                        Evan Jones
facenumber_in_poster                                                         0
plot_keywords                competition|contest|friend|self expression|whi...
movie_imdb_link              http://www.imdb.com/title/tt0298203/?ref_=fn_t...
num_user_for_reviews                                                       564
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.1e+07
title_year                                                                2002
actor_2_facebook_likes                                                     418
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1177, dtype: object
color                                                                    Color
director_name                                                   Jamel Debbouze
num_critic_for_reviews                                                       9
duration                                                                   101
director_facebook_likes                                                    326
actor_3_facebook_likes                                                       6
actor_2_name                                                     Youssef Hajdi
actor_1_facebook_likes                                                     326
gross                                                                      NaN
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                    Jamel Debbouze
movie_title                                      Animal Kingdom: Let's go Ape 
num_voted_users                                                            590
cast_total_facebook_likes                                                  488
actor_3_name                                                  Mélissa Theuriau
facenumber_in_poster                                                         0
plot_keywords                ape|computer animation|evolution|first person ...
movie_imdb_link              http://www.imdb.com/title/tt1220911/?ref_=fn_t...
num_user_for_reviews                                                         5
language                                                                French
country                                                                 France
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2015
actor_2_facebook_likes                                                     152
imdb_score                                                                 4.9
aspect_ratio                                                               NaN
movie_facebook_likes                                                       161
Name: 1178, dtype: object
color                                                                    Color
director_name                                                  Brian Helgeland
num_critic_for_reviews                                                     167
duration                                                                   144
director_facebook_likes                                                    241
actor_3_facebook_likes                                                     996
actor_2_name                                                      Rufus Sewell
actor_1_facebook_likes                                                   13000
gross                                                               5.6084e+07
genres                                                Action|Adventure|Romance
actor_1_name                                                      Heath Ledger
movie_title                                                   A Knight's Tale 
num_voted_users                                                         137003
cast_total_facebook_likes                                                18761
actor_3_name                                                     Bérénice Bejo
facenumber_in_poster                                                         1
plot_keywords                chaucer|jousting|knight|medieval times|tournament
movie_imdb_link              http://www.imdb.com/title/tt0183790/?ref_=fn_t...
num_user_for_reviews                                                       658
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+07
title_year                                                                2001
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1179, dtype: object
color                                                                    Color
director_name                                                      Gordon Chan
num_critic_for_reviews                                                      98
duration                                                                   108
director_facebook_likes                                                      4
actor_3_facebook_likes                                                      96
actor_2_name                                                         Lee Evans
actor_1_facebook_likes                                                     687
gross                                                               2.2109e+07
genres                                                   Action|Comedy|Fantasy
actor_1_name                                                      Julian Sands
movie_title                                                     The Medallion 
num_voted_users                                                          29861
cast_total_facebook_likes                                                 1134
actor_3_name                                            Anthony Chau-Sang Wong
facenumber_in_poster                                                         1
plot_keywords                      hong kong|interpol|medallion|ship|tough cop
movie_imdb_link              http://www.imdb.com/title/tt0288045/?ref_=fn_t...
num_user_for_reviews                                                       132
language                                                               English
country                                                              Hong Kong
content_rating                                                           PG-13
budget                                                                 4.1e+07
title_year                                                                2003
actor_2_facebook_likes                                                     312
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       505
Name: 1180, dtype: object
color                                                                    Color
director_name                                               M. Night Shyamalan
num_critic_for_reviews                                                     234
duration                                                                   107
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     766
actor_2_name                                                 Haley Joel Osment
actor_1_facebook_likes                                                   13000
gross                                                              2.93502e+08
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                      Bruce Willis
movie_title                                                   The Sixth Sense 
num_voted_users                                                         704766
cast_total_facebook_likes                                                17540
actor_3_name                                                   Olivia Williams
facenumber_in_poster                                                         0
plot_keywords                able to see the dead|ghost|plot twist|psychic|...
movie_imdb_link              http://www.imdb.com/title/tt0167404/?ref_=fn_t...
num_user_for_reviews                                                      2073
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                1999
actor_2_facebook_likes                                                    3000
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 1181, dtype: object
color                                                                    Color
director_name                                                       Asger Leth
num_critic_for_reviews                                                     258
duration                                                                   102
director_facebook_likes                                                     20
actor_3_facebook_likes                                                      54
actor_2_name                                                    Mandy Gonzalez
actor_1_facebook_likes                                                     107
gross                                                              1.86009e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                   Robert Clohessy
movie_title                                                    Man on a Ledge 
num_voted_users                                                         125198
cast_total_facebook_likes                                                  362
actor_3_name                                                  J. Smith-Cameron
facenumber_in_poster                                                         6
plot_keywords                           detective|diamond|hotel|police|rooftop
movie_imdb_link              http://www.imdb.com/title/tt1568338/?ref_=fn_t...
num_user_for_reviews                                                       153
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.2e+07
title_year                                                                2012
actor_2_facebook_likes                                                      81
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 1182, dtype: object
color                                                                    Color
director_name                                                    David Frankel
num_critic_for_reviews                                                     108
duration                                                                   100
director_facebook_likes                                                     64
actor_3_facebook_likes                                                     296
actor_2_name                                                      Kevin Pollak
actor_1_facebook_likes                                                     734
gross                                                              7.20414e+06
genres                                                                  Comedy
actor_1_name                                                       Joel McHale
movie_title                                                      The Big Year 
num_voted_users                                                          34809
cast_total_facebook_likes                                                 2085
actor_3_name                                                   JoBeth Williams
facenumber_in_poster                                                         0
plot_keywords                       alaska|birding|competition|migration|storm
movie_imdb_link              http://www.imdb.com/title/tt1053810/?ref_=fn_t...
num_user_for_reviews                                                       125
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 4.1e+07
title_year                                                                2011
actor_2_facebook_likes                                                     574
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 1183, dtype: object
color                                                                    Color
director_name                                                 John G. Avildsen
num_critic_for_reviews                                                      81
duration                                                                   126
director_facebook_likes                                                     80
actor_3_facebook_likes                                                     225
actor_2_name                                                     William Zabka
actor_1_facebook_likes                                                     668
gross                                                                 9.08e+07
genres                                               Action|Drama|Family|Sport
actor_1_name                                                       Martin Kove
movie_title                                                    The Karate Kid 
num_voted_users                                                         126907
cast_total_facebook_likes                                                 2004
actor_3_name                                                   William Bassett
facenumber_in_poster                                                         0
plot_keywords                              apartment|bully|fight|karate|master
movie_imdb_link              http://www.imdb.com/title/tt0087538/?ref_=fn_t...
num_user_for_reviews                                                       235
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+06
title_year                                                                1984
actor_2_facebook_likes                                                     641
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1184, dtype: object
color                                                                    Color
director_name                                                 David O. Russell
num_critic_for_reviews                                                     538
duration                                                                   138
director_facebook_likes                                                    737
actor_3_facebook_likes                                                   14000
actor_2_name                                                    Christian Bale
actor_1_facebook_likes                                                   34000
gross                                                              1.50118e+08
genres                                                             Crime|Drama
actor_1_name                                                 Jennifer Lawrence
movie_title                                                   American Hustle 
num_voted_users                                                         358416
cast_total_facebook_likes                                                83012
actor_3_name                                                    Bradley Cooper
facenumber_in_poster                                                         5
plot_keywords                based on true story|con artist|drunk wife|fbi ...
movie_imdb_link              http://www.imdb.com/title/tt1800241/?ref_=fn_t...
num_user_for_reviews                                                       751
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2013
actor_2_facebook_likes                                                   23000
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     63000
Name: 1185, dtype: object
color                                                                    Color
director_name                                                    Anne Fletcher
num_critic_for_reviews                                                     224
duration                                                                   108
director_facebook_likes                                                     98
actor_3_facebook_likes                                                     723
actor_2_name                                                      Denis O'Hare
actor_1_facebook_likes                                                   16000
gross                                                              1.63947e+08
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Ryan Reynolds
movie_title                                                      The Proposal 
num_voted_users                                                         227824
cast_total_facebook_likes                                                18656
actor_3_name                                                   Craig T. Nelson
facenumber_in_poster                                                         1
plot_keywords                alaska|deportation|father son relationship|mal...
movie_imdb_link              http://www.imdb.com/title/tt1041829/?ref_=fn_t...
num_user_for_reviews                                                       273
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2009
actor_2_facebook_likes                                                     896
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 1186, dtype: object
color                                                                    Color
director_name                                                  Bruce Beresford
num_critic_for_reviews                                                     129
duration                                                                   105
director_facebook_likes                                                     78
actor_3_facebook_likes                                                     298
actor_2_name                                                     Annabeth Gish
actor_1_facebook_likes                                                     984
gross                                                              1.16735e+08
genres                                                  Crime|Mystery|Thriller
actor_1_name                                                   Bruce Greenwood
movie_title                                                   Double Jeopardy 
num_voted_users                                                          56646
cast_total_facebook_likes                                                 2129
actor_3_name                                                    Bruce Campbell
facenumber_in_poster                                                         0
plot_keywords                blood|murder|sex scene|wrongful arrest|wrongfu...
movie_imdb_link              http://www.imdb.com/title/tt0150377/?ref_=fn_t...
num_user_for_reviews                                                       336
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+07
title_year                                                                1999
actor_2_facebook_likes                                                     489
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1187, dtype: object
color                                                                    Color
director_name                                                  Robert Zemeckis
num_critic_for_reviews                                                     125
duration                                                                   108
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     690
actor_2_name                                                  Jeffrey Weissman
actor_1_facebook_likes                                                    1000
gross                                                                1.185e+08
genres                                                 Adventure|Comedy|Sci-Fi
actor_1_name                                                      Lea Thompson
movie_title                                        Back to the Future Part II 
num_voted_users                                                         340085
cast_total_facebook_likes                                                 3660
actor_3_name                                                  Thomas F. Wilson
facenumber_in_poster                                                         0
plot_keywords                alternate timeline|same actor playing two char...
movie_imdb_link              http://www.imdb.com/title/tt0096874/?ref_=fn_t...
num_user_for_reviews                                                       327
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   4e+07
title_year                                                                1989
actor_2_facebook_likes                                                     869
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     12000
Name: 1188, dtype: object
color                                                                    Color
director_name                                                       Luc Besson
num_critic_for_reviews                                                     433
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     903
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   19000
gross                                                              1.26547e+08
genres                                                  Action|Sci-Fi|Thriller
actor_1_name                                                Scarlett Johansson
movie_title                                                              Lucy 
num_voted_users                                                         327367
cast_total_facebook_likes                                                32325
actor_3_name                                                         Amr Waked
facenumber_in_poster                                                         0
plot_keywords                brain capacity|drugs|fictional drug|one woman ...
movie_imdb_link              http://www.imdb.com/title/tt2872732/?ref_=fn_t...
num_user_for_reviews                                                       918
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2014
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     83000
Name: 1189, dtype: object
color                                                                    Color
director_name                                               Sam Taylor-Johnson
num_critic_for_reviews                                                     362
duration                                                                   129
director_facebook_likes                                                    456
actor_3_facebook_likes                                                     716
actor_2_name                                                       Luke Grimes
actor_1_facebook_likes                                                    1000
gross                                                              1.66148e+08
genres                                                           Drama|Romance
actor_1_name                                                     Jennifer Ehle
movie_title                                              Fifty Shades of Grey 
num_voted_users                                                         220020
cast_total_facebook_likes                                                 4585
actor_3_name                                                     Callum Rennie
facenumber_in_poster                                                         0
plot_keywords                female frontal nudity|female nudity|perversion...
movie_imdb_link              http://www.imdb.com/title/tt2322441/?ref_=fn_t...
num_user_for_reviews                                                      1360
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2015
actor_2_facebook_likes                                                     935
imdb_score                                                                 4.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                    101000
Name: 1190, dtype: object
color                                                                    Color
director_name                                                 Robert Rodriguez
num_critic_for_reviews                                                      93
duration                                                                    84
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    2000
actor_2_name                                                       Salma Hayek
actor_1_facebook_likes                                                   13000
gross                                                              1.11761e+08
genres                                   Action|Adventure|Comedy|Family|Sci-Fi
actor_1_name                                                Sylvester Stallone
movie_title                                           Spy Kids 3-D: Game Over 
num_voted_users                                                          40227
cast_total_facebook_likes                                                22935
actor_3_name                                                    Alexa PenaVega
facenumber_in_poster                                                         3
plot_keywords                      mission|spy|surfing|trapped|virtual reality
movie_imdb_link              http://www.imdb.com/title/tt0338459/?ref_=fn_t...
num_user_for_reviews                                                       188
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 3.8e+07
title_year                                                                2003
actor_2_facebook_likes                                                    4000
imdb_score                                                                 4.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       681
Name: 1191, dtype: object
color                                                                    Color
director_name                                                  Joel Schumacher
num_critic_for_reviews                                                      71
duration                                                                   149
director_facebook_likes                                                    541
actor_3_facebook_likes                                                    1000
actor_2_name                                               Matthew McConaughey
actor_1_facebook_likes                                                   18000
gross                                                              1.08706e+08
genres                                                    Crime|Drama|Thriller
actor_1_name                                                      Kevin Spacey
movie_title                                                    A Time to Kill 
num_voted_users                                                          99558
cast_total_facebook_likes                                                31349
actor_3_name                                                      Oliver Platt
facenumber_in_poster                                                         3
plot_keywords                     african american|court|law|mississippi|trial
movie_imdb_link              http://www.imdb.com/title/tt0117913/?ref_=fn_t...
num_user_for_reviews                                                       236
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                1996
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1192, dtype: object
color                                                                    Color
director_name                                                       Shawn Levy
num_critic_for_reviews                                                     104
duration                                                                    94
director_facebook_likes                                                    189
actor_3_facebook_likes                                                     597
actor_2_name                                                     Alyson Stoner
actor_1_facebook_likes                                                    3000
gross                                                              1.38615e+08
genres                                                           Comedy|Family
actor_1_name                                                       Tom Welling
movie_title                                              Cheaper by the Dozen 
num_voted_users                                                          75152
cast_total_facebook_likes                                                 7014
actor_3_name                                                       Bonnie Hunt
facenumber_in_poster                                                        15
plot_keywords                       9 year old|house|illinois|new job|vomiting
movie_imdb_link              http://www.imdb.com/title/tt0349205/?ref_=fn_t...
num_user_for_reviews                                                       288
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   4e+07
title_year                                                                2003
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1193, dtype: object
color                                                                    Color
director_name                                                       Peter Berg
num_critic_for_reviews                                                     319
duration                                                                   121
director_facebook_likes                                                    532
actor_3_facebook_likes                                                     127
actor_2_name                                                       Scott Elrod
actor_1_facebook_likes                                                     480
gross                                                               1.2507e+08
genres                                     Action|Biography|Drama|Thriller|War
actor_1_name                                                     Jerry Ferrara
movie_title                                                     Lone Survivor 
num_voted_users                                                         203963
cast_total_facebook_likes                                                 1261
actor_3_name                                                     Dan Bilzerian
facenumber_in_poster                                                         0
plot_keywords                courage|navy seal|outnumbered|shot multiple ti...
movie_imdb_link              http://www.imdb.com/title/tt1091191/?ref_=fn_t...
num_user_for_reviews                                                       420
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2013
actor_2_facebook_likes                                                     449
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     58000
Name: 1194, dtype: object
color                                                          Black and White
director_name                                                   Penny Marshall
num_critic_for_reviews                                                      41
duration                                                                   128
director_facebook_likes                                                    545
actor_3_facebook_likes                                                     251
actor_2_name                                                        Lori Petty
actor_1_facebook_likes                                                   15000
gross                                                              1.07459e+08
genres                                                      Comedy|Drama|Sport
actor_1_name                                                         Tom Hanks
movie_title                                             A League of Their Own 
num_voted_users                                                          71754
cast_total_facebook_likes                                                16751
actor_3_name                                                   Rosie O'Donnell
facenumber_in_poster                                                         3
plot_keywords                          baseball|friend|oregon|rivalry|softball
movie_imdb_link              http://www.imdb.com/title/tt0104694/?ref_=fn_t...
num_user_for_reviews                                                       166
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   4e+07
title_year                                                                1992
actor_2_facebook_likes                                                     923
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1195, dtype: object
color                                                                    Color
director_name                                                        James Wan
num_critic_for_reviews                                                     300
duration                                                                   134
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     336
actor_2_name                                                  Frances O'Connor
actor_1_facebook_likes                                                    1000
gross                                                               1.0231e+08
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                      Javier Botet
movie_title                                                   The Conjuring 2 
num_voted_users                                                          64989
cast_total_facebook_likes                                                 2676
actor_3_name                                                Robin Atkin Downes
facenumber_in_poster                                                         0
plot_keywords                based on supposedly true story|house|paranorma...
movie_imdb_link              http://www.imdb.com/title/tt3065204/?ref_=fn_t...
num_user_for_reviews                                                       279
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2016
actor_2_facebook_likes                                                     575
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     40000
Name: 1196, dtype: object
color                                                                    Color
director_name                                                    David Fincher
num_critic_for_reviews                                                     556
duration                                                                   120
director_facebook_likes                                                  21000
actor_3_facebook_likes                                                      81
actor_2_name                                                 Dustin Fitzsimons
actor_1_facebook_likes                                                   10000
gross                                                              9.69179e+07
genres                                                         Biography|Drama
actor_1_name                                                   Andrew Garfield
movie_title                                                The Social Network 
num_voted_users                                                         479453
cast_total_facebook_likes                                                10555
actor_3_name                                               Marcella Lentz-Pope
facenumber_in_poster                                                         0
plot_keywords                competitiveness|creator|entrepreneur|facebook|...
movie_imdb_link              http://www.imdb.com/title/tt1285016/?ref_=fn_t...
num_user_for_reviews                                                       696
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2010
actor_2_facebook_likes                                                     349
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     74000
Name: 1197, dtype: object
color                                                                    Color
director_name                                                       Ken Kwapis
num_critic_for_reviews                                                     161
duration                                                                   129
director_facebook_likes                                                     42
actor_3_facebook_likes                                                      49
actor_2_name                                                   Sabrina Revelle
actor_1_facebook_likes                                                      97
gross                                                              9.39523e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Carmen Perez
movie_title                                       He's Just Not That Into You 
num_voted_users                                                         132048
cast_total_facebook_likes                                                  318
actor_3_name                                                    Sachiko Ishida
facenumber_in_poster                                                         7
plot_keywords                advertising|bar|dating|lingerie slip|six word ...
movie_imdb_link              http://www.imdb.com/title/tt1001508/?ref_=fn_t...
num_user_for_reviews                                                       203
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2009
actor_2_facebook_likes                                                      50
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 1198, dtype: object
color                                                                    Color
director_name                                                     David Zucker
num_critic_for_reviews                                                     151
duration                                                                    89
director_facebook_likes                                                    119
actor_3_facebook_likes                                                     807
actor_2_name                                                    Carmen Electra
actor_1_facebook_likes                                                    2000
gross                                                              9.07037e+07
genres                                                                  Comedy
actor_1_name                                                     Beau Mirchoff
movie_title                                                     Scary Movie 4 
num_voted_users                                                          93748
cast_total_facebook_likes                                                 5855
actor_3_name                                                       Regina Hall
facenumber_in_poster                                                         8
plot_keywords                female nudity|male nudity|parody|reference to ...
movie_imdb_link              http://www.imdb.com/title/tt0362120/?ref_=fn_t...
num_user_for_reviews                                                       410
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     869
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 1199, dtype: object
color                                                                    Color
director_name                                                       Wes Craven
num_critic_for_reviews                                                     212
duration                                                                   116
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      71
actor_2_name                                                     Roger Jackson
actor_1_facebook_likes                                                     287
gross                                                              8.91381e+07
genres                                                          Horror|Mystery
actor_1_name                                                  Kelly Rutherford
movie_title                                                          Scream 3 
num_voted_users                                                          98535
cast_total_facebook_likes                                                  600
actor_3_name                                                      Nancy O'Dell
facenumber_in_poster                                                         4
plot_keywords                           death|ghostface|murder|scream|survivor
movie_imdb_link              http://www.imdb.com/title/tt0134084/?ref_=fn_t...
num_user_for_reviews                                                       734
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2000
actor_2_facebook_likes                                                     157
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1200, dtype: object
color                                                                    Color
director_name                                                  Robert Zemeckis
num_critic_for_reviews                                                     111
duration                                                                   118
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     690
actor_2_name                                                  Jeffrey Weissman
actor_1_facebook_likes                                                    1000
gross                                                              8.76666e+07
genres                                         Adventure|Comedy|Sci-Fi|Western
actor_1_name                                                      Lea Thompson
movie_title                                       Back to the Future Part III 
num_voted_users                                                         283480
cast_total_facebook_likes                                                 3986
actor_3_name                                                  Thomas F. Wilson
facenumber_in_poster                                                         0
plot_keywords                           band|dog|letter|time machine|tombstone
movie_imdb_link              http://www.imdb.com/title/tt0099088/?ref_=fn_t...
num_user_for_reviews                                                       263
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   4e+07
title_year                                                                1990
actor_2_facebook_likes                                                     869
imdb_score                                                                 7.4
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 1201, dtype: object
color                                                                    Color
director_name                                                       Etan Cohen
num_critic_for_reviews                                                     173
duration                                                                   107
director_facebook_likes                                                    164
actor_3_facebook_likes                                                     723
actor_2_name                                                       Alison Brie
actor_1_facebook_likes                                                    8000
gross                                                              9.03538e+07
genres                                                            Comedy|Crime
actor_1_name                                                      Will Ferrell
movie_title                                                          Get Hard 
num_voted_users                                                          85629
cast_total_facebook_likes                                                12556
actor_3_name                                                   Craig T. Nelson
facenumber_in_poster                                                         2
plot_keywords                camera focus on female butt|gay bar|millionair...
movie_imdb_link              http://www.imdb.com/title/tt2561572/?ref_=fn_t...
num_user_for_reviews                                                       144
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2015
actor_2_facebook_likes                                                    2000
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 1202, dtype: object
color                                                                    Color
director_name                                             Francis Ford Coppola
num_critic_for_reviews                                                     181
duration                                                                   155
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   10000
actor_2_name                                                   Anthony Hopkins
actor_1_facebook_likes                                                   18000
gross                                                              8.25228e+07
genres                                                  Fantasy|Horror|Romance
actor_1_name                                                      Keanu Reeves
movie_title                                             Bram Stoker's Dracula 
num_voted_users                                                         143835
cast_total_facebook_likes                                                42220
actor_3_name                                                       Gary Oldman
facenumber_in_poster                                                         0
plot_keywords                dracula|horror movie remake|maze|monster sex|v...
movie_imdb_link              http://www.imdb.com/title/tt0103874/?ref_=fn_t...
num_user_for_reviews                                                       654
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                1992
actor_2_facebook_likes                                                   12000
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 1203, dtype: object
color                                                                    Color
director_name                                                      Nora Ephron
num_critic_for_reviews                                                     252
duration                                                                   123
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     923
actor_2_name                                                 Mary Lynn Rajskub
actor_1_facebook_likes                                                   11000
gross                                                              9.41254e+07
genres                                                 Biography|Drama|Romance
actor_1_name                                                      Meryl Streep
movie_title                                                     Julie & Julia 
num_voted_users                                                          79264
cast_total_facebook_likes                                                13321
actor_3_name                                                   Vanessa Ferlito
facenumber_in_poster                                                         2
plot_keywords                                  american|blog|book|cook|cooking
movie_imdb_link              http://www.imdb.com/title/tt1135503/?ref_=fn_t...
num_user_for_reviews                                                       277
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2009
actor_2_facebook_likes                                                     935
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     13000
Name: 1204, dtype: object
color                                                                    Color
director_name                                                  Brian Helgeland
num_critic_for_reviews                                                     216
duration                                                                   128
director_facebook_likes                                                    241
actor_3_facebook_likes                                                     898
actor_2_name                                                Christopher Meloni
actor_1_facebook_likes                                                   11000
gross                                                              9.50013e+07
genres                                                   Biography|Drama|Sport
actor_1_name                                                     Harrison Ford
movie_title                                                                42 
num_voted_users                                                          66511
cast_total_facebook_likes                                                16911
actor_3_name                                                    Nicole Beharie
facenumber_in_poster                                                         0
plot_keywords                baseball|baseball player|brooklyn dodgers|majo...
movie_imdb_link              http://www.imdb.com/title/tt0453562/?ref_=fn_t...
num_user_for_reviews                                                       200
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2013
actor_2_facebook_likes                                                    3000
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     28000
Name: 1205, dtype: object
color                                                                    Color
director_name                                                Anthony Minghella
num_critic_for_reviews                                                     203
duration                                                                   139
director_facebook_likes                                                    333
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Matt Damon
actor_1_facebook_likes                                                   22000
gross                                                              8.12921e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                            Philip Seymour Hoffman
movie_title                                           The Talented Mr. Ripley 
num_voted_users                                                         137891
cast_total_facebook_likes                                                36810
actor_3_name                                                    Jack Davenport
facenumber_in_poster                                                         1
plot_keywords                   1950s|italy|mistaken identity|nudity|sociopath
movie_imdb_link              http://www.imdb.com/title/tt0134119/?ref_=fn_t...
num_user_for_reviews                                                       696
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                1999
actor_2_facebook_likes                                                   13000
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1206, dtype: object
color                                                                    Color
director_name                                                   Bobby Farrelly
num_critic_for_reviews                                                     218
duration                                                                   109
director_facebook_likes                                                    101
actor_3_facebook_likes                                                     839
actor_2_name                                                   Kathleen Turner
actor_1_facebook_likes                                                   13000
gross                                                               8.6208e+07
genres                                                                  Comedy
actor_1_name                                                       Bill Murray
movie_title                                                Dumb and Dumber To 
num_voted_users                                                          97045
cast_total_facebook_likes                                                16179
actor_3_name                                                        Rob Riggle
facenumber_in_poster                                                         1
plot_keywords                adoption|highway travel|road trip|sequel|stupi...
movie_imdb_link              http://www.imdb.com/title/tt2096672/?ref_=fn_t...
num_user_for_reviews                                                       285
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 3.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     899
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     55000
Name: 1207, dtype: object
color                                                                    Color
director_name                                                   Frank Marshall
num_critic_for_reviews                                                     118
duration                                                                   120
director_facebook_likes                                                    155
actor_3_facebook_likes                                                     249
actor_2_name                                                   Bruce Greenwood
actor_1_facebook_likes                                                   23000
gross                                                              8.15935e+07
genres                                                  Adventure|Drama|Family
actor_1_name                                                       Paul Walker
movie_title                                                       Eight Below 
num_voted_users                                                          48806
cast_total_facebook_likes                                                24300
actor_3_name                                                     Wendy Crewson
facenumber_in_poster                                                         1
plot_keywords                  antarctica|dog|siberian husky|sled dog|survival
movie_imdb_link              http://www.imdb.com/title/tt0397313/?ref_=fn_t...
num_user_for_reviews                                                       263
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   4e+07
title_year                                                                2006
actor_2_facebook_likes                                                     984
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 1208, dtype: object
color                                                                    Color
director_name                                                     Nancy Meyers
num_critic_for_reviews                                                     241
duration                                                                   121
director_facebook_likes                                                    278
actor_3_facebook_likes                                                     808
actor_2_name                                                     Anne Hathaway
actor_1_facebook_likes                                                   22000
gross                                                              7.52747e+07
genres                                                            Comedy|Drama
actor_1_name                                                    Robert De Niro
movie_title                                                        The Intern 
num_voted_users                                                         130661
cast_total_facebook_likes                                                36010
actor_3_name                                                        Rene Russo
facenumber_in_poster                                                         2
plot_keywords                reference to ben affleck|reference to brad pit...
movie_imdb_link              http://www.imdb.com/title/tt2361509/?ref_=fn_t...
num_user_for_reviews                                                       304
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 3.5e+07
title_year                                                                2015
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     54000
Name: 1209, dtype: object
color                                                                    Color
director_name                                                        Tim Story
num_critic_for_reviews                                                     119
duration                                                                   102
director_facebook_likes                                                    167
actor_3_facebook_likes                                                     655
actor_2_name                                                  Nadine Velazquez
actor_1_facebook_likes                                                    2000
gross                                                               9.0835e+07
genres                                                           Action|Comedy
actor_1_name                                                       Olivia Munn
movie_title                                                      Ride Along 2 
num_voted_users                                                          28621
cast_total_facebook_likes                                                 5178
actor_3_name                                                      Bruce McGill
facenumber_in_poster                                                         0
plot_keywords                computer hacker|crime boss|detective|drugs|wed...
movie_imdb_link              http://www.imdb.com/title/tt2869728/?ref_=fn_t...
num_user_for_reviews                                                        58
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2016
actor_2_facebook_likes                                                     874
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1210, dtype: object
color                                                                    Color
director_name                                                     Michael Mann
num_critic_for_reviews                                                      89
duration                                                                   117
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     322
actor_2_name                                                      Terry Kinney
actor_1_facebook_likes                                                     855
gross                                                              7.24553e+07
genres                                      Action|Adventure|Drama|Romance|War
actor_1_name                                                         Wes Studi
movie_title                                          The Last of the Mohicans 
num_voted_users                                                         113068
cast_total_facebook_likes                                                 2144
actor_3_name                                                      Eric Schweig
facenumber_in_poster                                                         1
plot_keywords                18th century|based on novel|colonel|french and...
movie_imdb_link              http://www.imdb.com/title/tt0104691/?ref_=fn_t...
num_user_for_reviews                                                       382
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                1992
actor_2_facebook_likes                                                     363
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1211, dtype: object
color                                                                    Color
director_name                                                  Taylor Hackford
num_critic_for_reviews                                                     209
duration                                                                   178
director_facebook_likes                                                    138
actor_3_facebook_likes                                                     748
actor_2_name                                                  Curtis Armstrong
actor_1_facebook_likes                                                     904
gross                                                               7.5306e+07
genres                                                   Biography|Drama|Music
actor_1_name                                                   Bokeem Woodbine
movie_title                                                               Ray 
num_voted_users                                                         110394
cast_total_facebook_likes                                                 5074
actor_3_name                                                      Harry Lennix
facenumber_in_poster                                                         0
plot_keywords                       1950s|1960s|racism|rhythm and blues|singer
movie_imdb_link              http://www.imdb.com/title/tt0350258/?ref_=fn_t...
num_user_for_reviews                                                       433
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2004
actor_2_facebook_likes                                                     876
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1212, dtype: object
color                                                          Black and White
director_name                                                     Frank Miller
num_critic_for_reviews                                                     374
duration                                                                   147
director_facebook_likes                                                    436
actor_3_facebook_likes                                                     175
actor_2_name                                                     Powers Boothe
actor_1_facebook_likes                                                    3000
gross                                                              7.40989e+07
genres                                                          Crime|Thriller
actor_1_name                                                    Rosario Dawson
movie_title                                                          Sin City 
num_voted_users                                                         656640
cast_total_facebook_likes                                                 3924
actor_3_name                                                     Jason Douglas
facenumber_in_poster                                                         1
plot_keywords                anthology|corruption|hearing characters though...
movie_imdb_link              http://www.imdb.com/title/tt0401792/?ref_=fn_t...
num_user_for_reviews                                                      1732
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2005
actor_2_facebook_likes                                                     472
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     13000
Name: 1213, dtype: object
color                                                                    Color
director_name                                                      Pete Travis
num_critic_for_reviews                                                     235
duration                                                                    90
director_facebook_likes                                                     38
actor_3_facebook_likes                                                     882
actor_2_name                                                     Edgar Ramírez
actor_1_facebook_likes                                                    2000
gross                                                              7.22663e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                      Dennis Quaid
movie_title                                                     Vantage Point 
num_voted_users                                                         127528
cast_total_facebook_likes                                                 6775
actor_3_name                                                      William Hurt
facenumber_in_poster                                                         4
plot_keywords                explosion|multiple perspectives|president|secr...
movie_imdb_link              http://www.imdb.com/title/tt0443274/?ref_=fn_t...
num_user_for_reviews                                                       422
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2008
actor_2_facebook_likes                                                     897
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1214, dtype: object
color                                                                    Color
director_name                                                     John Hamburg
num_critic_for_reviews                                                     215
duration                                                                   105
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     257
actor_2_name                                                       Jon Favreau
actor_1_facebook_likes                                                   24000
gross                                                               7.1347e+07
genres                                                          Comedy|Romance
actor_1_name                                                      J.K. Simmons
movie_title                                                   I Love You, Man 
num_voted_users                                                         166194
cast_total_facebook_likes                                                28928
actor_3_name                                                       Jane Curtin
facenumber_in_poster                                                         2
plot_keywords                bromance|friend|gay brother|homosexual subtext...
movie_imdb_link              http://www.imdb.com/title/tt1155056/?ref_=fn_t...
num_user_for_reviews                                                       215
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2009
actor_2_facebook_likes                                                    4000
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1215, dtype: object
color                                                                    Color
director_name                                                   Bobby Farrelly
num_critic_for_reviews                                                     109
duration                                                                   114
director_facebook_likes                                                    101
actor_3_facebook_likes                                                     398
actor_2_name                                                      Bruce McGill
actor_1_facebook_likes                                                     700
gross                                                              7.08363e+07
genres                                            Comedy|Drama|Fantasy|Romance
actor_1_name                                                   Jason Alexander
movie_title                                                       Shallow Hal 
num_voted_users                                                         109445
cast_total_facebook_likes                                                 2842
actor_3_name                                                        Susan Ward
facenumber_in_poster                                                         2
plot_keywords                    dying|friend|inner beauty|love|self help guru
movie_imdb_link              http://www.imdb.com/title/tt0256380/?ref_=fn_t...
num_user_for_reviews                                                       426
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2001
actor_2_facebook_likes                                                     655
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1216, dtype: object
color                                                          Black and White
director_name                                                     Oliver Stone
num_critic_for_reviews                                                     125
duration                                                                   206
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       4
actor_2_name                                                    Jay O. Sanders
actor_1_facebook_likes                                                     433
gross                                                              7.04055e+07
genres                                                  Drama|History|Thriller
actor_1_name                                                    Sally Kirkland
movie_title                                                               JFK 
num_voted_users                                                         113472
cast_total_facebook_likes                                                  698
actor_3_name                                                    Cheryl Penland
facenumber_in_poster                                                         1
plot_keywords                death|gay slur|homosexuality|investigation|pre...
movie_imdb_link              http://www.imdb.com/title/tt0102138/?ref_=fn_t...
num_user_for_reviews                                                       442
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                1991
actor_2_facebook_likes                                                     256
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1217, dtype: object
color                                                                    Color
director_name                                                   John Whitesell
num_critic_for_reviews                                                      65
duration                                                                    99
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     633
actor_2_name                                                          Nia Long
actor_1_facebook_likes                                                   17000
gross                                                              7.01637e+07
genres                                                            Comedy|Crime
actor_1_name                                                Chloë Grace Moretz
movie_title                                               Big Momma's House 2 
num_voted_users                                                          31968
cast_total_facebook_likes                                                19334
actor_3_name                                                   Marisol Nichols
facenumber_in_poster                                                         0
plot_keywords                      cheerleading|fbi|fbi agent|nanny|undercover
movie_imdb_link              http://www.imdb.com/title/tt0421729/?ref_=fn_t...
num_user_for_reviews                                                        82
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2006
actor_2_facebook_likes                                                     826
imdb_score                                                                 4.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       663
Name: 1218, dtype: object
color                                                                    Color
director_name                                                   Gore Verbinski
num_critic_for_reviews                                                     125
duration                                                                   123
director_facebook_likes                                                    563
actor_3_facebook_likes                                                    8000
actor_2_name                                                         Brad Pitt
actor_1_facebook_likes                                                   24000
gross                                                              6.68086e+07
genres                                          Adventure|Comedy|Crime|Romance
actor_1_name                                                      J.K. Simmons
movie_title                                                       The Mexican 
num_voted_users                                                          87351
cast_total_facebook_likes                                                43917
actor_3_name                                                     Julia Roberts
facenumber_in_poster                                                         0
plot_keywords                             curse|hostage|mexico|pistol|vomiting
movie_imdb_link              http://www.imdb.com/title/tt0236493/?ref_=fn_t...
num_user_for_reviews                                                       344
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 3.4e+07
title_year                                                                2001
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 1219, dtype: object
color                                                                    Color
director_name                                              Angelina Jolie Pitt
num_critic_for_reviews                                                     322
duration                                                                   137
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     465
actor_2_name                                                    Jack O'Connell
actor_1_facebook_likes                                                     769
gross                                                              1.15604e+08
genres                                               Biography|Drama|Sport|War
actor_1_name                                                     Finn Wittrock
movie_title                                                          Unbroken 
num_voted_users                                                         103589
cast_total_facebook_likes                                                 2938
actor_3_name                                                      Alex Russell
facenumber_in_poster                                                         0
plot_keywords                emaciation|male nudity|plane crash|prisoner of...
movie_imdb_link              http://www.imdb.com/title/tt1809398/?ref_=fn_t...
num_user_for_reviews                                                       351
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     698
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     35000
Name: 1220, dtype: object
color                                                                    Color
director_name                                                      Burr Steers
num_critic_for_reviews                                                     191
duration                                                                   102
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     651
actor_2_name                                                    Hunter Parrish
actor_1_facebook_likes                                                    2000
gross                                                              6.41498e+07
genres                                     Comedy|Drama|Family|Fantasy|Romance
actor_1_name                                                     Matthew Perry
movie_title                                                          17 Again 
num_voted_users                                                         146899
cast_total_facebook_likes                                                 7009
actor_3_name                                                     Thomas Lennon
facenumber_in_poster                                                         1
plot_keywords                adult as child|father son relationship|high sc...
movie_imdb_link              http://www.imdb.com/title/tt0974661/?ref_=fn_t...
num_user_for_reviews                                                       185
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+07
title_year                                                                2009
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1221, dtype: object
color                                                                    Color
director_name                                                  Nick Cassavetes
num_critic_for_reviews                                                     191
duration                                                                   109
director_facebook_likes                                                    415
actor_3_facebook_likes                                                     119
actor_2_name                                                        Kate Upton
actor_1_facebook_likes                                                     982
gross                                                              8.39061e+07
genres                                                          Comedy|Romance
actor_1_name                                                       Don Johnson
movie_title                                                   The Other Woman 
num_voted_users                                                         104481
cast_total_facebook_likes                                                 2357
actor_3_name                                                    David Thornton
facenumber_in_poster                                                         2
plot_keywords                beach house|blonde bombshell|cheating husband|...
movie_imdb_link              http://www.imdb.com/title/tt2203939/?ref_=fn_t...
num_user_for_reviews                                                       189
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2014
actor_2_facebook_likes                                                     971
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 1222, dtype: object
color                                                                    Color
director_name                                                   David R. Ellis
num_critic_for_reviews                                                     221
duration                                                                    82
director_facebook_likes                                                    160
actor_3_facebook_likes                                                     748
actor_2_name                                                   Andrew Fiscella
actor_1_facebook_likes                                                  164000
gross                                                              6.64664e+07
genres                                                                  Horror
actor_1_name                                                      Krista Allen
movie_title                                             The Final Destination 
num_voted_users                                                          75345
cast_total_facebook_likes                                               303717
actor_3_name                                                 Shantel VanSanten
facenumber_in_poster                                                         0
plot_keywords                attempted suicide|car crash|collapsing scaffol...
movie_imdb_link              http://www.imdb.com/title/tt1144884/?ref_=fn_t...
num_user_for_reviews                                                       290
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2009
actor_2_facebook_likes                                                  137000
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1223, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     459
duration                                                                   142
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     423
actor_2_name                                                      Mark Rylance
actor_1_facebook_likes                                                   15000
gross                                                              7.23061e+07
genres                                                  Drama|History|Thriller
actor_1_name                                                         Tom Hanks
movie_title                                                   Bridge of Spies 
num_voted_users                                                         178118
cast_total_facebook_likes                                                16944
actor_3_name                                                          Amy Ryan
facenumber_in_poster                                                         0
plot_keywords                              cia|cold war|lawyer|negotiation|spy
movie_imdb_link              http://www.imdb.com/title/tt3682448/?ref_=fn_t...
num_user_for_reviews                                                       355
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2015
actor_2_facebook_likes                                                     535
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     55000
Name: 1224, dtype: object
color                                                                    Color
director_name                                                       John Moore
num_critic_for_reviews                                                     131
duration                                                                   106
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     389
actor_2_name                                                       David Keith
actor_1_facebook_likes                                                     578
gross                                                              5.90688e+07
genres                                               Action|Drama|Thriller|War
actor_1_name                                                Joaquim de Almeida
movie_title                                                Behind Enemy Lines 
num_voted_users                                                          86902
cast_total_facebook_likes                                                 2544
actor_3_name                                                        Sam Jaeger
facenumber_in_poster                                                         2
plot_keywords                            battle|massacre|navigator|navy|rescue
movie_imdb_link              http://www.imdb.com/title/tt0159273/?ref_=fn_t...
num_user_for_reviews                                                       411
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2001
actor_2_facebook_likes                                                     563
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1225, dtype: object
color                                                                    Color
director_name                                                 Nicholas Stoller
num_critic_for_reviews                                                     222
duration                                                                   114
director_facebook_likes                                                     89
actor_3_facebook_likes                                                     177
actor_2_name                                                       Mario Lopez
actor_1_facebook_likes                                                     836
gross                                                              6.09233e+07
genres                                                            Comedy|Music
actor_1_name                                                              Pink
movie_title                                              Get Him to the Greek 
num_voted_users                                                         147317
cast_total_facebook_likes                                                 2091
actor_3_name                                                      Lino Facioli
facenumber_in_poster                                                         2
plot_keywords                 concert|drugs|recession|record company|rock star
movie_imdb_link              http://www.imdb.com/title/tt1226229/?ref_=fn_t...
num_user_for_reviews                                                       197
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                     719
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     12000
Name: 1226, dtype: object
color                                                                    Color
director_name                                                    Peter Chelsom
num_critic_for_reviews                                                     118
duration                                                                   106
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     418
actor_2_name                                                       Nick Cannon
actor_1_facebook_likes                                                    1000
gross                                                              5.78879e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                   Lisa Ann Walter
movie_title                                                    Shall We Dance 
num_voted_users                                                          35508
cast_total_facebook_likes                                                 2325
actor_3_name                                                Omar Benson Miller
facenumber_in_poster                                                         2
plot_keywords                dance|dance competition|dance lesson|love|teacher
movie_imdb_link              http://www.imdb.com/title/tt0358135/?ref_=fn_t...
num_user_for_reviews                                                       211
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     593
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1227, dtype: object
color                                                                    Color
director_name                                                        Joe Dante
num_critic_for_reviews                                                     100
duration                                                                   108
director_facebook_likes                                                    287
actor_3_facebook_likes                                                     823
actor_2_name                                                       Denis Leary
actor_1_facebook_likes                                                    4000
gross                                                              5.39556e+07
genres                                   Action|Adventure|Comedy|Family|Sci-Fi
actor_1_name                                                     Kirsten Dunst
movie_title                                                    Small Soldiers 
num_voted_users                                                          77415
cast_total_facebook_likes                                                 8610
actor_3_name                                                    Robert Picardo
facenumber_in_poster                                                         0
plot_keywords                       action figure|battle|computer|military|toy
movie_imdb_link              http://www.imdb.com/title/tt0122718/?ref_=fn_t...
num_user_for_reviews                                                       139
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                1998
actor_2_facebook_likes                                                     835
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1228, dtype: object
color                                                                    Color
director_name                                                  Mark A.Z. Dippé
num_critic_for_reviews                                                      70
duration                                                                    98
director_facebook_likes                                                     20
actor_3_facebook_likes                                                     968
actor_2_name                                                      Frank Welker
actor_1_facebook_likes                                                    2000
gross                                                              5.49674e+07
genres                                                           Action|Horror
actor_1_name                                                 Michael Jai White
movie_title                                                             Spawn 
num_voted_users                                                          52805
cast_total_facebook_likes                                                 7039
actor_3_name                                                       Miko Hughes
facenumber_in_poster                                                         0
plot_keywords                based on comic|based on comic book|dark hero|i...
movie_imdb_link              http://www.imdb.com/title/tt0120177/?ref_=fn_t...
num_user_for_reviews                                                       209
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                1997
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1229, dtype: object
color                                                                    Color
director_name                                                   Kevin Reynolds
num_critic_for_reviews                                                     138
duration                                                                   131
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     720
actor_2_name                                                       James Frain
actor_1_facebook_likes                                                   15000
gross                                                              5.42281e+07
genres                                 Action|Adventure|Drama|Romance|Thriller
actor_1_name                                                      Henry Cavill
movie_title                                         The Count of Monte Cristo 
num_voted_users                                                         104991
cast_total_facebook_likes                                                17152
actor_3_name                                                   Michael Wincott
facenumber_in_poster                                                         1
plot_keywords                               count|escape|island|revenge|sailor
movie_imdb_link              http://www.imdb.com/title/tt0245844/?ref_=fn_t...
num_user_for_reviews                                                       544
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 3.5e+07
title_year                                                                2002
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1230, dtype: object
color                                                                    Color
director_name                                                      Brad Furman
num_critic_for_reviews                                                     274
duration                                                                   118
director_facebook_likes                                                     65
actor_3_facebook_likes                                                     638
actor_2_name                                                 Margarita Levieva
actor_1_facebook_likes                                                   11000
gross                                                              5.79819e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                               Matthew McConaughey
movie_title                                                The Lincoln Lawyer 
num_voted_users                                                         173848
cast_total_facebook_likes                                                13943
actor_3_name                                                    Frances Fisher
facenumber_in_poster                                                         1
plot_keywords                defense attorney|defense lawyer|lawyer|plot tw...
movie_imdb_link              http://www.imdb.com/title/tt1189340/?ref_=fn_t...
num_user_for_reviews                                                       203
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2011
actor_2_facebook_likes                                                     980
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     25000
Name: 1231, dtype: object
color                                                                    Color
director_name                                               Jaume Collet-Serra
num_critic_for_reviews                                                     349
duration                                                                   113
director_facebook_likes                                                    174
actor_3_facebook_likes                                                     767
actor_2_name                                                    Frank Langella
actor_1_facebook_likes                                                   14000
gross                                                              6.10949e+07
genres                                                 Action|Mystery|Thriller
actor_1_name                                                       Liam Neeson
movie_title                                                           Unknown 
num_voted_users                                                         210542
cast_total_facebook_likes                                                17152
actor_3_name                                                       Aidan Quinn
facenumber_in_poster                                                         3
plot_keywords                      agriculture|airport|amnesia|nurse|scientist
movie_imdb_link              http://www.imdb.com/title/tt1401152/?ref_=fn_t...
num_user_for_reviews                                                       332
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   3e+07
title_year                                                                2011
actor_2_facebook_likes                                                     903
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     29000
Name: 1232, dtype: object
color                                                                    Color
director_name                                                Christopher Nolan
num_critic_for_reviews                                                     341
duration                                                                   130
director_facebook_likes                                                  22000
actor_3_facebook_likes                                                   19000
actor_2_name                                                      Hugh Jackman
actor_1_facebook_likes                                                   23000
gross                                                              5.30827e+07
genres                                           Drama|Mystery|Sci-Fi|Thriller
actor_1_name                                                    Christian Bale
movie_title                                                      The Prestige 
num_voted_users                                                         844052
cast_total_facebook_likes                                                63986
actor_3_name                                                Scarlett Johansson
facenumber_in_poster                                                         1
plot_keywords                       illusion|magician|obsession|rivalry|secret
movie_imdb_link              http://www.imdb.com/title/tt0482571/?ref_=fn_t...
num_user_for_reviews                                                      1100
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2006
actor_2_facebook_likes                                                   20000
imdb_score                                                                 8.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     49000
Name: 1233, dtype: object
color                                                                    Color
director_name                                                      Sean Anders
num_critic_for_reviews                                                     196
duration                                                                   116
director_facebook_likes                                                     51
actor_3_facebook_likes                                                     465
actor_2_name                                                   Christoph Waltz
actor_1_facebook_likes                                                   18000
gross                                                              5.44147e+07
genres                                                            Comedy|Crime
actor_1_name                                                      Kevin Spacey
movie_title                                                 Horrible Bosses 2 
num_voted_users                                                         114294
cast_total_facebook_likes                                                30571
actor_3_name                                                    Lindsay Sloane
facenumber_in_poster                                                         7
plot_keywords                kidnapping|reference to franz beckenbauer|scen...
movie_imdb_link              http://www.imdb.com/title/tt2170439/?ref_=fn_t...
num_user_for_reviews                                                       187
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.2e+07
title_year                                                                2014
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 1234, dtype: object
color                                                                    Color
director_name                                                      Cal Brunker
num_critic_for_reviews                                                      83
duration                                                                    89
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      91
actor_2_name                                                       Paul Scheer
actor_1_facebook_likes                                                    3000
gross                                                              5.70118e+07
genres                                Adventure|Animation|Comedy|Family|Sci-Fi
actor_1_name                                                    Brendan Fraser
movie_title                                          Escape from Planet Earth 
num_voted_users                                                          20615
cast_total_facebook_likes                                                 3361
actor_3_name                                              Jonathan Morgan Heit
facenumber_in_poster                                                         2
plot_keywords                alien|cult film|mission control|product placem...
movie_imdb_link              http://www.imdb.com/title/tt0765446/?ref_=fn_t...
num_user_for_reviews                                                        44
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   4e+07
title_year                                                                2013
actor_2_facebook_likes                                                     190
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1235, dtype: object
color                                                                    Color
director_name                                                       Mel Gibson
num_critic_for_reviews                                                     283
duration                                                                   139
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      19
actor_2_name                                                   Dalia Hernández
actor_1_facebook_likes                                                     708
gross                                                              5.08599e+07
genres                                         Action|Adventure|Drama|Thriller
actor_1_name                                                   Rudy Youngblood
movie_title                                                        Apocalypto 
num_voted_users                                                         236000
cast_total_facebook_likes                                                  848
actor_3_name                                                   Jonathan Brewer
facenumber_in_poster                                                         0
plot_keywords                         jaguar|mayan|solar eclipse|tribe|village
movie_imdb_link              http://www.imdb.com/title/tt0472043/?ref_=fn_t...
num_user_for_reviews                                                      1043
language                                                                  Maya
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2006
actor_2_facebook_likes                                                      78
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 1236, dtype: object
color                                                                    Color
director_name                                                        John Glen
num_critic_for_reviews                                                     105
duration                                                                   130
director_facebook_likes                                                     46
actor_3_facebook_likes                                                     162
actor_2_name                                                  Desmond Llewelyn
actor_1_facebook_likes                                                     387
gross                                                              5.11859e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                     Joe Don Baker
movie_title                                              The Living Daylights 
num_voted_users                                                          69457
cast_total_facebook_likes                                                 1233
actor_3_name                                                         Art Malik
facenumber_in_poster                                                         1
plot_keywords                british agent|defection|escape|kgb|soviet general
movie_imdb_link              http://www.imdb.com/title/tt0093428/?ref_=fn_t...
num_user_for_reviews                                                       271
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                   3e+07
title_year                                                                1987
actor_2_facebook_likes                                                     244
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1237, dtype: object
color                                                                    Color
director_name                                                     Nimród Antal
num_critic_for_reviews                                                     351
duration                                                                   107
director_facebook_likes                                                    190
actor_3_facebook_likes                                                     520
actor_2_name                                                       Alice Braga
actor_1_facebook_likes                                                    2000
gross                                                              5.20007e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                      Topher Grace
movie_title                                                         Predators 
num_voted_users                                                         171418
cast_total_facebook_likes                                                 4243
actor_3_name                                                       Derek Mears
facenumber_in_poster                                                         0
plot_keywords                kicked in the face|martial arts|punched in the...
movie_imdb_link              http://www.imdb.com/title/tt1424381/?ref_=fn_t...
num_user_for_reviews                                                       619
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2010
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     17000
Name: 1238, dtype: object
color                                                                    Color
director_name                                                     Ivan Reitman
num_critic_for_reviews                                                      16
duration                                                                   116
director_facebook_likes                                                    425
actor_3_facebook_likes                                                     204
actor_2_name                                                      Debra Winger
actor_1_facebook_likes                                                     954
gross                                                              4.98516e+07
genres                                                    Comedy|Crime|Romance
actor_1_name                                                     Brian Dennehy
movie_title                                                      Legal Eagles 
num_voted_users                                                           7900
cast_total_facebook_likes                                                 2179
actor_3_name                                                 Roscoe Lee Browne
facenumber_in_poster                                                         3
plot_keywords                        judicial|judiciary|lawyer|murder|painting
movie_imdb_link              http://www.imdb.com/title/tt0091396/?ref_=fn_t...
num_user_for_reviews                                                        34
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   4e+07
title_year                                                                1986
actor_2_facebook_likes                                                     568
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       263
Name: 1239, dtype: object
color                                                                    Color
director_name                                                      David Koepp
num_critic_for_reviews                                                     195
duration                                                                    96
director_facebook_likes                                                    192
actor_3_facebook_likes                                                     501
actor_2_name                                                 Charles S. Dutton
actor_1_facebook_likes                                                   40000
gross                                                              4.77814e+07
genres                                                        Mystery|Thriller
actor_1_name                                                       Johnny Depp
movie_title                                                     Secret Window 
num_voted_users                                                         147504
cast_total_facebook_likes                                                41293
actor_3_name                                                    Timothy Hutton
facenumber_in_poster                                                         1
plot_keywords                adultery|extramarital affair|infidelity|unfait...
movie_imdb_link              http://www.imdb.com/title/tt0363988/?ref_=fn_t...
num_user_for_reviews                                                       531
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2004
actor_2_facebook_likes                                                     534
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1240, dtype: object
color                                                                    Color
director_name                                                Alejandro Agresti
num_critic_for_reviews                                                     175
duration                                                                    99
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     211
actor_2_name                                                       Dylan Walsh
actor_1_facebook_likes                                                   18000
gross                                                               5.2321e+07
genres                                                   Drama|Fantasy|Romance
actor_1_name                                                      Keanu Reeves
movie_title                                                    The Lake House 
num_voted_users                                                         114321
cast_total_facebook_likes                                                18693
actor_3_name                                                Ebon Moss-Bachrach
facenumber_in_poster                                                         0
plot_keywords                 house|lake|letter|love across time|parallel time
movie_imdb_link              http://www.imdb.com/title/tt0410297/?ref_=fn_t...
num_user_for_reviews                                                       548
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   4e+07
title_year                                                                2006
actor_2_facebook_likes                                                     426
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1241, dtype: object
color                                                          Black and White
director_name                                                     Iain Softley
num_critic_for_reviews                                                     193
duration                                                                   104
director_facebook_likes                                                     34
actor_3_facebook_likes                                                     280
actor_2_name                                                      Deneen Tyler
actor_1_facebook_likes                                                     545
gross                                                              4.78063e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                     Gena Rowlands
movie_title                                                  The Skeleton Key 
num_voted_users                                                          87447
cast_total_facebook_likes                                                 1274
actor_3_name                                                        Joy Bryant
facenumber_in_poster                                                         0
plot_keywords                attic|bound and gagged|hoodoo|secret|southern ...
movie_imdb_link              http://www.imdb.com/title/tt0397101/?ref_=fn_t...
num_user_for_reviews                                                       371
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.3e+07
title_year                                                                2005
actor_2_facebook_likes                                                     351
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1242, dtype: object
color                                                                    Color
director_name                                                     Peter Hedges
num_critic_for_reviews                                                     169
duration                                                                   105
director_facebook_likes                                                     54
actor_3_facebook_likes                                                     988
actor_2_name                                                        Odeya Rush
actor_1_facebook_likes                                                    3000
gross                                                              5.18534e+07
genres                                             Comedy|Drama|Family|Fantasy
actor_1_name                                                   Jennifer Garner
movie_title                                     The Odd Life of Timothy Green 
num_voted_users                                                          37398
cast_total_facebook_likes                                                 9069
actor_3_name                                                            Common
facenumber_in_poster                                                         0
plot_keywords                 dodgeball|portrait|soccer|soccer game|young love
movie_imdb_link              http://www.imdb.com/title/tt1462769/?ref_=fn_t...
num_user_for_reviews                                                       110
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 2.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 1243, dtype: object
color                                                                    Color
director_name                                                     Paul Weiland
num_critic_for_reviews                                                     128
duration                                                                   101
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     681
actor_2_name                                                      Beau Garrett
actor_1_facebook_likes                                                    1000
gross                                                              4.60127e+07
genres                                                          Comedy|Romance
actor_1_name                                                     Busy Philipps
movie_title                                                     Made of Honor 
num_voted_users                                                          54421
cast_total_facebook_likes                                                 4298
actor_3_name                                                     Kevin Sussman
facenumber_in_poster                                                         2
plot_keywords                          friend|love|maid|maid of honor|marriage
movie_imdb_link              http://www.imdb.com/title/tt0866439/?ref_=fn_t...
num_user_for_reviews                                                       101
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2008
actor_2_facebook_likes                                                     689
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                      3000
Name: 1244, dtype: object
color                                                                    Color
director_name                                                   Clint Eastwood
num_critic_for_reviews                                                     249
duration                                                                   134
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     235
actor_2_name                                                   Steve Schirripa
actor_1_facebook_likes                                                     880
gross                                                              4.70343e+07
genres                                           Biography|Drama|Music|Musical
actor_1_name                                                 Johnny Cannizzaro
movie_title                                                       Jersey Boys 
num_voted_users                                                          25465
cast_total_facebook_likes                                                 2281
actor_3_name                                                       Scott Vance
facenumber_in_poster                                                         1
plot_keywords                     band|music group|musical quartet|singer|song
movie_imdb_link              http://www.imdb.com/title/tt1742044/?ref_=fn_t...
num_user_for_reviews                                                       190
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2014
actor_2_facebook_likes                                                     413
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 1245, dtype: object
color                                                                    Color
director_name                                             Francis Ford Coppola
num_critic_for_reviews                                                      91
duration                                                                   135
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     913
actor_2_name                                                    Dean Stockwell
actor_1_facebook_likes                                                   13000
gross                                                              4.58567e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                        Matt Damon
movie_title                                                     The Rainmaker 
num_voted_users                                                          46221
cast_total_facebook_likes                                                16762
actor_3_name                                                   Virginia Madsen
facenumber_in_poster                                                         1
plot_keywords                courtroom|domestic violence|insurance company|...
movie_imdb_link              http://www.imdb.com/title/tt0119978/?ref_=fn_t...
num_user_for_reviews                                                       141
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                1997
actor_2_facebook_likes                                                     936
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1246, dtype: object
color                                                                    Color
director_name                                                Mathieu Kassovitz
num_critic_for_reviews                                                     207
duration                                                                    98
director_facebook_likes                                                    326
actor_3_facebook_likes                                                     416
actor_2_name                                                 Charles S. Dutton
actor_1_facebook_likes                                                   21000
gross                                                              5.95881e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                 Robert Downey Jr.
movie_title                                                           Gothika 
num_voted_users                                                          89557
cast_total_facebook_likes                                                22318
actor_3_name                                                      Bernard Hill
facenumber_in_poster                                                         1
plot_keywords                     memory|murder|patient|psychiatrist|the devil
movie_imdb_link              http://www.imdb.com/title/tt0348836/?ref_=fn_t...
num_user_for_reviews                                                       376
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2003
actor_2_facebook_likes                                                     534
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1247, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                      77
duration                                                                   155
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                   11000
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   12000
gross                                                              4.41754e+07
genres                                                           Drama|History
actor_1_name                                                   Anthony Hopkins
movie_title                                                           Amistad 
num_voted_users                                                          56509
cast_total_facebook_likes                                                37570
actor_3_name                                               Matthew McConaughey
facenumber_in_poster                                                         2
plot_keywords                     courtroom|mutiny|ship|slave ship|slave trade
movie_imdb_link              http://www.imdb.com/title/tt0118607/?ref_=fn_t...
num_user_for_reviews                                                       227
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 3.6e+07
title_year                                                                1997
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1248, dtype: object
color                                                                    Color
director_name                                                   John McTiernan
num_critic_for_reviews                                                      25
duration                                                                   106
director_facebook_likes                                                    323
actor_3_facebook_likes                                                       0
actor_2_name                                                       José Wilker
actor_1_facebook_likes                                                     472
gross                                                              4.55008e+07
genres                                                 Adventure|Drama|Romance
actor_1_name                                                   Lorraine Bracco
movie_title                                                      Medicine Man 
num_voted_users                                                          17443
cast_total_facebook_likes                                                  519
actor_3_name                                                      Sean Connery
facenumber_in_poster                                                         2
plot_keywords                cancer|environment|gas chromatograph|jungle|na...
movie_imdb_link              http://www.imdb.com/title/tt0104839/?ref_=fn_t...
num_user_for_reviews                                                        56
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                1992
actor_2_facebook_likes                                                      47
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       694
Name: 1249, dtype: object
color                                                                    Color
director_name                                                    Colin Strause
num_critic_for_reviews                                                     211
duration                                                                   102
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     473
actor_2_name                                                      Johnny Lewis
actor_1_facebook_likes                                                    1000
gross                                                              4.17971e+07
genres                                           Action|Horror|Sci-Fi|Thriller
actor_1_name                                                      Sam Trammell
movie_title                                      Aliens vs. Predator: Requiem 
num_voted_users                                                          92789
cast_total_facebook_likes                                                 4324
actor_3_name                                                         Ian Whyte
facenumber_in_poster                                                         0
plot_keywords                             alien|escape|hunting|hybrid|predator
movie_imdb_link              http://www.imdb.com/title/tt0758730/?ref_=fn_t...
num_user_for_reviews                                                       998
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2007
actor_2_facebook_likes                                                     741
imdb_score                                                                 4.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1250, dtype: object
color                                                                    Color
director_name                                                    Donald Petrie
num_critic_for_reviews                                                      19
duration                                                                    95
director_facebook_likes                                                     80
actor_3_facebook_likes                                                     287
actor_2_name                                                  John Larroquette
actor_1_facebook_likes                                                    3000
gross                                                              3.80878e+07
genres                                                           Comedy|Family
actor_1_name                                                   Macaulay Culkin
movie_title                                                       Ri¢hie Ri¢h 
num_voted_users                                                          49612
cast_total_facebook_likes                                                 4634
actor_3_name                                                     Jonathan Hyde
facenumber_in_poster                                                         1
plot_keywords                attempted murder|based on comic book|escape fr...
movie_imdb_link              http://www.imdb.com/title/tt0110989/?ref_=fn_t...
num_user_for_reviews                                                        39
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   4e+07
title_year                                                                1994
actor_2_facebook_likes                                                     450
imdb_score                                                                 5.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1251, dtype: object
color                                                                    Color
director_name                                                        Joan Chen
num_critic_for_reviews                                                     101
duration                                                                   103
director_facebook_likes                                                    643
actor_3_facebook_likes                                                     586
actor_2_name                                                      Sam Trammell
actor_1_facebook_likes                                                   24000
gross                                                              3.77529e+07
genres                                                           Drama|Romance
actor_1_name                                                      J.K. Simmons
movie_title                                                Autumn in New York 
num_voted_users                                                          20201
cast_total_facebook_likes                                                26938
actor_3_name                                                    Elaine Stritch
facenumber_in_poster                                                         2
plot_keywords                may december romance|new york|new york city|ro...
movie_imdb_link              http://www.imdb.com/title/tt0174480/?ref_=fn_t...
num_user_for_reviews                                                       180
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2000
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1252, dtype: object
color                                                                    Color
director_name                                                    Marc Lawrence
num_critic_for_reviews                                                     175
duration                                                                    95
director_facebook_likes                                                     30
actor_3_facebook_likes                                                     664
actor_2_name                                                      Scott Porter
actor_1_facebook_likes                                                     799
gross                                                              5.05626e+07
genres                                                    Comedy|Music|Romance
actor_1_name                                                      Brad Garrett
movie_title                                                  Music and Lyrics 
num_voted_users                                                          81334
cast_total_facebook_likes                                                 2787
actor_3_name                                                     Haley Bennett
facenumber_in_poster                                                         4
plot_keywords                                love|lyricist|singer|singing|song
movie_imdb_link              http://www.imdb.com/title/tt0758766/?ref_=fn_t...
num_user_for_reviews                                                       291
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2007
actor_2_facebook_likes                                                     690
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1253, dtype: object
color                                                                    Color
director_name                                                     Greg Mottola
num_critic_for_reviews                                                     342
duration                                                                   109
director_facebook_likes                                                     99
actor_3_facebook_likes                                                      57
actor_2_name                                                   Nelson Ascencio
actor_1_facebook_likes                                                     176
gross                                                              3.73714e+07
genres                                                 Adventure|Comedy|Sci-Fi
actor_1_name                                                         Bobby Lee
movie_title                                                              Paul 
num_voted_users                                                         192462
cast_total_facebook_likes                                                  390
actor_3_name                                                       Jeremy Owen
facenumber_in_poster                                                         0
plot_keywords                                    alien|geek|nerd|road trip|ufo
movie_imdb_link              http://www.imdb.com/title/tt1092026/?ref_=fn_t...
num_user_for_reviews                                                       334
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2011
actor_2_facebook_likes                                                      61
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     42000
Name: 1254, dtype: object
color                                                                    Color
director_name                                                    Anne Fletcher
num_critic_for_reviews                                                     147
duration                                                                    95
director_facebook_likes                                                     98
actor_3_facebook_likes                                                      78
actor_2_name                                                        Tom Virtue
actor_1_facebook_likes                                                     405
gross                                                               3.7101e+07
genres                                                            Comedy|Drama
actor_1_name                                                  Miriam Margolyes
movie_title                                                    The Guilt Trip 
num_voted_users                                                          30394
cast_total_facebook_likes                                                 1070
actor_3_name                                                      Julene Renee
facenumber_in_poster                                                         1
plot_keywords                cross country|love|mother son relationship|on ...
movie_imdb_link              http://www.imdb.com/title/tt1694020/?ref_=fn_t...
num_user_for_reviews                                                       103
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2012
actor_2_facebook_likes                                                     358
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1255, dtype: object
color                                                                    Color
director_name                                                       Wes Craven
num_critic_for_reviews                                                     420
duration                                                                   111
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     687
actor_2_name                                                   Aimee Teegarden
actor_1_facebook_likes                                                    2000
gross                                                              3.81769e+07
genres                                                          Horror|Mystery
actor_1_name                                                       Alison Brie
movie_title                                                          Scream 4 
num_voted_users                                                         104119
cast_total_facebook_likes                                                 4486
actor_3_name                                               Shenae Grimes-Beech
facenumber_in_poster                                                         0
plot_keywords                                author|book|deputy|murder|sheriff
movie_imdb_link              http://www.imdb.com/title/tt1262416/?ref_=fn_t...
num_user_for_reviews                                                       518
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2011
actor_2_facebook_likes                                                     741
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     26000
Name: 1256, dtype: object
color                                                                    Color
director_name                                                  Joel Schumacher
num_critic_for_reviews                                                     138
duration                                                                   123
director_facebook_likes                                                    541
actor_3_facebook_likes                                                     173
actor_2_name                                                       Chris Bauer
actor_1_facebook_likes                                                   12000
gross                                                              3.62835e+07
genres                                                        Mystery|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                                               8MM 
num_voted_users                                                         104564
cast_total_facebook_likes                                                12970
actor_3_name                                                     Anthony Heald
facenumber_in_poster                                                         1
plot_keywords                investigation|obsession|private eye|private in...
movie_imdb_link              http://www.imdb.com/title/tt0134273/?ref_=fn_t...
num_user_for_reviews                                                       587
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                1999
actor_2_facebook_likes                                                     638
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1257, dtype: object
color                                                                    Color
director_name                                                     Oliver Stone
num_critic_for_reviews                                                      82
duration                                                                   140
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     552
actor_2_name                                                      Kevin Dillon
actor_1_facebook_likes                                                     720
gross                                                              3.51838e+07
genres                                           Biography|Drama|Music|Musical
actor_1_name                                                   Michael Wincott
movie_title                                                         The Doors 
num_voted_users                                                          68159
cast_total_facebook_likes                                                 3044
actor_3_name                                                  Kathleen Quinlan
facenumber_in_poster                                                         1
plot_keywords                    death|paris france|rock band|singer|the doors
movie_imdb_link              http://www.imdb.com/title/tt0101761/?ref_=fn_t...
num_user_for_reviews                                                       209
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 3.8e+07
title_year                                                                1991
actor_2_facebook_likes                                                     576
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1258, dtype: object
color                                                                    Color
director_name                                                      Jake Kasdan
num_critic_for_reviews                                                     201
duration                                                                    94
director_facebook_likes                                                     52
actor_3_facebook_likes                                                     214
actor_2_name                                                      Randall Park
actor_1_facebook_likes                                                     683
gross                                                              3.85435e+07
genres                                                                  Comedy
actor_1_name                                                      James Wilcox
movie_title                                                          Sex Tape 
num_voted_users                                                          84382
cast_total_facebook_likes                                                 1488
actor_3_name                                                         Nat Faxon
facenumber_in_poster                                                         2
plot_keywords                sex in a car|sex video|sexual desire|sexuality...
movie_imdb_link              http://www.imdb.com/title/tt1956620/?ref_=fn_t...
num_user_for_reviews                                                       158
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2014
actor_2_facebook_likes                                                     392
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1259, dtype: object
color                                                                    Color
director_name                                                     Diane Keaton
num_critic_for_reviews                                                      82
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     235
actor_2_name                                                      Celia Weston
actor_1_facebook_likes                                                     374
gross                                                              3.60379e+07
genres                                                            Comedy|Drama
actor_1_name                                                        Adam Arkin
movie_title                                                        Hanging Up 
num_voted_users                                                          10132
cast_total_facebook_likes                                                 1238
actor_3_name                                                       Jesse James
facenumber_in_poster                                                         3
plot_keywords                actress|clown costume|magazine|party planner|s...
movie_imdb_link              http://www.imdb.com/title/tt0162983/?ref_=fn_t...
num_user_for_reviews                                                       130
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                2000
actor_2_facebook_likes                                                     258
imdb_score                                                                 4.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       390
Name: 1260, dtype: object
color                                                                    Color
director_name                                                     Steven Quale
num_critic_for_reviews                                                     277
duration                                                                    92
director_facebook_likes                                                     77
actor_3_facebook_likes                                                     495
actor_2_name                                          Jacqueline MacInnes Wood
actor_1_facebook_likes                                                     703
gross                                                              4.25757e+07
genres                                                                  Horror
actor_1_name                                                         Emma Bell
movie_title                                               Final Destination 5 
num_voted_users                                                          83788
cast_total_facebook_likes                                                 3074
actor_3_name                                                 Courtney B. Vance
facenumber_in_poster                                                         0
plot_keywords                blood splatter|death|eyeball run over by car|l...
movie_imdb_link              http://www.imdb.com/title/tt1622979/?ref_=fn_t...
num_user_for_reviews                                                       227
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2011
actor_2_facebook_likes                                                     682
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     20000
Name: 1261, dtype: object
color                                                                    Color
director_name                                                      Kelly Makin
num_critic_for_reviews                                                      90
duration                                                                   102
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     584
actor_2_name                                                        Burt Young
actor_1_facebook_likes                                                     711
gross                                                              3.38643e+07
genres                                                    Comedy|Crime|Romance
actor_1_name                                                Jeanne Tripplehorn
movie_title                                                  Mickey Blue Eyes 
num_voted_users                                                          29968
cast_total_facebook_likes                                                 2913
actor_3_name                                                   Vincent Pastore
facenumber_in_poster                                                         1
plot_keywords                            auctioneer|fbi|mafia|mobster|painting
movie_imdb_link              http://www.imdb.com/title/tt0130121/?ref_=fn_t...
num_user_for_reviews                                                       117
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                1999
actor_2_facebook_likes                                                     683
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       445
Name: 1262, dtype: object
color                                                                    Color
director_name                                                       Mimi Leder
num_critic_for_reviews                                                     157
duration                                                                   123
director_facebook_likes                                                     75
actor_3_facebook_likes                                                     754
actor_2_name                                                 Haley Joel Osment
actor_1_facebook_likes                                                   18000
gross                                                              3.35089e+07
genres                                                                   Drama
actor_1_name                                                      Kevin Spacey
movie_title                                                    Pay It Forward 
num_voted_users                                                          95860
cast_total_facebook_likes                                                23920
actor_3_name                                                   Angie Dickinson
facenumber_in_poster                                                         2
plot_keywords                 alcoholism|boy|good deed|protective male|teacher
movie_imdb_link              http://www.imdb.com/title/tt0223897/?ref_=fn_t...
num_user_for_reviews                                                       660
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2000
actor_2_facebook_likes                                                    3000
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     16000
Name: 1263, dtype: object
color                                                                    Color
director_name                                                   Bobby Farrelly
num_critic_for_reviews                                                     124
duration                                                                   104
director_facebook_likes                                                    101
actor_3_facebook_likes                                                     223
actor_2_name                                                  KaDee Strickland
actor_1_facebook_likes                                                     787
gross                                                              4.20711e+07
genres                                              Comedy|Drama|Romance|Sport
actor_1_name                                                      Jimmy Fallon
movie_title                                                       Fever Pitch 
num_voted_users                                                          36223
cast_total_facebook_likes                                                 1827
actor_3_name                                                         Ione Skye
facenumber_in_poster                                                         1
plot_keywords                baltimore orioles|boston red sox|promotion|ups...
movie_imdb_link              http://www.imdb.com/title/tt0332047/?ref_=fn_t...
num_user_for_reviews                                                       208
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   3e+07
title_year                                                                2005
actor_2_facebook_likes                                                     299
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1264, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                       3
duration                                                                    30
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                      12
actor_2_name                                                     Melissa Altro
actor_1_facebook_likes                                                      51
gross                                                                      NaN
genres                                                 Animation|Comedy|Family
actor_1_name                                                    Bruce Dinsmore
movie_title                                                Arthur             
num_voted_users                                                           8495
cast_total_facebook_likes                                                  108
actor_3_name                                                     Daniel Brochu
facenumber_in_poster                                                         0
plot_keywords                based on children's book|best friend|character...
movie_imdb_link              http://www.imdb.com/title/tt0169414/?ref_=fn_t...
num_user_for_reviews                                                        43
language                                                               English
country                                                                 Canada
content_rating                                                            TV-Y
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                      21
imdb_score                                                                 7.4
aspect_ratio                                                              1.33
movie_facebook_likes                                                       301
Name: 1265, dtype: object
color                                                                    Color
director_name                                                     Steven Brill
num_critic_for_reviews                                                     146
duration                                                                   102
director_facebook_likes                                                     65
actor_3_facebook_likes                                                     490
actor_2_name                                                       Shaun Weiss
actor_1_facebook_likes                                                    1000
gross                                                              3.28536e+07
genres                                                            Comedy|Drama
actor_1_name                                                   Lisa Ann Walter
movie_title                                                   Drillbit Taylor 
num_voted_users                                                          50199
cast_total_facebook_likes                                                 3239
actor_3_name                                                        Matt Walsh
facenumber_in_poster                                                         1
plot_keywords                    bodyguard|bully|generation y|high school|nerd
movie_imdb_link              http://www.imdb.com/title/tt0817538/?ref_=fn_t...
num_user_for_reviews                                                       101
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2008
actor_2_facebook_likes                                                     613
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       702
Name: 1266, dtype: object
color                                                                    Color
director_name                                                  Seth MacFarlane
num_critic_for_reviews                                                     303
duration                                                                   136
director_facebook_likes                                                   3000
actor_3_facebook_likes                                                    3000
actor_2_name                                                   Charlize Theron
actor_1_facebook_likes                                                   14000
gross                                                              4.26157e+07
genres                                                          Comedy|Western
actor_1_name                                                       Liam Neeson
movie_title                                 A Million Ways to Die in the West 
num_voted_users                                                         136093
cast_total_facebook_likes                                                28927
actor_3_name                                                   Seth MacFarlane
facenumber_in_poster                                                         3
plot_keywords                dancing sheep|fetish|musical scene|racial humo...
movie_imdb_link              http://www.imdb.com/title/tt2557490/?ref_=fn_t...
num_user_for_reviews                                                       416
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2014
actor_2_facebook_likes                                                    9000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     24000
Name: 1267, dtype: object
color                                                                    Color
director_name                                                  Russell Mulcahy
num_critic_for_reviews                                                      70
duration                                                                    93
director_facebook_likes                                                     85
actor_3_facebook_likes                                                     510
actor_2_name                                                       Peter Boyle
actor_1_facebook_likes                                                     924
gross                                                              3.20552e+07
genres                         Action|Adventure|Crime|Fantasy|Mystery|Thriller
actor_1_name                                                  Jonathan Winters
movie_title                                                        The Shadow 
num_voted_users                                                          18723
cast_total_facebook_likes                                                 2711
actor_3_name                                                      John Kapelos
facenumber_in_poster                                                         0
plot_keywords                          1930s|bomb|city|invisibility|the shadow
movie_imdb_link              http://www.imdb.com/title/tt0111143/?ref_=fn_t...
num_user_for_reviews                                                       146
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.5e+07
title_year                                                                1994
actor_2_facebook_likes                                                     595
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1268, dtype: object
color                                                                    Color
director_name                                                   Stephen Daldry
num_critic_for_reviews                                                     283
duration                                                                   129
director_facebook_likes                                                    335
actor_3_facebook_likes                                                      64
actor_2_name                                                       Thomas Horn
actor_1_facebook_likes                                                   15000
gross                                                              3.18367e+07
genres                                                 Adventure|Drama|Mystery
actor_1_name                                                         Tom Hanks
movie_title                                 Extremely Loud & Incredibly Close 
num_voted_users                                                          81298
cast_total_facebook_likes                                                15595
actor_3_name                                                 Stephen Henderson
facenumber_in_poster                                                         1
plot_keywords                              fear|mourning|mute|quest|revelation
movie_imdb_link              http://www.imdb.com/title/tt0477302/?ref_=fn_t...
num_user_for_reviews                                                       341
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2011
actor_2_facebook_likes                                                     467
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     39000
Name: 1269, dtype: object
color                                                                    Color
director_name                                                    Roger Michell
num_critic_for_reviews                                                     212
duration                                                                   107
director_facebook_likes                                                     50
actor_3_facebook_likes                                                      58
actor_2_name                                                Patti D'Arbanville
actor_1_facebook_likes                                                     293
gross                                                              3.09935e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                         Noah Bean
movie_title                                                     Morning Glory 
num_voted_users                                                          58871
cast_total_facebook_likes                                                  621
actor_3_name                                                 Vanessa Aspillaga
facenumber_in_poster                                                         0
plot_keywords                job offer|roller coaster|slow motion action sc...
movie_imdb_link              http://www.imdb.com/title/tt1126618/?ref_=fn_t...
num_user_for_reviews                                                       156
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2010
actor_2_facebook_likes                                                     117
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1270, dtype: object
color                                                                    Color
director_name                                                     Jim Sheridan
num_critic_for_reviews                                                      98
duration                                                                   117
director_facebook_likes                                                    260
actor_3_facebook_likes                                                     441
actor_2_name                                                         Bill Duke
actor_1_facebook_likes                                                    1000
gross                                                              3.09818e+07
genres                                             Biography|Crime|Drama|Music
actor_1_name                                                           50 Cent
movie_title                                            Get Rich or Die Tryin' 
num_voted_users                                                          35834
cast_total_facebook_likes                                                 3969
actor_3_name                                               Marc John Jefferies
facenumber_in_poster                                                         0
plot_keywords                male frontal nudity|male pubic hair|prison|pub...
movie_imdb_link              http://www.imdb.com/title/tt0430308/?ref_=fn_t...
num_user_for_reviews                                                       284
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2005
actor_2_facebook_likes                                                    1000
imdb_score                                                                   5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1271, dtype: object
color                                                                    Color
director_name                                                 Christian Duguay
num_critic_for_reviews                                                     110
duration                                                                   116
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     249
actor_2_name                                              Cary-Hiroyuki Tagawa
actor_1_facebook_likes                                                    2000
gross                                                              3.01991e+07
genres                                         Action|Adventure|Crime|Thriller
actor_1_name                                                     Michael Biehn
movie_title                                                    The Art of War 
num_voted_users                                                          25346
cast_total_facebook_likes                                                 3753
actor_3_name                                                       Anne Archer
facenumber_in_poster                                                         0
plot_keywords                blood splatter|fbi|murder|secretary general|un...
movie_imdb_link              http://www.imdb.com/title/tt0160009/?ref_=fn_t...
num_user_for_reviews                                                       167
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2000
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       470
Name: 1272, dtype: object
color                                                                    Color
director_name                                                   Chris Columbus
num_critic_for_reviews                                                     146
duration                                                                   135
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     715
actor_2_name                                                        David Fine
actor_1_facebook_likes                                                    3000
gross                                                              2.90775e+07
genres                                                   Drama|Musical|Romance
actor_1_name                                                    Rosario Dawson
movie_title                                                              Rent 
num_voted_users                                                          41685
cast_total_facebook_likes                                                 5917
actor_3_name                                                   Jesse L. Martin
facenumber_in_poster                                                         1
plot_keywords                  aids|hiv positive|lawyer|new york city|roommate
movie_imdb_link              http://www.imdb.com/title/tt0294870/?ref_=fn_t...
num_user_for_reviews                                                       754
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2005
actor_2_facebook_likes                                                    1000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      3000
Name: 1273, dtype: object
color                                                                    Color
director_name                                                    Chuck Russell
num_critic_for_reviews                                                     100
duration                                                                   107
director_facebook_likes                                                     55
actor_3_facebook_likes                                                     294
actor_2_name                                                       Jimmy Smits
actor_1_facebook_likes                                                    3000
gross                                                              2.93742e+07
genres                                             Crime|Drama|Horror|Thriller
actor_1_name                                                      Rufus Sewell
movie_title                                                   Bless the Child 
num_voted_users                                                          12093
cast_total_facebook_likes                                                 4565
actor_3_name                                                     Angela Bettis
facenumber_in_poster                                                         0
plot_keywords                                    easter|fbi|luminol|nurse|omen
movie_imdb_link              http://www.imdb.com/title/tt0163983/?ref_=fn_t...
num_user_for_reviews                                                       188
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2000
actor_2_facebook_likes                                                     941
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       394
Name: 1274, dtype: object
color                                                                    Color
director_name                                                      Sam Weisman
num_critic_for_reviews                                                      62
duration                                                                    90
director_facebook_likes                                                     39
actor_3_facebook_likes                                                     210
actor_2_name                                                     Valerie Perri
actor_1_facebook_likes                                                     607
gross                                                              2.85358e+07
genres                                                                  Comedy
actor_1_name                                                     Oliver Hudson
movie_title                                                The Out-of-Towners 
num_voted_users                                                          10446
cast_total_facebook_likes                                                 1335
actor_3_name                                                    Carlease Burke
facenumber_in_poster                                                         2
plot_keywords                job interview|manhattan new york city|new york...
movie_imdb_link              http://www.imdb.com/title/tt0129280/?ref_=fn_t...
num_user_for_reviews                                                       105
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                1999
actor_2_facebook_likes                                                     322
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       279
Name: 1275, dtype: object
color                                                                    Color
director_name                                               John Frankenheimer
num_critic_for_reviews                                                      70
duration                                                                    99
director_facebook_likes                                                    287
actor_3_facebook_likes                                                      44
actor_2_name                                                  Temuera Morrison
actor_1_facebook_likes                                                   10000
gross                                                               2.7664e+07
genres                                                  Horror|Sci-Fi|Thriller
actor_1_name                                                     Marlon Brando
movie_title                                          The Island of Dr. Moreau 
num_voted_users                                                          26051
cast_total_facebook_likes                                                10469
actor_3_name                                                Marco Hofschneider
facenumber_in_poster                                                         2
plot_keywords                animal experimentation|chimera|island|jungle|m...
movie_imdb_link              http://www.imdb.com/title/tt0116654/?ref_=fn_t...
num_user_for_reviews                                                       164
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                1996
actor_2_facebook_likes                                                     368
imdb_score                                                                 4.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1276, dtype: object
color                                                                    Color
director_name                                                      Peter Hyams
num_critic_for_reviews                                                     107
duration                                                                   104
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     327
actor_2_name                                                   Justin Chambers
actor_1_facebook_likes                                                     964
gross                                                              2.70538e+07
genres                                                Action|Adventure|Romance
actor_1_name                                                 Catherine Deneuve
movie_title                                                     The Musketeer 
num_voted_users                                                          12856
cast_total_facebook_likes                                                 2888
actor_3_name                                                       Stephen Rea
facenumber_in_poster                                                         0
plot_keywords                            guard|king|murder|musketeer|swordsman
movie_imdb_link              http://www.imdb.com/title/tt0246544/?ref_=fn_t...
num_user_for_reviews                                                       291
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2001
actor_2_facebook_likes                                                     931
imdb_score                                                                 4.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       299
Name: 1277, dtype: object
color                                                                    Color
director_name                                                  Justin Chadwick
num_critic_for_reviews                                                     169
duration                                                                   115
director_facebook_likes                                                     56
actor_3_facebook_likes                                                   19000
actor_2_name                                                Scarlett Johansson
actor_1_facebook_likes                                                   20000
gross                                                               2.6815e+07
genres                                         Biography|Drama|History|Romance
actor_1_name                                                   Natalie Portman
movie_title                                             The Other Boleyn Girl 
num_voted_users                                                          84357
cast_total_facebook_likes                                                77823
actor_3_name                                              Benedict Cumberbatch
facenumber_in_poster                                                         3
plot_keywords                         children|court|king|king henry viii|love
movie_imdb_link              http://www.imdb.com/title/tt0467200/?ref_=fn_t...
num_user_for_reviews                                                       252
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 3.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                   19000
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1278, dtype: object
color                                                                    Color
director_name                                                     Pat O'Connor
num_critic_for_reviews                                                      94
duration                                                                   119
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     903
actor_2_name                                                   Charlize Theron
actor_1_facebook_likes                                                   18000
gross                                                              2.51782e+07
genres                                                           Drama|Romance
actor_1_name                                                      Keanu Reeves
movie_title                                                    Sweet November 
num_voted_users                                                          70292
cast_total_facebook_likes                                                29484
actor_3_name                                                    Frank Langella
facenumber_in_poster                                                         1
plot_keywords                advertising|cancer|dog|san francisco californi...
movie_imdb_link              http://www.imdb.com/title/tt0230838/?ref_=fn_t...
num_user_for_reviews                                                       274
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2001
actor_2_facebook_likes                                                    9000
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                      8000
Name: 1279, dtype: object
color                                                                    Color
director_name                                                  Stephen Hopkins
num_critic_for_reviews                                                     190
duration                                                                    99
director_facebook_likes                                                     81
actor_3_facebook_likes                                                     135
actor_2_name                                                    Andrea Frankle
actor_1_facebook_likes                                                     327
gross                                                              2.51175e+07
genres                                                         Horror|Thriller
actor_1_name                                                       Stephen Rea
movie_title                                                       The Reaping 
num_voted_users                                                          37412
cast_total_facebook_likes                                                  960
actor_3_name                                                  William Ragsdale
facenumber_in_poster                                                         0
plot_keywords                biblical plague|louisiana|missionary|plague|sm...
movie_imdb_link              http://www.imdb.com/title/tt0444682/?ref_=fn_t...
num_user_for_reviews                                                       178
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2007
actor_2_facebook_likes                                                     253
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1280, dtype: object
color                                                                    Color
director_name                                                  Martin Scorsese
num_critic_for_reviews                                                     112
duration                                                                   112
director_facebook_likes                                                  17000
actor_3_facebook_likes                                                     354
actor_2_name                                                   David Carradine
actor_1_facebook_likes                                                   22000
gross                                                                    32645
genres                                            Crime|Drama|Romance|Thriller
actor_1_name                                                    Robert De Niro
movie_title                                                      Mean Streets 
num_voted_users                                                          67797
cast_total_facebook_likes                                                23737
actor_3_name                                                      David Proval
facenumber_in_poster                                                         0
plot_keywords                bar|catholic guilt|epilepsy|italian american|m...
movie_imdb_link              http://www.imdb.com/title/tt0070379/?ref_=fn_t...
num_user_for_reviews                                                       223
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  500000
title_year                                                                1973
actor_2_facebook_likes                                                     926
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1281, dtype: object
color                                                                    Color
director_name                                                   Penny Marshall
num_critic_for_reviews                                                      12
duration                                                                   128
director_facebook_likes                                                    545
actor_3_facebook_likes                                                     353
actor_2_name                                                   Cliff Robertson
actor_1_facebook_likes                                                     783
gross                                                              2.43323e+07
genres                                                            Comedy|Drama
actor_1_name                                                     Ed Begley Jr.
movie_title                                                   Renaissance Man 
num_voted_users                                                          13830
cast_total_facebook_likes                                                 3126
actor_3_name                                                    Lillo Brancato
facenumber_in_poster                                                         1
plot_keywords                army|basic training|reference to shakespeare's...
movie_imdb_link              http://www.imdb.com/title/tt0110971/?ref_=fn_t...
num_user_for_reviews                                                        61
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                1994
actor_2_facebook_likes                                                     754
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       680
Name: 1282, dtype: object
color                                                                    Color
director_name                                                  Olivier Megaton
num_critic_for_reviews                                                     201
duration                                                                   112
director_facebook_likes                                                    118
actor_3_facebook_likes                                                     674
actor_2_name                                                       Callum Blue
actor_1_facebook_likes                                                     877
gross                                                              3.66659e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                       Jordi Mollà
movie_title                                                        Colombiana 
num_voted_users                                                          76498
cast_total_facebook_likes                                                 3432
actor_3_name                                                     Jesse Borrego
facenumber_in_poster                                                         0
plot_keywords                female in a shower|female nudity|premarital se...
movie_imdb_link              http://www.imdb.com/title/tt1657507/?ref_=fn_t...
num_user_for_reviews                                                       203
language                                                               English
country                                                                 France
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2011
actor_2_facebook_likes                                                     738
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 1283, dtype: object
color                                                                    Color
director_name                                                 Frederik Du Chau
num_critic_for_reviews                                                      34
duration                                                                    86
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     795
actor_2_name                                                      Jaleel White
actor_1_facebook_likes                                                   10000
gross                                                              2.27178e+07
genres                       Adventure|Animation|Comedy|Drama|Family|Fantas...
actor_1_name                                                       Gary Oldman
movie_title                                The Magic Sword: Quest for Camelot 
num_voted_users                                                          11156
cast_total_facebook_likes                                                14275
actor_3_name                                                         Eric Idle
facenumber_in_poster                                                         0
plot_keywords                            camelot|dragon|excalibur|knight|sword
movie_imdb_link              http://www.imdb.com/title/tt0120800/?ref_=fn_t...
num_user_for_reviews                                                        67
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   4e+07
title_year                                                                1998
actor_2_facebook_likes                                                     908
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1284, dtype: object
color                                                                    Color
director_name                                              Michael Caton-Jones
num_critic_for_reviews                                                     104
duration                                                                   108
director_facebook_likes                                                    105
actor_3_facebook_likes                                                     616
actor_2_name                                                      James Franco
actor_1_facebook_likes                                                   22000
gross                                                              2.24339e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                    Robert De Niro
movie_title                                                   City by the Sea 
num_voted_users                                                          21319
cast_total_facebook_likes                                                34377
actor_3_name                                                        John Doman
facenumber_in_poster                                                         1
plot_keywords                       beach|grandson|murder|new york city|police
movie_imdb_link              http://www.imdb.com/title/tt0269095/?ref_=fn_t...
num_user_for_reviews                                                       166
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+07
title_year                                                                2002
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       416
Name: 1285, dtype: object
color                                                          Black and White
director_name                                                    Irwin Winkler
num_critic_for_reviews                                                      55
duration                                                                   128
director_facebook_likes                                                     34
actor_3_facebook_likes                                                     685
actor_2_name                                                       Nathan Lane
actor_1_facebook_likes                                                     978
gross                                                              2.23262e+07
genres                                                           Drama|Romance
actor_1_name                                                      Mira Sorvino
movie_title                                                    At First Sight 
num_voted_users                                                          11232
cast_total_facebook_likes                                                 3821
actor_3_name                                                      Steven Weber
facenumber_in_poster                                                         1
plot_keywords                based on article|blindness|box office flop|mas...
movie_imdb_link              http://www.imdb.com/title/tt0132512/?ref_=fn_t...
num_user_for_reviews                                                       106
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+07
title_year                                                                1999
actor_2_facebook_likes                                                     886
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1286, dtype: object
color                                                                    Color
director_name                                                      Joseph Kahn
num_critic_for_reviews                                                      86
duration                                                                    84
director_facebook_likes                                                     33
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Jay Hernandez
actor_1_facebook_likes                                                    1000
gross                                                              2.11763e+07
genres                                                     Action|Comedy|Crime
actor_1_name                                                         Dane Cook
movie_title                                                            Torque 
num_voted_users                                                          23747
cast_total_facebook_likes                                                 5039
actor_3_name                                                  Christina Milian
facenumber_in_poster                                                         0
plot_keywords                murder|on the run|security camera|surveillance...
movie_imdb_link              http://www.imdb.com/title/tt0329691/?ref_=fn_t...
num_user_for_reviews                                                       207
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2004
actor_2_facebook_likes                                                    1000
imdb_score                                                                   4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1287, dtype: object
color                                                                    Color
director_name                                                    Harold Becker
num_critic_for_reviews                                                      50
duration                                                                   111
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     889
actor_2_name                                                     Martin Landau
actor_1_facebook_likes                                                   14000
gross                                                                 2.03e+07
genres                                                          Drama|Thriller
actor_1_name                                                         Al Pacino
movie_title                                                         City Hall 
num_voted_users                                                          16741
cast_total_facebook_likes                                                17877
actor_3_name                                                     Bridget Fonda
facenumber_in_poster                                                         2
plot_keywords                drug dealer|mayor|new york city|probation|scandal
movie_imdb_link              http://www.imdb.com/title/tt0115907/?ref_=fn_t...
num_user_for_reviews                                                        60
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                1996
actor_2_facebook_likes                                                     940
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       309
Name: 1288, dtype: object
color                                                                    Color
director_name                                                   Paul Verhoeven
num_critic_for_reviews                                                     181
duration                                                                   131
director_facebook_likes                                                    719
actor_3_facebook_likes                                                     683
actor_2_name                                                 Elizabeth Berkley
actor_1_facebook_likes                                                   16000
gross                                                               2.0303e+07
genres                                                                   Drama
actor_1_name                                                   Bobbie Phillips
movie_title                                                         Showgirls 
num_voted_users                                                          49874
cast_total_facebook_likes                                                18913
actor_3_name                                                       Robert Davi
facenumber_in_poster                                                         0
plot_keywords                cult film|lap dance|lap dancing|stripper|strip...
movie_imdb_link              http://www.imdb.com/title/tt0114436/?ref_=fn_t...
num_user_for_reviews                                                       450
language                                                               English
country                                                                 France
content_rating                                                           NC-17
budget                                                                 4.5e+07
title_year                                                                1995
actor_2_facebook_likes                                                     893
imdb_score                                                                 4.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 1289, dtype: object
color                                                                    Color
director_name                                                    Sofia Coppola
num_critic_for_reviews                                                     260
duration                                                                   123
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     826
actor_2_name                                                 Shirley Henderson
actor_1_facebook_likes                                                    4000
gross                                                              1.59625e+07
genres                                         Biography|Drama|History|Romance
actor_1_name                                                     Kirsten Dunst
movie_title                                                  Marie Antoinette 
num_voted_users                                                          79892
cast_total_facebook_likes                                                 7243
actor_3_name                                                          Rip Torn
facenumber_in_poster                                                         1
plot_keywords                             austria|cake|france|queen|versailles
movie_imdb_link              http://www.imdb.com/title/tt0422720/?ref_=fn_t...
num_user_for_reviews                                                       619
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+07
title_year                                                                2006
actor_2_facebook_likes                                                     887
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 1290, dtype: object
color                                                                    Color
director_name                                                 Barbet Schroeder
num_critic_for_reviews                                                      40
duration                                                                   101
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     497
actor_2_name                                                  Michael Rapaport
actor_1_facebook_likes                                                   12000
gross                                                              1.49424e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                                     Kiss of Death 
num_voted_users                                                          14226
cast_total_facebook_likes                                                14008
actor_3_name                                                 Philip Baker Hall
facenumber_in_poster                                                         3
plot_keywords                beard|female nudity|police brutality|stripper|...
movie_imdb_link              http://www.imdb.com/title/tt0113552/?ref_=fn_t...
num_user_for_reviews                                                        60
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                1995
actor_2_facebook_likes                                                     975
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       555
Name: 1291, dtype: object
color                                                                    Color
director_name                                                      Stephen Kay
num_critic_for_reviews                                                     102
duration                                                                   102
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     351
actor_2_name                                                Miranda Richardson
actor_1_facebook_likes                                                   13000
gross                                                              1.49672e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                Sylvester Stallone
movie_title                                                        Get Carter 
num_voted_users                                                          27305
cast_total_facebook_likes                                                14463
actor_3_name                                                  Lauren Lee Smith
facenumber_in_poster                                                         1
plot_keywords                         affair|car crash|enforcer|funeral|murder
movie_imdb_link              http://www.imdb.com/title/tt0208988/?ref_=fn_t...
num_user_for_reviews                                                       284
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+07
title_year                                                                2000
actor_2_facebook_likes                                                     530
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       604
Name: 1292, dtype: object
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_data_rate_limit`.

Current values:
NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
NotebookApp.rate_limit_window=3.0 (secs)

color                                                                    Color
director_name                                                     Terry George
num_critic_for_reviews                                                     187
duration                                                                   121
director_facebook_likes                                                     83
actor_3_facebook_likes                                                     242
actor_2_name                                                    Sophie Okonedo
actor_1_facebook_likes                                                    3000
gross                                                              2.34729e+07
genres                                                       Drama|History|War
actor_1_name                                                       Don Cheadle
movie_title                                                      Hotel Rwanda 
num_voted_users                                                         264533
cast_total_facebook_likes                                                 4142
actor_3_name                                                  Hakeem Kae-Kazim
facenumber_in_poster                                                         1
plot_keywords                atrocity|central africa|ethnic warfare|united ...
movie_imdb_link              http://www.imdb.com/title/tt0395169/?ref_=fn_t...
num_user_for_reviews                                                       609
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                1.75e+07
title_year                                                                2004
actor_2_facebook_likes                                                     460
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 2480, dtype: object
color                                                                    Color
director_name                                                      Xavier Gens
num_critic_for_reviews                                                     193
duration                                                                    94
director_facebook_likes                                                     87
actor_3_facebook_likes                                                     280
actor_2_name                                                     Dougray Scott
actor_1_facebook_likes                                                     866
gross                                                              3.96875e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                  Henry Ian Cusick
movie_title                                                            Hitman 
num_voted_users                                                         140780
cast_total_facebook_likes                                                 2124
actor_3_name                                                    Ulrich Thomsen
facenumber_in_poster                                                         1
plot_keywords                hitman|impersonation|see through dress|topless...
movie_imdb_link              http://www.imdb.com/title/tt0465494/?ref_=fn_t...
num_user_for_reviews                                                       376
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                 2.4e+07
title_year                                                                2007
actor_2_facebook_likes                                                     794
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2481, dtype: object
color                                                                    Color
director_name                                                     Kasi Lemmons
num_critic_for_reviews                                                      40
duration                                                                    93
director_facebook_likes                                                    148
actor_3_facebook_likes                                                     170
actor_2_name                                                     Mary J. Blige
actor_1_facebook_likes                                                     549
gross                                                              7.01718e+06
genres                                              Drama|Family|Music|Musical
actor_1_name                                                   Jennifer Hudson
movie_title                                                    Black Nativity 
num_voted_users                                                           1633
cast_total_facebook_likes                                                 1373
actor_3_name                                                Vondie Curtis-Hall
facenumber_in_poster                                                         5
plot_keywords                based on stage musical|based on the bible|chri...
movie_imdb_link              http://www.imdb.com/title/tt1425922/?ref_=fn_t...
num_user_for_reviews                                                        17
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.75e+07
title_year                                                                2013
actor_2_facebook_likes                                                     269
imdb_score                                                                 4.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2482, dtype: object
color                                                                    Color
director_name                                                   Brian A Miller
num_critic_for_reviews                                                      46
duration                                                                    93
director_facebook_likes                                                     32
actor_3_facebook_likes                                                    1000
actor_2_name                                                           50 Cent
actor_1_facebook_likes                                                   13000
gross                                                                      NaN
genres                                                         Action|Thriller
actor_1_name                                                      Bruce Willis
movie_title                                                        The Prince 
num_voted_users                                                          13133
cast_total_facebook_likes                                                16735
actor_3_name                                                   Jessica Lowndes
facenumber_in_poster                                                         4
plot_keywords                             assassin|fight|mechanic|rescue|rival
movie_imdb_link              http://www.imdb.com/title/tt1085492/?ref_=fn_t...
num_user_for_reviews                                                       101
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.8e+07
title_year                                                                2014
actor_2_facebook_likes                                                    1000
imdb_score                                                                 4.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2483, dtype: object
color                                                                    Color
director_name                                                      Matt Dillon
num_critic_for_reviews                                                      38
duration                                                                   116
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      50
actor_2_name                                                     Shawn Andrews
actor_1_facebook_likes                                                     109
gross                                                                   325491
genres                                                    Crime|Drama|Thriller
actor_1_name                                                          Kirk Fox
movie_title                                                    City of Ghosts 
num_voted_users                                                           4387
cast_total_facebook_likes                                                  245
actor_3_name                                                      Rob Campbell
facenumber_in_poster                                                         0
plot_keywords                bag over head|buddhist temple|loss of friend|m...
movie_imdb_link              http://www.imdb.com/title/tt0164003/?ref_=fn_t...
num_user_for_reviews                                                        67
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.75e+07
title_year                                                                2002
actor_2_facebook_likes                                                      67
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       204
Name: 2484, dtype: object
color                                                                    Color
director_name                                               Alejandro Amenábar
num_critic_for_reviews                                                     239
duration                                                                   101
director_facebook_likes                                                    448
actor_3_facebook_likes                                                      83
actor_2_name                                                    Elaine Cassidy
actor_1_facebook_likes                                                     482
gross                                                              9.64718e+07
genres                                                 Fantasy|Horror|Thriller
actor_1_name                                                 Fionnula Flanagan
movie_title                                                        The Others 
num_voted_users                                                         268581
cast_total_facebook_likes                                                  956
actor_3_name                                                        Eric Sykes
facenumber_in_poster                                                         0
plot_keywords                curtain|haunting|mansion|mute|xeroderma pigmen...
movie_imdb_link              http://www.imdb.com/title/tt0230600/?ref_=fn_t...
num_user_for_reviews                                                      1109
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+07
title_year                                                                2001
actor_2_facebook_likes                                                     203
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     20000
Name: 2485, dtype: object
color                                                                    Color
director_name                                                    James Cameron
num_critic_for_reviews                                                     250
duration                                                                   154
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     604
actor_2_name                                                       Carrie Henn
actor_1_facebook_likes                                                    2000
gross                                                                 8.52e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                     Michael Biehn
movie_title                                                            Aliens 
num_voted_users                                                         488537
cast_total_facebook_likes                                                 4228
actor_3_name                                                 Jenette Goldstein
facenumber_in_poster                                                         1
plot_keywords                alien|human versus alien|monster|rescue missio...
movie_imdb_link              http://www.imdb.com/title/tt0090605/?ref_=fn_t...
num_user_for_reviews                                                      1076
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.85e+07
title_year                                                                1986
actor_2_facebook_likes                                                     626
imdb_score                                                                 8.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     18000
Name: 2486, dtype: object
color                                                                    Color
director_name                                                     George Cukor
num_critic_for_reviews                                                      82
duration                                                                   170
director_facebook_likes                                                    165
actor_3_facebook_likes                                                     244
actor_2_name                                                      Rex Harrison
actor_1_facebook_likes                                                     453
gross                                                                  7.2e+07
genres                                            Drama|Family|Musical|Romance
actor_1_name                                                      Jeremy Brett
movie_title                                                      My Fair Lady 
num_voted_users                                                          66959
cast_total_facebook_likes                                                 1164
actor_3_name                                                    Theodore Bikel
facenumber_in_poster                                                         1
plot_keywords                       colonel|flower girl|professor|street|wager
movie_imdb_link              http://www.imdb.com/title/tt0058385/?ref_=fn_t...
num_user_for_reviews                                                       258
language                                                               English
country                                                                    USA
content_rating                                                        Approved
budget                                                                 1.7e+07
title_year                                                                1964
actor_2_facebook_likes                                                     272
imdb_score                                                                 7.9
aspect_ratio                                                               2.2
movie_facebook_likes                                                         0
Name: 2487, dtype: object
color                                                                    Color
director_name                                                    Jim Gillespie
num_critic_for_reviews                                                     140
duration                                                                    99
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     681
actor_2_name                                             Sarah Michelle Gellar
actor_1_facebook_likes                                                   45000
gross                                                              7.22194e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                       Muse Watson
movie_title                                   I Know What You Did Last Summer 
num_voted_users                                                         105585
cast_total_facebook_likes                                                50284
actor_3_name                                                        Anne Heche
facenumber_in_poster                                                         1
plot_keywords                     beach|corpse|fourth of july|overalls|revenge
movie_imdb_link              http://www.imdb.com/title/tt0119345/?ref_=fn_t...
num_user_for_reviews                                                       419
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.7e+07
title_year                                                                1997
actor_2_facebook_likes                                                    4000
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2488, dtype: object
color                                                                    Color
director_name                                                  Luke Greenfield
num_critic_for_reviews                                                     129
duration                                                                   104
director_facebook_likes                                                     42
actor_3_facebook_likes                                                     613
actor_2_name                                                  Damon Wayans Jr.
actor_1_facebook_likes                                                     839
gross                                                              8.23896e+07
genres                                                                  Comedy
actor_1_name                                                        Rob Riggle
movie_title                                                     Let's Be Cops 
num_voted_users                                                         106820
cast_total_facebook_likes                                                 3627
actor_3_name                                                      James D'Arcy
facenumber_in_poster                                                         1
plot_keywords                friendship between men|impersonating a police ...
movie_imdb_link              http://www.imdb.com/title/tt1924435/?ref_=fn_t...
num_user_for_reviews                                                       147
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.7e+07
title_year                                                                2014
actor_2_facebook_likes                                                     756
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 2489, dtype: object
color                                                                    Color
director_name                                                  Alexander Payne
num_critic_for_reviews                                                     285
duration                                                                   126
director_facebook_likes                                                    729
actor_3_facebook_likes                                                     284
actor_2_name                                                 Patrick Gallagher
actor_1_facebook_likes                                                     912
gross                                                              7.15023e+07
genres                                          Adventure|Comedy|Drama|Romance
actor_1_name                                                   Virginia Madsen
movie_title                                                          Sideways 
num_voted_users                                                         149966
cast_total_facebook_likes                                                 2170
actor_3_name                                                       M.C. Gainey
facenumber_in_poster                                                         0
plot_keywords                             actor|california|teacher|wine|writer
movie_imdb_link              http://www.imdb.com/title/tt0375063/?ref_=fn_t...
num_user_for_reviews                                                       835
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2004
actor_2_facebook_likes                                                     306
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2490, dtype: object
color                                                                    Color
director_name                                                Jay Chandrasekhar
num_critic_for_reviews                                                      91
duration                                                                   110
director_facebook_likes                                                    422
actor_3_facebook_likes                                                     422
actor_2_name                                                      Owain Yeoman
actor_1_facebook_likes                                                   33000
gross                                                                1.918e+07
genres                                                                  Comedy
actor_1_name                                                        Chris Moss
movie_title                                                          Beerfest 
num_voted_users                                                          54710
cast_total_facebook_likes                                                35345
actor_3_name                                                 Jay Chandrasekhar
facenumber_in_poster                                                         2
plot_keywords                  beer|competition|germany|oktoberfest|prostitute
movie_imdb_link              http://www.imdb.com/title/tt0486551/?ref_=fn_t...
num_user_for_reviews                                                       177
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.75e+07
title_year                                                                2006
actor_2_facebook_likes                                                     459
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2491, dtype: object
color                                                                    Color
director_name                                                   John Carpenter
num_critic_for_reviews                                                     318
duration                                                                   101
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     598
actor_2_name                                                  Donald Pleasence
actor_1_facebook_likes                                                    2000
gross                                                                  4.7e+07
genres                                                         Horror|Thriller
actor_1_name                                                  Jamie Lee Curtis
movie_title                                                         Halloween 
num_voted_users                                                         157857
cast_total_facebook_likes                                                 4400
actor_3_name                                                        P.J. Soles
facenumber_in_poster                                                         0
plot_keywords                halloween|masked killer|michael myers|slasher|...
movie_imdb_link              http://www.imdb.com/title/tt0077651/?ref_=fn_t...
num_user_for_reviews                                                      1191
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  300000
title_year                                                                1978
actor_2_facebook_likes                                                     742
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 2492, dtype: object
color                                                          Black and White
director_name                                                      Yimou Zhang
num_critic_for_reviews                                                     283
duration                                                                    80
director_facebook_likes                                                    611
actor_3_facebook_likes                                                     576
actor_2_name                                               Tony Chiu Wai Leung
actor_1_facebook_likes                                                    5000
gross                                                                    84961
genres                                                Action|Adventure|History
actor_1_name                                                            Jet Li
movie_title                                                              Hero 
num_voted_users                                                         149414
cast_total_facebook_likes                                                 6229
actor_3_name                                                     Maggie Cheung
facenumber_in_poster                                                         4
plot_keywords                                   china|flying|king|palace|sword
movie_imdb_link              http://www.imdb.com/title/tt0299977/?ref_=fn_t...
num_user_for_reviews                                                       841
language                                                              Mandarin
country                                                                  China
content_rating                                                           PG-13
budget                                                                 3.1e+07
title_year                                                                2002
actor_2_facebook_likes                                                     643
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2493, dtype: object
color                                                                    Color
director_name                                                     John Hoffman
num_critic_for_reviews                                                      52
duration                                                                    87
director_facebook_likes                                                      9
actor_3_facebook_likes                                                     503
actor_2_name                                                     Molly Shannon
actor_1_facebook_likes                                                     818
gross                                                              3.75662e+07
genres                                      Comedy|Drama|Family|Fantasy|Sci-Fi
actor_1_name                                                        Liam Aiken
movie_title                                                         Good Boy! 
num_voted_users                                                           3407
cast_total_facebook_likes                                                 2164
actor_3_name                                                      Kevin Nealon
facenumber_in_poster                                                         1
plot_keywords                              dog|friend|neighborhood|planet|star
movie_imdb_link              http://www.imdb.com/title/tt0326900/?ref_=fn_t...
num_user_for_reviews                                                        48
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.7e+07
title_year                                                                2003
actor_2_facebook_likes                                                     636
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       309
Name: 2494, dtype: object
color                                                                    Color
director_name                                                   Malcolm D. Lee
num_critic_for_reviews                                                      56
duration                                                                   123
director_facebook_likes                                                     92
actor_3_facebook_likes                                                     849
actor_2_name                                                      Sanaa Lathan
actor_1_facebook_likes                                                    1000
gross                                                              7.04927e+07
genres                                                            Comedy|Drama
actor_1_name                                                  Harold Perrineau
movie_title                                              The Best Man Holiday 
num_voted_users                                                          11600
cast_total_facebook_likes                                                 5306
actor_3_name                                                     Eddie Cibrian
facenumber_in_poster                                                         5
plot_keywords                childbirth|christmas|gay slur|infidelity|punch...
movie_imdb_link              http://www.imdb.com/title/tt2083355/?ref_=fn_t...
num_user_for_reviews                                                        64
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.7e+07
title_year                                                                2013
actor_2_facebook_likes                                                     886
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      7000
Name: 2495, dtype: object
color                                                                    Color
director_name                                                     Joe Carnahan
num_critic_for_reviews                                                     186
duration                                                                   109
director_facebook_likes                                                    248
actor_3_facebook_likes                                                     968
actor_2_name                                                            Common
actor_1_facebook_likes                                                   16000
gross                                                               3.5635e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                     Ryan Reynolds
movie_title                                                      Smokin' Aces 
num_voted_users                                                         121058
cast_total_facebook_likes                                                19410
actor_3_name                                                        Alex Rocco
facenumber_in_poster                                                         0
plot_keywords                                  casino|fbi|mafia|mob hit|sniper
movie_imdb_link              http://www.imdb.com/title/tt0475394/?ref_=fn_t...
num_user_for_reviews                                                       482
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.7e+07
title_year                                                                2006
actor_2_facebook_likes                                                     988
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      3000
Name: 2496, dtype: object
color                                                                    Color
director_name                                                   Kevin Greutert
num_critic_for_reviews                                                     178
duration                                                                    90
director_facebook_likes                                                     52
actor_3_facebook_likes                                                     298
actor_2_name                                                       Gina Holden
actor_1_facebook_likes                                                     723
gross                                                              4.56709e+07
genres                                                          Horror|Mystery
actor_1_name                                                   Costas Mandylor
movie_title                                         Saw 3D: The Final Chapter 
num_voted_users                                                          67978
cast_total_facebook_likes                                                 1978
actor_3_name                                                     Betsy Russell
facenumber_in_poster                                                         0
plot_keywords                blood splatter|self help guru|sequel|support g...
movie_imdb_link              http://www.imdb.com/title/tt1477076/?ref_=fn_t...
num_user_for_reviews                                                       279
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   2e+07
title_year                                                                2010
actor_2_facebook_likes                                                     346
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     12000
Name: 2497, dtype: object
color                                                                    Color
director_name                                                  Michael Lehmann
num_critic_for_reviews                                                     140
duration                                                                    96
director_facebook_likes                                                     36
actor_3_facebook_likes                                                     486
actor_2_name                                                      Vinessa Shaw
actor_1_facebook_likes                                                    1000
gross                                                              3.79398e+07
genres                                                          Comedy|Romance
actor_1_name                                                Emmanuelle Vaugier
movie_title                                             40 Days and 40 Nights 
num_voted_users                                                          62272
cast_total_facebook_likes                                                 3294
actor_3_name                                                    Paulo Costanzo
facenumber_in_poster                                                         0
plot_keywords                female on male rape|lent|male rear nudity|mast...
movie_imdb_link              http://www.imdb.com/title/tt0243736/?ref_=fn_t...
num_user_for_reviews                                                       207
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.7e+07
title_year                                                                2002
actor_2_facebook_likes                                                     580
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                      2000
Name: 2498, dtype: object
color                                                                    Color
director_name                                                  Joseph Kosinski
num_critic_for_reviews                                                     469
duration                                                                   125
director_facebook_likes                                                    364
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Olivia Wilde
actor_1_facebook_likes                                                   12000
gross                                                              1.72052e+08
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                      Jeff Bridges
movie_title                                                      TRON: Legacy 
num_voted_users                                                         264186
cast_total_facebook_likes                                                25549
actor_3_name                                                       James Frain
facenumber_in_poster                                                         0
plot_keywords                       arcade|bridge|disappearance|escape|warrior
movie_imdb_link              http://www.imdb.com/title/tt1104001/?ref_=fn_t...
num_user_for_reviews                                                       665
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.7e+08
title_year                                                                2010
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     30000
Name: 2499, dtype: object
color                                                                    Color
director_name                                                 John Fortenberry
num_critic_for_reviews                                                      63
duration                                                                    82
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     281
actor_2_name                                                      Chris Kattan
actor_1_facebook_likes                                                    8000
gross                                                              3.03249e+07
genres                                                    Comedy|Music|Romance
actor_1_name                                                      Will Ferrell
movie_title                                            A Night at the Roxbury 
num_voted_users                                                          48458
cast_total_facebook_likes                                                 9271
actor_3_name                                                        Dan Hedaya
facenumber_in_poster                                                         2
plot_keywords                   1990s|bar|car accident|nightclub|whipped cream
movie_imdb_link              http://www.imdb.com/title/tt0120770/?ref_=fn_t...
num_user_for_reviews                                                       239
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+07
title_year                                                                1998
actor_2_facebook_likes                                                     357
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2500, dtype: object
color                                                                    Color
director_name                                                     Daniel Barnz
num_critic_for_reviews                                                     148
duration                                                                    86
director_facebook_likes                                                     33
actor_3_facebook_likes                                                     583
actor_2_name                                                   Mary-Kate Olsen
actor_1_facebook_likes                                                   15000
gross                                                              2.78549e+07
genres                                                   Drama|Fantasy|Romance
actor_1_name                                                     Alex Pettyfer
movie_title                                                           Beastly 
num_voted_users                                                          64190
cast_total_facebook_likes                                                17396
actor_3_name                                                      Erik Knudsen
facenumber_in_poster                                                         1
plot_keywords                               love|maid|newscaster|student|tutor
movie_imdb_link              http://www.imdb.com/title/tt1152398/?ref_=fn_t...
num_user_for_reviews                                                       129
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+07
title_year                                                                2011
actor_2_facebook_likes                                                     976
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 2501, dtype: object
color                                                                    Color
director_name                                                    Alexandre Aja
num_critic_for_reviews                                                     265
duration                                                                   108
director_facebook_likes                                                    192
actor_3_facebook_likes                                                     580
actor_2_name                                                     Greg Nicotero
actor_1_facebook_likes                                                    1000
gross                                                              4.17776e+07
genres                                                                  Horror
actor_1_name                                                          Dan Byrd
movie_title                                               The Hills Have Eyes 
num_voted_users                                                         129719
cast_total_facebook_likes                                                 4500
actor_3_name                                                      Vinessa Shaw
facenumber_in_poster                                                         0
plot_keywords                desert|horror movie remake|murder of family|ra...
movie_imdb_link              http://www.imdb.com/title/tt0454841/?ref_=fn_t...
num_user_for_reviews                                                       855
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2502, dtype: object
color                                                                    Color
director_name                                                      Sam Weisman
num_critic_for_reviews                                                      75
duration                                                                    98
director_facebook_likes                                                     39
actor_3_facebook_likes                                                     428
actor_2_name                                                        Jenna Boyd
actor_1_facebook_likes                                                     593
gross                                                              2.27345e+07
genres                                                                  Comedy
actor_1_name                                                    Kevin Grevioux
movie_title                                 Dickie Roberts: Former Child Star 
num_voted_users                                                          11815
cast_total_facebook_likes                                                 2713
actor_3_name                                                    Mary McCormack
facenumber_in_poster                                                         1
plot_keywords                dental braces|dental headgear|former child sta...
movie_imdb_link              http://www.imdb.com/title/tt0325258/?ref_=fn_t...
num_user_for_reviews                                                       117
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+07
title_year                                                                2003
actor_2_facebook_likes                                                     517
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       320
Name: 2503, dtype: object
color                                                                    Color
director_name                                                        Niki Caro
num_critic_for_reviews                                                     113
duration                                                                   129
director_facebook_likes                                                     51
actor_3_facebook_likes                                                      89
actor_2_name                                                 Valente Rodriguez
actor_1_facebook_likes                                                     427
gross                                                              4.44696e+07
genres                                                   Biography|Drama|Sport
actor_1_name                                                     Morgan Saylor
movie_title                                                    McFarland, USA 
num_voted_users                                                          23480
cast_total_facebook_likes                                                  952
actor_3_name                                                  Diana Maria Riva
facenumber_in_poster                                                         0
plot_keywords                coach|high school|place name in title|school|s...
movie_imdb_link              http://www.imdb.com/title/tt2097298/?ref_=fn_t...
num_user_for_reviews                                                        83
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.7e+07
title_year                                                                2015
actor_2_facebook_likes                                                     234
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     21000
Name: 2504, dtype: object
color                                                                    Color
director_name                                                       Erik White
num_critic_for_reviews                                                      62
duration                                                                    99
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     826
actor_2_name                                                    Loretta Devine
actor_1_facebook_likes                                                     918
gross                                                              2.47087e+07
genres                                                                  Comedy
actor_1_name                                                Brandon T. Jackson
movie_title                                                    Lottery Ticket 
num_voted_users                                                           7991
cast_total_facebook_likes                                                 4797
actor_3_name                                                         Shad Moss
facenumber_in_poster                                                         7
plot_keywords                block party|eurocopter ec120 colibri|fortune c...
movie_imdb_link              http://www.imdb.com/title/tt0979434/?ref_=fn_t...
num_user_for_reviews                                                        30
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                     912
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2505, dtype: object
color                                                                    Color
director_name                                                   Chris Robinson
num_critic_for_reviews                                                      54
duration                                                                   105
director_facebook_likes                                                     49
actor_3_facebook_likes                                                     104
actor_2_name                                                        Adam Boyer
actor_1_facebook_likes                                                     680
gross                                                              2.11601e+07
genres                                        Comedy|Crime|Drama|Music|Romance
actor_1_name                                                              T.I.
movie_title                                                               ATL 
num_voted_users                                                           8522
cast_total_facebook_likes                                                 1538
actor_3_name                                                            Malika
facenumber_in_poster                                                         0
plot_keywords                high school|rollerskating rink|spelman college...
movie_imdb_link              http://www.imdb.com/title/tt0466856/?ref_=fn_t...
num_user_for_reviews                                                        92
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2006
actor_2_facebook_likes                                                     503
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       874
Name: 2506, dtype: object
color                                                                    Color
director_name                                                      Jason Moore
num_critic_for_reviews                                                     223
duration                                                                   112
director_facebook_likes                                                     36
actor_3_facebook_likes                                                     746
actor_2_name                                                      Hana Mae Lee
actor_1_facebook_likes                                                   10000
gross                                                              6.49984e+07
genres                                                    Comedy|Music|Romance
actor_1_name                                                     Anna Kendrick
movie_title                                                     Pitch Perfect 
num_voted_users                                                         213898
cast_total_facebook_likes                                                12676
actor_3_name                                                         Ben Platt
facenumber_in_poster                                                         4
plot_keywords                a cappella|competition|dj|female protagonist|l...
movie_imdb_link              http://www.imdb.com/title/tt1981677/?ref_=fn_t...
num_user_for_reviews                                                       250
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+07
title_year                                                                2012
actor_2_facebook_likes                                                     751
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     36000
Name: 2507, dtype: object
color                                                                    Color
director_name                                                   Michael Tollin
num_critic_for_reviews                                                      50
duration                                                                   108
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     505
actor_2_name                                                     Brian Dennehy
actor_1_facebook_likes                                                     973
gross                                                              1.96939e+07
genres                                              Comedy|Drama|Romance|Sport
actor_1_name                                                       Marc Blucas
movie_title                                                      Summer Catch 
num_voted_users                                                          12993
cast_total_facebook_likes                                                 3344
actor_3_name                                                     Bruce Davison
facenumber_in_poster                                                         2
plot_keywords                    baseball|baseball player|night|rivalry|summer
movie_imdb_link              http://www.imdb.com/title/tt0234829/?ref_=fn_t...
num_user_for_reviews                                                       107
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 3.4e+07
title_year                                                                2001
actor_2_facebook_likes                                                     954
imdb_score                                                                 4.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       476
Name: 2508, dtype: object
color                                                                    Color
director_name                                                        Sam Raimi
num_critic_for_reviews                                                     125
duration                                                                   121
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     244
actor_2_name                                                     Bridget Fonda
actor_1_facebook_likes                                                     989
gross                                                              1.63118e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                         Gary Cole
movie_title                                                     A Simple Plan 
num_voted_users                                                          50656
cast_total_facebook_likes                                                 2365
actor_3_name                                                      Chelcie Ross
facenumber_in_poster                                                         1
plot_keywords                bag of money|found money|minnesota|screenplay ...
movie_imdb_link              http://www.imdb.com/title/tt0120324/?ref_=fn_t...
num_user_for_reviews                                                       416
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.7e+07
title_year                                                                1998
actor_2_facebook_likes                                                     888
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2509, dtype: object
color                                                                    Color
director_name                                                    Robert Harmon
num_critic_for_reviews                                                      81
duration                                                                    89
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     973
actor_2_name                                                       Ethan Embry
actor_1_facebook_likes                                                    1000
gross                                                              1.26936e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                   Alexander Gould
movie_title                                                              They 
num_voted_users                                                          10885
cast_total_facebook_likes                                                 4060
actor_3_name                                                       Marc Blucas
facenumber_in_poster                                                         0
plot_keywords                           darkness|friend|kiss|nightmare|suicide
movie_imdb_link              http://www.imdb.com/title/tt0283632/?ref_=fn_t...
num_user_for_reviews                                                       271
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+07
title_year                                                                2002
actor_2_facebook_likes                                                     982
imdb_score                                                                 4.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                       814
Name: 2510, dtype: object
color                                                                    Color
director_name                                                     Trent Cooper
num_critic_for_reviews                                                      37
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     323
actor_2_name                                               Larry the Cable Guy
actor_1_facebook_likes                                                     690
gross                                                              1.56557e+07
genres                                                          Comedy|Romance
actor_1_name                                                  Thomas F. Wilson
movie_title                             Larry the Cable Guy: Health Inspector 
num_voted_users                                                           9104
cast_total_facebook_likes                                                 2135
actor_3_name                                                       Megyn Price
facenumber_in_poster                                                         2
plot_keywords                diner|food poisoning|health inspector|restaura...
movie_imdb_link              http://www.imdb.com/title/tt0462395/?ref_=fn_t...
num_user_for_reviews                                                       112
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+06
title_year                                                                2006
actor_2_facebook_likes                                                     400
imdb_score                                                                 3.1
aspect_ratio                                                              1.33
movie_facebook_likes                                                       110
Name: 2511, dtype: object
color                                                                    Color
director_name                                                   Gary Halvorson
num_critic_for_reviews                                                      44
duration                                                                    73
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     142
actor_2_name                                                       Kevin Clash
actor_1_facebook_likes                                                    1000
gross                                                              1.16345e+07
genres                                 Adventure|Comedy|Family|Fantasy|Musical
actor_1_name                                                  Vanessa Williams
movie_title                              The Adventures of Elmo in Grouchland 
num_voted_users                                                           2045
cast_total_facebook_likes                                                 2020
actor_3_name                                                    Caroll Spinney
facenumber_in_poster                                                         0
plot_keywords                based on tv series|blanket|box office flop|res...
movie_imdb_link              http://www.imdb.com/title/tt0159421/?ref_=fn_t...
num_user_for_reviews                                                        37
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 1.7e+07
title_year                                                                1999
actor_2_facebook_likes                                                     436
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       339
Name: 2512, dtype: object
color                                                                    Color
director_name                                                    Antoine Fuqua
num_critic_for_reviews                                                     197
duration                                                                   132
director_facebook_likes                                                    847
actor_3_facebook_likes                                                     625
actor_2_name                                                       Lili Taylor
actor_1_facebook_likes                                                    3000
gross                                                              2.71544e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                       Don Cheadle
movie_title                                                 Brooklyn's Finest 
num_voted_users                                                          52852
cast_total_facebook_likes                                                 6317
actor_3_name                                                    Armando Riesco
facenumber_in_poster                                                         1
plot_keywords                catholic|corrupt cop|new york city|police dete...
movie_imdb_link              http://www.imdb.com/title/tt1210042/?ref_=fn_t...
num_user_for_reviews                                                       138
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.7e+07
title_year                                                                2009
actor_2_facebook_likes                                                     960
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      4000
Name: 2513, dtype: object
color                                                                    Color
director_name                                                     Nicholas Ray
num_critic_for_reviews                                                      15
duration                                                                   154
director_facebook_likes                                                    117
actor_3_facebook_likes                                                      86
actor_2_name                                                       David Niven
actor_1_facebook_likes                                                     715
gross                                                                      NaN
genres                                      Action|Adventure|Drama|History|War
actor_1_name                                                       Ava Gardner
movie_title                                                 55 Days at Peking 
num_voted_users                                                           4550
cast_total_facebook_likes                                                 1567
actor_3_name                                                      John Ireland
facenumber_in_poster                                                         3
plot_keywords                ambassador|boxer rebellion|china|colonialism|p...
movie_imdb_link              http://www.imdb.com/title/tt0056800/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                   9e+06
title_year                                                                1963
actor_2_facebook_likes                                                     490
imdb_score                                                                 6.8
aspect_ratio                                                               2.2
movie_facebook_likes                                                       419
Name: 2514, dtype: object
color                                                                    Color
director_name                                                     Fede Alvarez
num_critic_for_reviews                                                     543
duration                                                                    96
director_facebook_likes                                                    201
actor_3_facebook_likes                                                      58
actor_2_name                                               Elizabeth Blackmore
actor_1_facebook_likes                                                     394
gross                                                              5.42399e+07
genres                                                                  Horror
actor_1_name                                                  Lou Taylor Pucci
movie_title                                                         Evil Dead 
num_voted_users                                                         125016
cast_total_facebook_likes                                                  673
actor_3_name                                                   Ellen Sandweiss
facenumber_in_poster                                                         0
plot_keywords                book of the dead|demon|h.p. lovecraft|lesbian ...
movie_imdb_link              http://www.imdb.com/title/tt1288558/?ref_=fn_t...
num_user_for_reviews                                                       789
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.7e+07
title_year                                                                2013
actor_2_facebook_likes                                                     150
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     70000
Name: 2515, dtype: object
color                                                                    Color
director_name                                                    Donald Petrie
num_critic_for_reviews                                                     112
duration                                                                    98
director_facebook_likes                                                     80
actor_3_facebook_likes                                                     399
actor_2_name                                                  Harland Williams
actor_1_facebook_likes                                                     567
gross                                                              8.66232e+06
genres                                                          Comedy|Romance
actor_1_name                                                      Nia Vardalos
movie_title                                                  My Life in Ruins 
num_voted_users                                                          15033
cast_total_facebook_likes                                                 2016
actor_3_name                                                     Rachel Dratch
facenumber_in_poster                                                         1
plot_keywords                         greece|greek|tour bus|tour guide|tourist
movie_imdb_link              http://www.imdb.com/title/tt0865559/?ref_=fn_t...
num_user_for_reviews                                                        75
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+07
title_year                                                                2009
actor_2_facebook_likes                                                     503
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2516, dtype: object
color                                                                    Color
director_name                                                       Paul Weitz
num_critic_for_reviews                                                     153
duration                                                                   107
director_facebook_likes                                                     80
actor_3_facebook_likes                                                     841
actor_2_name                                                      Dennis Quaid
actor_1_facebook_likes                                                    2000
gross                                                              7.15672e+06
genres                                                            Comedy|Music
actor_1_name                                                        Judy Greer
movie_title                                                   American Dreamz 
num_voted_users                                                          22639
cast_total_facebook_likes                                                 5992
actor_3_name                                                       Chris Klein
facenumber_in_poster                                                         6
plot_keywords                chief of staff|contest|president|singing|terro...
movie_imdb_link              http://www.imdb.com/title/tt0465142/?ref_=fn_t...
num_user_for_reviews                                                       217
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.9e+07
title_year                                                                2006
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       300
Name: 2517, dtype: object
color                                                                    Color
director_name                                                  Sidney J. Furie
num_critic_for_reviews                                                      94
duration                                                                   134
director_facebook_likes                                                     22
actor_3_facebook_likes                                                     488
actor_2_name                                                     Margot Kidder
actor_1_facebook_likes                                                    1000
gross                                                               1.5681e+07
genres                                          Action|Adventure|Family|Sci-Fi
actor_1_name                                                     Jim Broadbent
movie_title                                  Superman IV: The Quest for Peace 
num_voted_users                                                          33570
cast_total_facebook_likes                                                 3007
actor_3_name                                                  William Hootkins
facenumber_in_poster                                                         6
plot_keywords                box office flop|dc comics|hair|nuclear disarma...
movie_imdb_link              http://www.imdb.com/title/tt0094074/?ref_=fn_t...
num_user_for_reviews                                                       259
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 1.7e+07
title_year                                                                1987
actor_2_facebook_likes                                                     593
imdb_score                                                                 3.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 2518, dtype: object
color                                                                    Color
director_name                                                 Ian Iqbal Rashid
num_critic_for_reviews                                                      62
duration                                                                    94
director_facebook_likes                                                      8
actor_3_facebook_likes                                                      66
actor_2_name                                                       Clé Bennett
actor_1_facebook_likes                                                     328
gross                                                              7.07046e+06
genres                                                                   Drama
actor_1_name                                                       DeRay Davis
movie_title                                                      How She Move 
num_voted_users                                                           4600
cast_total_facebook_likes                                                  760
actor_3_name                                                     Conrad Coates
facenumber_in_poster                                                         0
plot_keywords                dance|dance contest|loss of sister|step dancin...
movie_imdb_link              http://www.imdb.com/title/tt0770810/?ref_=fn_t...
num_user_for_reviews                                                        18
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2007
actor_2_facebook_likes                                                     122
imdb_score                                                                 3.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       238
Name: 2519, dtype: object
color                                                                    Color
director_name                                                     Wayne Kramer
num_critic_for_reviews                                                     157
duration                                                                   122
director_facebook_likes                                                     47
actor_3_facebook_likes                                                     834
actor_2_name                                                  Chazz Palminteri
actor_1_facebook_likes                                                   23000
gross                                                              6.85514e+06
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                       Paul Walker
movie_title                                                    Running Scared 
num_voted_users                                                          88590
cast_total_facebook_likes                                                27381
actor_3_name                                                   Ivana Milicevic
facenumber_in_poster                                                         2
plot_keywords                adult child friendship|corrupt cop|fistfight|g...
movie_imdb_link              http://www.imdb.com/title/tt0404390/?ref_=fn_t...
num_user_for_reviews                                                       419
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                 1.7e+07
title_year                                                                2006
actor_2_facebook_likes                                                     979
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2520, dtype: object
color                                                                    Color
director_name                                                 Rowdy Herrington
num_critic_for_reviews                                                      35
duration                                                                   128
director_facebook_likes                                                      9
actor_3_facebook_likes                                                     193
actor_2_name                                                    Jeremy Northam
actor_1_facebook_likes                                                     767
gross                                                              2.69407e+06
genres                                           Biography|Drama|Romance|Sport
actor_1_name                                                       Aidan Quinn
movie_title                                     Bobby Jones: Stroke of Genius 
num_voted_users                                                           3222
cast_total_facebook_likes                                                 1727
actor_3_name                                                      Paul Freeman
facenumber_in_poster                                                         3
plot_keywords                colon in title|competition|five word title|gol...
movie_imdb_link              http://www.imdb.com/title/tt0375104/?ref_=fn_t...
num_user_for_reviews                                                        64
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2004
actor_2_facebook_likes                                                     327
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       352
Name: 2521, dtype: object
color                                                                    Color
director_name                                                      Jim Goddard
num_critic_for_reviews                                                      21
duration                                                                    97
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     161
actor_2_name                                                      Paul Freeman
actor_1_facebook_likes                                                     400
gross                                                              2.31568e+06
genres                                           Adventure|Crime|Drama|Romance
actor_1_name                                                       Victor Wong
movie_title                                                 Shanghai Surprise 
num_voted_users                                                           4081
cast_total_facebook_likes                                                  805
actor_3_name                                                     Clyde Kusatsu
facenumber_in_poster                                                         0
plot_keywords                         china|missionary|opium|villain|year 1937
movie_imdb_link              http://www.imdb.com/title/tt0091934/?ref_=fn_t...
num_user_for_reviews                                                        28
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.7e+07
title_year                                                                1986
actor_2_facebook_likes                                                     193
imdb_score                                                                   3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       154
Name: 2522, dtype: object
color                                                                    Color
director_name                                                      Neil Burger
num_critic_for_reviews                                                     236
duration                                                                   110
director_facebook_likes                                                    168
actor_3_facebook_likes                                                      96
actor_2_name                                                      Eddie Marsan
actor_1_facebook_likes                                                    3000
gross                                                              3.98258e+07
genres                                          Drama|Mystery|Romance|Thriller
actor_1_name                                                      Rufus Sewell
movie_title                                                   The Illusionist 
num_voted_users                                                         295375
cast_total_facebook_likes                                                 4210
actor_3_name                                                         Jake Wood
facenumber_in_poster                                                         3
plot_keywords                duchess|illusionist|magician|prince|supernatur...
movie_imdb_link              http://www.imdb.com/title/tt0443543/?ref_=fn_t...
num_user_for_reviews                                                       645
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2006
actor_2_facebook_likes                                                     979
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     15000
Name: 2523, dtype: object
color                                                                    Color
director_name                                                    Noel Marshall
num_critic_for_reviews                                                      50
duration                                                                   102
director_facebook_likes                                                      4
actor_3_facebook_likes                                                      60
actor_2_name                                                  Melanie Griffith
actor_1_facebook_likes                                                     634
gross                                                                    2e+06
genres                                               Adventure|Horror|Thriller
actor_1_name                                                      Tippi Hedren
movie_title                                                              Roar 
num_voted_users                                                           1275
cast_total_facebook_likes                                                 1262
actor_3_name                                                       Zakes Mokae
facenumber_in_poster                                                         0
plot_keywords                chase|dead man|jungle|killing a lion|killing a...
movie_imdb_link              http://www.imdb.com/title/tt0083001/?ref_=fn_t...
num_user_for_reviews                                                        27
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.7e+07
title_year                                                                1981
actor_2_facebook_likes                                                     537
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2524, dtype: object
color                                                                    Color
director_name                                                  Joel Schumacher
num_critic_for_reviews                                                     106
duration                                                                    98
director_facebook_likes                                                    541
actor_3_facebook_likes                                                      71
actor_2_name                                                      David Murray
actor_1_facebook_likes                                                     214
gross                                                              1.56992e+06
genres                                          Biography|Crime|Drama|Thriller
actor_1_name                                                    Brenda Fricker
movie_title                                                   Veronica Guerin 
num_voted_users                                                          16234
cast_total_facebook_likes                                                  409
actor_3_name                                                   Gerard McSorley
facenumber_in_poster                                                         1
plot_keywords                      criminal|drug lord|gunshot|irish|journalist
movie_imdb_link              http://www.imdb.com/title/tt0312549/?ref_=fn_t...
num_user_for_reviews                                                       113
language                                                               English
country                                                                Ireland
content_rating                                                               R
budget                                                                 1.7e+07
title_year                                                                2003
actor_2_facebook_likes                                                      96
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2525, dtype: object
color                                                                    Color
director_name                                                Andrea Di Stefano
num_critic_for_reviews                                                     106
duration                                                                   120
director_facebook_likes                                                     30
actor_3_facebook_likes                                                      55
actor_2_name                                                      Brady Corbet
actor_1_facebook_likes                                                   14000
gross                                                                   106869
genres                                            Crime|Drama|Romance|Thriller
actor_1_name                                                   Josh Hutcherson
movie_title                                            Escobar: Paradise Lost 
num_voted_users                                                          13762
cast_total_facebook_likes                                                14492
actor_3_name                                                     Carlos Bardem
facenumber_in_poster                                                         1
plot_keywords                               colombia|dream|love|surfer|village
movie_imdb_link              http://www.imdb.com/title/tt2515030/?ref_=fn_t...
num_user_for_reviews                                                        39
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                 1.7e+07
title_year                                                                2014
actor_2_facebook_likes                                                     287
imdb_score                                                                 6.6
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 2526, dtype: object
color                                                                    Color
director_name                                                    Richard Kelly
num_critic_for_reviews                                                     173
duration                                                                   160
director_facebook_likes                                                    219
actor_3_facebook_likes                                                     215
actor_2_name                                                  Curtis Armstrong
actor_1_facebook_likes                                                    1000
gross                                                                   273420
genres                                          Comedy|Mystery|Sci-Fi|Thriller
actor_1_name                                                  Janeane Garofalo
movie_title                                                   Southland Tales 
num_voted_users                                                          32671
cast_total_facebook_likes                                                 2340
actor_3_name                                               Chris Andrew Ciulla
facenumber_in_poster                                                         6
plot_keywords                        amnesia|boxer|conspiracy|police|porn star
movie_imdb_link              http://www.imdb.com/title/tt0405336/?ref_=fn_t...
num_user_for_reviews                                                       238
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                 1.7e+07
title_year                                                                2006
actor_2_facebook_likes                                                     876
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2527, dtype: object
color                                                                    Color
director_name                                                Guillaume Ivernel
num_critic_for_reviews                                                      41
duration                                                                    80
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     168
actor_2_name                                                      Jess Harnell
actor_1_facebook_likes                                                     677
gross                                                                      NaN
genres                                      Adventure|Animation|Family|Fantasy
actor_1_name                                                       Rob Paulsen
movie_title                                                    Dragon Hunters 
num_voted_users                                                          10706
cast_total_facebook_likes                                                 1364
actor_3_name                                                       Mary Mouser
facenumber_in_poster                                                         0
plot_keywords                        cgi film|computer animation|dragon|hunter
movie_imdb_link              http://www.imdb.com/title/tt0944834/?ref_=fn_t...
num_user_for_reviews                                                        39
language                                                                French
country                                                                 France
content_rating                                                              PG
budget                                                                 1.1e+07
title_year                                                                2008
actor_2_facebook_likes                                                     262
imdb_score                                                                 6.6
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 2528, dtype: object
color                                                                    Color
director_name                                                      Jack Smight
num_critic_for_reviews                                                      41
duration                                                                    91
director_facebook_likes                                                     22
actor_3_facebook_likes                                                     255
actor_2_name                                               Jan-Michael Vincent
actor_1_facebook_likes                                                     669
gross                                                                      NaN
genres                                                                  Sci-Fi
actor_1_name                                                    George Peppard
movie_title                                                   Damnation Alley 
num_voted_users                                                           3701
cast_total_facebook_likes                                                 1769
actor_3_name                                                     Paul Winfield
facenumber_in_poster                                                         0
plot_keywords                  cockroach|desert|ghost town|giant spider|travel
movie_imdb_link              http://www.imdb.com/title/tt0075909/?ref_=fn_t...
num_user_for_reviews                                                        71
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.7e+07
title_year                                                                1977
actor_2_facebook_likes                                                     642
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       903
Name: 2529, dtype: object
color                                                                    Color
director_name                                                     Todd Lincoln
num_critic_for_reviews                                                     145
duration                                                                    83
director_facebook_likes                                                     57
actor_3_facebook_likes                                                      62
actor_2_name                                                        Rick Gomez
actor_1_facebook_likes                                                     465
gross                                                               4.9308e+06
genres                                                         Horror|Thriller
actor_1_name                                                    Julianna Guill
movie_title                                                    The Apparition 
num_voted_users                                                          16268
cast_total_facebook_likes                                                  730
actor_3_name                                                      Tim Williams
facenumber_in_poster                                                         1
plot_keywords                  e mail|evil spirit|experiment|fear|supernatural
movie_imdb_link              http://www.imdb.com/title/tt1433822/?ref_=fn_t...
num_user_for_reviews                                                       108
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+07
title_year                                                                2012
actor_2_facebook_likes                                                     152
imdb_score                                                                 4.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2530, dtype: object
color                                                                    Color
director_name                                                     Howard Zieff
num_critic_for_reviews                                                      31
duration                                                                   102
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     165
actor_2_name                                                  Jamie Lee Curtis
actor_1_facebook_likes                                                    3000
gross                                                              5.98472e+07
genres                                             Comedy|Drama|Family|Romance
actor_1_name                                                   Macaulay Culkin
movie_title                                                           My Girl 
num_voted_users                                                          55895
cast_total_facebook_likes                                                 5433
actor_3_name                                                     Griffin Dunne
facenumber_in_poster                                                         1
plot_keywords                         best friend|funeral|girl|overalls|summer
movie_imdb_link              http://www.imdb.com/title/tt0102492/?ref_=fn_t...
num_user_for_reviews                                                       115
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.65e+07
title_year                                                                1991
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2531, dtype: object
color                                                                    Color
director_name                                                 Steven Shainberg
num_critic_for_reviews                                                     105
duration                                                                   122
director_facebook_likes                                                     30
actor_3_facebook_likes                                                     260
actor_2_name                                                        Ty Burrell
actor_1_facebook_likes                                                   21000
gross                                                                   220914
genres                                                 Biography|Drama|Romance
actor_1_name                                                 Robert Downey Jr.
movie_title                         Fur: An Imaginary Portrait of Diane Arbus 
num_voted_users                                                          13239
cast_total_facebook_likes                                                25173
actor_3_name                                                     Matt Servitto
facenumber_in_poster                                                         2
plot_keywords                character name in title|diane arbus|male full ...
movie_imdb_link              http://www.imdb.com/title/tt0422295/?ref_=fn_t...
num_user_for_reviews                                                        97
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.68e+07
title_year                                                                2006
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2532, dtype: object
color                                                                    Color
director_name                                                      Neil Burger
num_critic_for_reviews                                                     236
duration                                                                   110
director_facebook_likes                                                    168
actor_3_facebook_likes                                                      96
actor_2_name                                                      Eddie Marsan
actor_1_facebook_likes                                                    3000
gross                                                              3.98258e+07
genres                                          Drama|Mystery|Romance|Thriller
actor_1_name                                                      Rufus Sewell
movie_title                                                   The Illusionist 
num_voted_users                                                         295375
cast_total_facebook_likes                                                 4210
actor_3_name                                                         Jake Wood
facenumber_in_poster                                                         3
plot_keywords                duchess|illusionist|magician|prince|supernatur...
movie_imdb_link              http://www.imdb.com/title/tt0443543/?ref_=fn_t...
num_user_for_reviews                                                       645
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2006
actor_2_facebook_likes                                                     979
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     15000
Name: 2533, dtype: object
color                                                                    Color
director_name                                                     Oliver Stone
num_critic_for_reviews                                                     114
duration                                                                   126
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     168
actor_2_name                                                      Tamara Tunie
actor_1_facebook_likes                                                     826
gross                                                              4.38481e+07
genres                                                             Crime|Drama
actor_1_name                                                      Hal Holbrook
movie_title                                                       Wall Street 
num_voted_users                                                         119150
cast_total_facebook_likes                                                 1607
actor_3_name                                                       James Karen
facenumber_in_poster                                                         2
plot_keywords                1980s|argument|critique of capitalism|f word|f...
movie_imdb_link              http://www.imdb.com/title/tt0094291/?ref_=fn_t...
num_user_for_reviews                                                       219
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1987
actor_2_facebook_likes                                                     508
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2534, dtype: object
color                                                                    Color
director_name                                                          Ang Lee
num_critic_for_reviews                                                      69
duration                                                                   136
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Kate Winslet
actor_1_facebook_likes                                                   25000
gross                                                                 4.27e+07
genres                                                           Drama|Romance
actor_1_name                                                      Alan Rickman
movie_title                                             Sense and Sensibility 
num_voted_users                                                          78392
cast_total_facebook_likes                                                41059
actor_3_name                                                     Tom Wilkinson
facenumber_in_poster                                                         2
plot_keywords                1810s|female protagonist|horseback riding|inhe...
movie_imdb_link              http://www.imdb.com/title/tt0114388/?ref_=fn_t...
num_user_for_reviews                                                       196
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.65e+07
title_year                                                                1995
actor_2_facebook_likes                                                   14000
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2535, dtype: object
color                                                                    Color
director_name                                                   Julian Jarrold
num_critic_for_reviews                                                     150
duration                                                                   120
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     281
actor_2_name                                                     Julie Walters
actor_1_facebook_likes                                                   11000
gross                                                              1.86639e+07
genres                                                 Biography|Drama|Romance
actor_1_name                                                     Anne Hathaway
movie_title                                                     Becoming Jane 
num_voted_users                                                          46204
cast_total_facebook_likes                                                12554
actor_3_name                                                      Laurence Fox
facenumber_in_poster                                                         1
plot_keywords                     country estate|jane austen|lady|love|writing
movie_imdb_link              http://www.imdb.com/title/tt0416508/?ref_=fn_t...
num_user_for_reviews                                                       151
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                1.65e+07
title_year                                                                2007
actor_2_facebook_likes                                                     838
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2536, dtype: object
color                                                                    Color
director_name                                                     Joe Nussbaum
num_critic_for_reviews                                                      72
duration                                                                   108
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     433
actor_2_name                                                         Matt Long
actor_1_facebook_likes                                                     714
gross                                                              1.17021e+07
genres                                                          Comedy|Romance
actor_1_name                                                      Danny Strong
movie_title                                                      Sydney White 
num_voted_users                                                          37700
cast_total_facebook_likes                                                 2785
actor_3_name                                                       Samm Levine
facenumber_in_poster                                                         2
plot_keywords                college|college girl|female protagonist|sorori...
movie_imdb_link              http://www.imdb.com/title/tt0815244/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.65e+07
title_year                                                                2007
actor_2_facebook_likes                                                     701
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2537, dtype: object
color                                                                    Color
director_name                                                   Vadim Perelman
num_critic_for_reviews                                                     158
duration                                                                   126
director_facebook_likes                                                     26
actor_3_facebook_likes                                                     385
actor_2_name                                                       Kim Dickens
actor_1_facebook_likes                                                     638
gross                                                              1.30055e+07
genres                                                                   Drama
actor_1_name                                                    Frances Fisher
movie_title                                             House of Sand and Fog 
num_voted_users                                                          56665
cast_total_facebook_likes                                                 2282
actor_3_name                                                        Ron Eldard
facenumber_in_poster                                                         0
plot_keywords                              auction|home|house|iranian|marriage
movie_imdb_link              http://www.imdb.com/title/tt0315983/?ref_=fn_t...
num_user_for_reviews                                                       469
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2003
actor_2_facebook_likes                                                     624
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2538, dtype: object
color                                                                    Color
director_name                                                       Peter Weir
num_critic_for_reviews                                                      96
duration                                                                   128
director_facebook_likes                                                    608
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Josh Charles
actor_1_facebook_likes                                                   49000
gross                                                              9.58601e+07
genres                                                            Comedy|Drama
actor_1_name                                                    Robin Williams
movie_title                                                Dead Poets Society 
num_voted_users                                                         277451
cast_total_facebook_likes                                                51609
actor_3_name                                                    Kurtwood Smith
facenumber_in_poster                                                         0
plot_keywords                 education|english teacher|poet|professor|student
movie_imdb_link              http://www.imdb.com/title/tt0097165/?ref_=fn_t...
num_user_for_reviews                                                       491
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.64e+07
title_year                                                                1989
actor_2_facebook_likes                                                    1000
imdb_score                                                                   8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     23000
Name: 2539, dtype: object
color                                                                    Color
director_name                                                   Peter Farrelly
num_critic_for_reviews                                                      84
duration                                                                   113
director_facebook_likes                                                    137
actor_3_facebook_likes                                                     481
actor_2_name                                                        Mike Starr
actor_1_facebook_likes                                                     879
gross                                                              1.27175e+08
genres                                                                  Comedy
actor_1_name                                                      Lauren Holly
movie_title                                                     Dumb & Dumber 
num_voted_users                                                         288451
cast_total_facebook_likes                                                 2985
actor_3_name                                                         Teri Garr
facenumber_in_poster                                                         2
plot_keywords                briefcase full of money|character repeating so...
movie_imdb_link              http://www.imdb.com/title/tt0109686/?ref_=fn_t...
num_user_for_reviews                                                       438
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                1994
actor_2_facebook_likes                                                     854
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2540, dtype: object
color                                                                    Color
director_name                                                       Rob Reiner
num_critic_for_reviews                                                     114
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      62
actor_2_name                                                   Gretchen Palmer
actor_1_facebook_likes                                                     227
gross                                                              9.28236e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                       Bruno Kirby
movie_title                                           When Harry Met Sally... 
num_voted_users                                                         149108
cast_total_facebook_likes                                                  485
actor_3_name                                                 Harley Jane Kozak
facenumber_in_poster                                                         0
plot_keywords                friendship|love|male female friendship|new yor...
movie_imdb_link              http://www.imdb.com/title/tt0098635/?ref_=fn_t...
num_user_for_reviews                                                       273
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                1989
actor_2_facebook_likes                                                      73
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2541, dtype: object
color                                                                    Color
director_name                                                     Sidney Lumet
num_critic_for_reviews                                                      79
duration                                                                   129
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     359
actor_2_name                                                       James Mason
actor_1_facebook_likes                                                     844
gross                                                                  5.4e+07
genres                                                                   Drama
actor_1_name                                                Charlotte Rampling
movie_title                                                       The Verdict 
num_voted_users                                                          26310
cast_total_facebook_likes                                                 2330
actor_3_name                                                       Jack Warden
facenumber_in_poster                                                         0
plot_keywords                    archdiocese|court|hospital|lawyer|malpractice
movie_imdb_link              http://www.imdb.com/title/tt0084855/?ref_=fn_t...
num_user_for_reviews                                                       154
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                1982
actor_2_facebook_likes                                                     617
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2542, dtype: object
color                                                                    Color
director_name                                                    Todd Phillips
num_critic_for_reviews                                                     103
duration                                                                    94
director_facebook_likes                                                    480
actor_3_facebook_likes                                                     486
actor_2_name                                                  Rachel Blanchard
actor_1_facebook_likes                                                    1000
gross                                                              6.85256e+07
genres                                                                  Comedy
actor_1_name                                                      Ethan Suplee
movie_title                                                         Road Trip 
num_voted_users                                                         132963
cast_total_facebook_likes                                                 3889
actor_3_name                                                    Paulo Costanzo
facenumber_in_poster                                                         5
plot_keywords                   blonde|college|friend|highway travel|road trip
movie_imdb_link              http://www.imdb.com/title/tt0215129/?ref_=fn_t...
num_user_for_reviews                                                       302
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.56e+07
title_year                                                                2000
actor_2_facebook_likes                                                     490
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2543, dtype: object
color                                                                    Color
director_name                                                    Brian Robbins
num_critic_for_reviews                                                      67
duration                                                                   106
director_facebook_likes                                                     48
actor_3_facebook_likes                                                      35
actor_2_name                                                        Ron Lester
actor_1_facebook_likes                                                   23000
gross                                                              5.28856e+07
genres                                              Comedy|Drama|Romance|Sport
actor_1_name                                                       Paul Walker
movie_title                                                     Varsity Blues 
num_voted_users                                                          35312
cast_total_facebook_likes                                                23369
actor_3_name                                                      Mark Walters
facenumber_in_poster                                                         0
plot_keywords                        coach|coyote|popularity|quarterback|texas
movie_imdb_link              http://www.imdb.com/title/tt0139699/?ref_=fn_t...
num_user_for_reviews                                                       267
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                1999
actor_2_facebook_likes                                                     255
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2544, dtype: object
color                                                          Black and White
director_name                                              Michel Hazanavicius
num_critic_for_reviews                                                     576
duration                                                                   100
director_facebook_likes                                                    405
actor_3_facebook_likes                                                     628
actor_2_name                                                         Ed Lauter
actor_1_facebook_likes                                                     996
gross                                                              4.46671e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Bérénice Bejo
movie_title                                                        The Artist 
num_voted_users                                                         190030
cast_total_facebook_likes                                                 4606
actor_3_name                                                        Beth Grant
facenumber_in_poster                                                         0
plot_keywords                1920s|jack russell terrier|modern silent movie...
movie_imdb_link              http://www.imdb.com/title/tt1655442/?ref_=fn_t...
num_user_for_reviews                                                       583
language                                                               English
country                                                                 France
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                     897
imdb_score                                                                   8
aspect_ratio                                                              1.33
movie_facebook_likes                                                     30000
Name: 2545, dtype: object
color                                                                    Color
director_name                                                   David S. Goyer
num_critic_for_reviews                                                     178
duration                                                                    89
director_facebook_likes                                                    687
actor_3_facebook_likes                                                     389
actor_2_name                                                   Atticus Shaffer
actor_1_facebook_likes                                                   10000
gross                                                              4.26382e+07
genres                                   Drama|Fantasy|Horror|Mystery|Thriller
actor_1_name                                                       Gary Oldman
movie_title                                                        The Unborn 
num_voted_users                                                          42182
cast_total_facebook_likes                                                12183
actor_3_name                                                  Rachel Brosnahan
facenumber_in_poster                                                         1
plot_keywords                 babysitting|experiment|nightmare|possession|twin
movie_imdb_link              http://www.imdb.com/title/tt1139668/?ref_=fn_t...
num_user_for_reviews                                                       230
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2009
actor_2_facebook_likes                                                     787
imdb_score                                                                 4.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2546, dtype: object
color                                                                    Color
director_name                                                     Wes Anderson
num_critic_for_reviews                                                     487
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     559
actor_2_name                                                       Bill Murray
actor_1_facebook_likes                                                   13000
gross                                                              4.55071e+07
genres                                          Adventure|Comedy|Drama|Romance
actor_1_name                                                      Bruce Willis
movie_title                                                  Moonrise Kingdom 
num_voted_users                                                         237848
cast_total_facebook_likes                                                27911
actor_3_name                                                       Bob Balaban
facenumber_in_poster                                                         2
plot_keywords                1960s|boy scouts|boy scouts camp|coming of age...
movie_imdb_link              http://www.imdb.com/title/tt1748122/?ref_=fn_t...
num_user_for_reviews                                                       377
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2012
actor_2_facebook_likes                                                   13000
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     71000
Name: 2547, dtype: object
color                                                                    Color
director_name                                               Jonathan Liebesman
num_critic_for_reviews                                                     196
duration                                                                    83
director_facebook_likes                                                    473
actor_3_facebook_likes                                                     597
actor_2_name                                                  Jordana Brewster
actor_1_facebook_likes                                                   20000
gross                                                               3.9511e+07
genres                                                                  Horror
actor_1_name                                                        Matt Bomer
movie_title                        The Texas Chainsaw Massacre: The Beginning 
num_voted_users                                                          56269
cast_total_facebook_likes                                                26402
actor_3_name                                                        Lew Temple
facenumber_in_poster                                                         0
plot_keywords                cannibal|car accident|leatherface|psychopath|s...
movie_imdb_link              http://www.imdb.com/title/tt0420294/?ref_=fn_t...
num_user_for_reviews                                                       366
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                2006
actor_2_facebook_likes                                                    4000
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2548, dtype: object
color                                                                    Color
director_name                                                  Cyrus Nowrasteh
num_critic_for_reviews                                                      24
duration                                                                   111
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     107
actor_2_name                                                     Vincent Walsh
actor_1_facebook_likes                                                     241
gross                                                              6.46258e+06
genres                                                                   Drama
actor_1_name                                                     Clive Russell
movie_title                                                 The Young Messiah 
num_voted_users                                                           1449
cast_total_facebook_likes                                                  824
actor_3_name                                                      Finn Ireland
facenumber_in_poster                                                         0
plot_keywords                                                   based on novel
movie_imdb_link              http://www.imdb.com/title/tt1002563/?ref_=fn_t...
num_user_for_reviews                                                        30
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.85e+07
title_year                                                                2016
actor_2_facebook_likes                                                     118
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2549, dtype: object
color                                                                    Color
director_name                                              Perry Andelin Blake
num_critic_for_reviews                                                      56
duration                                                                    80
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     499
actor_2_name                                                    Kenan Thompson
actor_1_facebook_likes                                                     911
gross                                                              4.03635e+07
genres                                                           Comedy|Family
actor_1_name                                                 Jennifer Esposito
movie_title                                            The Master of Disguise 
num_voted_users                                                          18254
cast_total_facebook_likes                                                 3058
actor_3_name                                                      James Brolin
facenumber_in_poster                                                         2
plot_keywords                disguise|mask|master of disguise|restaurant|wa...
movie_imdb_link              http://www.imdb.com/title/tt0295427/?ref_=fn_t...
num_user_for_reviews                                                       307
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.6e+07
title_year                                                                2002
actor_2_facebook_likes                                                     521
imdb_score                                                                 3.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 2550, dtype: object
color                                                                    Color
director_name                                               Guillermo del Toro
num_critic_for_reviews                                                     406
duration                                                                   112
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     250
actor_2_name                                                     Maribel Verdú
actor_1_facebook_likes                                                     634
gross                                                              3.76231e+07
genres                                                       Drama|Fantasy|War
actor_1_name                                                     Ivana Baquero
movie_title                                                   Pan's Labyrinth 
num_voted_users                                                         467234
cast_total_facebook_likes                                                 1322
actor_3_name                                                       Sergi López
facenumber_in_poster                                                         0
plot_keywords                             fairy|fairy tale|faun|princess|spain
movie_imdb_link              http://www.imdb.com/title/tt0457430/?ref_=fn_t...
num_user_for_reviews                                                      1083
language                                                               Spanish
country                                                                  Spain
content_rating                                                               R
budget                                                                1.35e+07
title_year                                                                2006
actor_2_facebook_likes                                                     269
imdb_score                                                                 8.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     27000
Name: 2551, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                       3
duration                                                                    60
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     762
actor_2_name                                                       Jessika Van
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                          Drama|Fantasy|Mystery|Thriller
actor_1_name                                                     Joel Courtney
movie_title                                        The Messengers             
num_voted_users                                                           7210
cast_total_facebook_likes                                                 4561
actor_3_name                                                       Riley Smith
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3513704/?ref_=fn_t...
num_user_for_reviews                                                        57
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     921
imdb_score                                                                 6.6
aspect_ratio                                                                16
movie_facebook_likes                                                         0
Name: 2552, dtype: object
color                                                                    Color
director_name                                                   John Whitesell
num_critic_for_reviews                                                      51
duration                                                                    94
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     635
actor_2_name                                                    Angus T. Jones
actor_1_facebook_likes                                                    1000
gross                                                              3.33575e+07
genres                                              Action|Comedy|Crime|Family
actor_1_name                                                       Leslie Bibb
movie_title                                                      See Spot Run 
num_voted_users                                                           7392
cast_total_facebook_likes                                                 4194
actor_3_name                                                      Paul Sorvino
facenumber_in_poster                                                         0
plot_keywords                           boy|fbi|mailman|van|witness protection
movie_imdb_link              http://www.imdb.com/title/tt0250720/?ref_=fn_t...
num_user_for_reviews                                                        53
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 3.5e+07
title_year                                                                2001
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       393
Name: 2553, dtype: object
color                                                          Black and White
director_name                                                   John Singleton
num_critic_for_reviews                                                      41
duration                                                                   130
director_facebook_likes                                                    309
actor_3_facebook_likes                                                     522
actor_2_name                                                        Snoop Dogg
actor_1_facebook_likes                                                     939
gross                                                              2.87346e+07
genres                                            Crime|Drama|Romance|Thriller
actor_1_name                                                          Mo'Nique
movie_title                                                          Baby Boy 
num_voted_users                                                           9566
cast_total_facebook_likes                                                 3107
actor_3_name                                                    Angell Conwell
facenumber_in_poster                                                         2
plot_keywords                cartoon on tv|family relationships|physical ab...
movie_imdb_link              http://www.imdb.com/title/tt0255819/?ref_=fn_t...
num_user_for_reviews                                                        81
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                2001
actor_2_facebook_likes                                                     881
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 2554, dtype: object
color                                                                    Color
director_name                                        Christian E. Christiansen
num_critic_for_reviews                                                     138
duration                                                                    91
director_facebook_likes                                                     26
actor_3_facebook_likes                                                     638
actor_2_name                                                    Danneel Ackles
actor_1_facebook_likes                                                    3000
gross                                                              3.73001e+07
genres                                                   Drama|Horror|Thriller
actor_1_name                                                  Leighton Meester
movie_title                                                      The Roommate 
num_voted_users                                                          29147
cast_total_facebook_likes                                                 5349
actor_3_name                                                    Frances Fisher
facenumber_in_poster                                                         1
plot_keywords                animal abuse(non graphic)|cat killer|college|d...
movie_imdb_link              http://www.imdb.com/title/tt1265990/?ref_=fn_t...
num_user_for_reviews                                                       115
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2011
actor_2_facebook_likes                                                    1000
imdb_score                                                                 4.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2555, dtype: object
color                                                                    Color
director_name                                                    Dennie Gordon
num_critic_for_reviews                                                      78
duration                                                                    91
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     459
actor_2_name                                                 Erik Per Sullivan
actor_1_facebook_likes                                                     861
gross                                                              2.70877e+07
genres                                                  Adventure|Comedy|Drama
actor_1_name                                                   Brittany Daniel
movie_title                                                          Joe Dirt 
num_voted_users                                                          41664
cast_total_facebook_likes                                                 2543
actor_3_name                                                         Fred Ward
facenumber_in_poster                                                         0
plot_keywords                first part|grand canyon|highway travel|indian|...
movie_imdb_link              http://www.imdb.com/title/tt0245686/?ref_=fn_t...
num_user_for_reviews                                                       205
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.77e+07
title_year                                                                2001
actor_2_facebook_likes                                                     593
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2556, dtype: object
color                                                                    Color
director_name                                                  Sheldon Lettich
num_critic_for_reviews                                                      40
duration                                                                   110
director_facebook_likes                                                     23
actor_3_facebook_likes                                                      51
actor_2_name                                                       Alonna Shaw
actor_1_facebook_likes                                                     633
gross                                                              3.01027e+07
genres                                                            Action|Crime
actor_1_name                                                        Bolo Yeung
movie_title                                                     Double Impact 
num_voted_users                                                          28736
cast_total_facebook_likes                                                  874
actor_3_name                                                       Kamel Krifa
facenumber_in_poster                                                         2
plot_keywords                               boat|hong kong|murder|tunnel|twins
movie_imdb_link              http://www.imdb.com/title/tt0101764/?ref_=fn_t...
num_user_for_reviews                                                        72
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1991
actor_2_facebook_likes                                                      67
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2557, dtype: object
color                                                                    Color
director_name                                                     Edgar Wright
num_critic_for_reviews                                                     285
duration                                                                   121
director_facebook_likes                                                   1000
actor_3_facebook_likes                                                     108
actor_2_name                                                       Joe Cornish
actor_1_facebook_likes                                                     175
gross                                                              2.36188e+07
genres                                                   Action|Comedy|Mystery
actor_1_name                                                       Bill Bailey
movie_title                                                          Hot Fuzz 
num_voted_users                                                         352695
cast_total_facebook_likes                                                  485
actor_3_name                                                   Billie Whitelaw
facenumber_in_poster                                                         1
plot_keywords                accident|conspiracy|police|police officer|village
movie_imdb_link              http://www.imdb.com/title/tt0425112/?ref_=fn_t...
num_user_for_reviews                                                       687
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2007
actor_2_facebook_likes                                                     115
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     17000
Name: 2558, dtype: object
color                                                                    Color
director_name                                                    Diane English
num_critic_for_reviews                                                     124
duration                                                                   114
director_facebook_likes                                                     15
actor_3_facebook_likes                                                     650
actor_2_name                                                        Debi Mazar
actor_1_facebook_likes                                                     851
gross                                                              2.68967e+07
genres                                                            Comedy|Drama
actor_1_name                                                Jada Pinkett Smith
movie_title                                                         The Women 
num_voted_users                                                          16582
cast_total_facebook_likes                                                 3485
actor_3_name                                                     Debra Messing
facenumber_in_poster                                                         4
plot_keywords                    beauty salon|divorce|fashion|new york|perfume
movie_imdb_link              http://www.imdb.com/title/tt0430770/?ref_=fn_t...
num_user_for_reviews                                                       125
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.65e+07
title_year                                                                2008
actor_2_facebook_likes                                                     680
imdb_score                                                                 4.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2559, dtype: object
color                                                                    Color
director_name                                                      Woody Allen
num_critic_for_reviews                                                     275
duration                                                                    96
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     252
actor_2_name                                                        Kevin Dunn
actor_1_facebook_likes                                                   19000
gross                                                              2.32136e+07
genres                                                           Drama|Romance
actor_1_name                                                Scarlett Johansson
movie_title                                          Vicky Cristina Barcelona 
num_voted_users                                                         198111
cast_total_facebook_likes                                                19894
actor_3_name                                            Christopher Evan Welch
facenumber_in_poster                                                         0
plot_keywords                                    art|artist|painter|sex|summer
movie_imdb_link              http://www.imdb.com/title/tt0497465/?ref_=fn_t...
num_user_for_reviews                                                       365
language                                                               English
country                                                                  Spain
content_rating                                                           PG-13
budget                                                                1.55e+07
title_year                                                                2008
actor_2_facebook_likes                                                     581
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 2560, dtype: object
color                                                                    Color
director_name                                                     Peter Flinth
num_critic_for_reviews                                                      34
duration                                                                   270
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     292
actor_2_name                                                   Michael Nyqvist
actor_1_facebook_likes                                                     908
gross                                                                      NaN
genres                                      Action|Adventure|Drama|Romance|War
actor_1_name                                                  Gustaf Skarsgård
movie_title                                           Arn: The Knight Templar 
num_voted_users                                                          18041
cast_total_facebook_likes                                                 2762
actor_3_name                                                     Vincent Perez
facenumber_in_poster                                                         1
plot_keywords                first part|holy land|knight templar|monastery|...
movie_imdb_link              http://www.imdb.com/title/tt0837106/?ref_=fn_t...
num_user_for_reviews                                                        54
language                                                               Swedish
country                                                                 Sweden
content_rating                                                             NaN
budget                                                                 2.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     690
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2561, dtype: object
color                                                                    Color
director_name                                                        Jon Lucas
num_critic_for_reviews                                                      81
duration                                                                   100
director_facebook_likes                                                     24
actor_3_facebook_likes                                                     851
actor_2_name                                                     Jay Hernandez
actor_1_facebook_likes                                                   15000
gross                                                              5.54613e+07
genres                                                                  Comedy
actor_1_name                                                        Mila Kunis
movie_title                                                          Bad Moms 
num_voted_users                                                           4654
cast_total_facebook_likes                                                18786
actor_3_name                                                Jada Pinkett Smith
facenumber_in_poster                                                         9
plot_keywords                lesbian kiss|mom|pta|reference to mad max|scen...
movie_imdb_link              http://www.imdb.com/title/tt4651520/?ref_=fn_t...
num_user_for_reviews                                                        46
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   2e+07
title_year                                                                2016
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.7
aspect_ratio                                                               NaN
movie_facebook_likes                                                     18000
Name: 2562, dtype: object
color                                                                    Color
director_name                                                    Robert Iscove
num_critic_for_reviews                                                      67
duration                                                                    94
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      95
actor_2_name                                                     Amanda Detmer
actor_1_facebook_likes                                                    3000
gross                                                              2.06274e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                   Alyson Hannigan
movie_title                                                    Boys and Girls 
num_voted_users                                                          13661
cast_total_facebook_likes                                                 3451
actor_3_name                                                  Tsianina Joelson
facenumber_in_poster                                                         3
plot_keywords                best friend|break up|friendship|graduation|mal...
movie_imdb_link              http://www.imdb.com/title/tt0204175/?ref_=fn_t...
num_user_for_reviews                                                       134
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2000
actor_2_facebook_likes                                                     240
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       487
Name: 2563, dtype: object
color                                                                    Color
director_name                                                  Peter Kosminsky
num_critic_for_reviews                                                     103
duration                                                                   109
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     450
actor_2_name                                                       Cole Hauser
actor_1_facebook_likes                                                     835
gross                                                              1.63461e+07
genres                                                                   Drama
actor_1_name                                                     Patrick Fugit
movie_title                                                    White Oleander 
num_voted_users                                                          25549
cast_total_facebook_likes                                                 2572
actor_3_name                                                       Marc Donato
facenumber_in_poster                                                         0
plot_keywords                      california|foster home|love|oleander|prison
movie_imdb_link              http://www.imdb.com/title/tt0283139/?ref_=fn_t...
num_user_for_reviews                                                       171
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2002
actor_2_facebook_likes                                                     787
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2564, dtype: object
color                                                                    Color
director_name                                                     Karyn Kusama
num_critic_for_reviews                                                     300
duration                                                                   107
director_facebook_likes                                                     45
actor_3_facebook_likes                                                     271
actor_2_name                                                       Amy Sedaris
actor_1_facebook_likes                                                   24000
gross                                                              1.62048e+07
genres                                                   Comedy|Fantasy|Horror
actor_1_name                                                      J.K. Simmons
movie_title                                                   Jennifer's Body 
num_voted_users                                                          92712
cast_total_facebook_likes                                                24805
actor_3_name                                                 Cynthia Stevenson
facenumber_in_poster                                                         1
plot_keywords                cannibalism|cheerleader|condom|hook for hand|s...
movie_imdb_link              http://www.imdb.com/title/tt1131734/?ref_=fn_t...
num_user_for_reviews                                                       294
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                2009
actor_2_facebook_likes                                                     396
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                      6000
Name: 2565, dtype: object
color                                                                    Color
director_name                                                       Nick Gomez
num_critic_for_reviews                                                      84
duration                                                                    96
director_facebook_likes                                                     22
actor_3_facebook_likes                                                     324
actor_2_name                                                  Jamie Lee Curtis
actor_1_facebook_likes                                                    8000
gross                                                              1.54272e+07
genres                                                    Comedy|Crime|Mystery
actor_1_name                                                      Will Ferrell
movie_title                                                     Drowning Mona 
num_voted_users                                                          11768
cast_total_facebook_likes                                                11078
actor_3_name                                                     Tracey Walter
facenumber_in_poster                                                         0
plot_keywords                crying woman|plot|suspect|waitress|younger man...
movie_imdb_link              http://www.imdb.com/title/tt0186045/?ref_=fn_t...
num_user_for_reviews                                                       148
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2000
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       492
Name: 2566, dtype: object
color                                                                    Color
director_name                                                      Woody Allen
num_critic_for_reviews                                                      64
duration                                                                    88
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     233
actor_2_name                                                         Don Pardo
actor_1_facebook_likes                                                     854
gross                                                              1.47928e+07
genres                                                                  Comedy
actor_1_name                                                        Mike Starr
movie_title                                                        Radio Days 
num_voted_users                                                          24256
cast_total_facebook_likes                                                 1653
actor_3_name                                                      Julie Kavner
facenumber_in_poster                                                         0
plot_keywords                beach|cigarette girl|radio|woman holding a bab...
movie_imdb_link              http://www.imdb.com/title/tt0093818/?ref_=fn_t...
num_user_for_reviews                                                        91
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.6e+07
title_year                                                                1987
actor_2_facebook_likes                                                     410
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2567, dtype: object
color                                                                    Color
director_name                                                    Vic Armstrong
num_critic_for_reviews                                                     169
duration                                                                   110
director_facebook_likes                                                    179
actor_3_facebook_likes                                                     734
actor_2_name                                                      Lea Thompson
actor_1_facebook_likes                                                   12000
gross                                                              1.39983e+07
genres                                   Action|Drama|Fantasy|Mystery|Thriller
actor_1_name                                                      Nicolas Cage
movie_title                                                       Left Behind 
num_voted_users                                                          24854
cast_total_facebook_likes                                                15044
actor_3_name                                                     Quinton Aaron
facenumber_in_poster                                                         1
plot_keywords                              bible quote|chaos|faith|riot|shrine
movie_imdb_link              http://www.imdb.com/title/tt2467046/?ref_=fn_t...
num_user_for_reviews                                                       374
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2014
actor_2_facebook_likes                                                    1000
imdb_score                                                                 3.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     31000
Name: 2568, dtype: object
color                                                                    Color
director_name                                                    Allen Coulter
num_critic_for_reviews                                                     158
duration                                                                   113
director_facebook_likes                                                     47
actor_3_facebook_likes                                                     238
actor_2_name                                                         Lena Olin
actor_1_facebook_likes                                                   21000
gross                                                               1.9057e+07
genres                                                           Drama|Romance
actor_1_name                                                  Robert Pattinson
movie_title                                                       Remember Me 
num_voted_users                                                         113963
cast_total_facebook_likes                                                22088
actor_3_name                                                       Ruby Jerins
facenumber_in_poster                                                         0
plot_keywords                binge drinking|new york|new york city|septembe...
movie_imdb_link              http://www.imdb.com/title/tt1403981/?ref_=fn_t...
num_user_for_reviews                                                       361
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2010
actor_2_facebook_likes                                                     541
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     24000
Name: 2569, dtype: object
color                                                                    Color
director_name                                                     Clare Kilner
num_critic_for_reviews                                                      46
duration                                                                   101
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     258
actor_2_name                                                  Alexandra Holden
actor_1_facebook_likes                                                     812
gross                                                              1.41085e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                       Dylan Baker
movie_title                                                       How to Deal 
num_voted_users                                                           8215
cast_total_facebook_likes                                                 1882
actor_3_name                                                        Trent Ford
facenumber_in_poster                                                         1
plot_keywords                    best friend|high school|mother|sister|wedding
movie_imdb_link              http://www.imdb.com/title/tt0319524/?ref_=fn_t...
num_user_for_reviews                                                        95
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2003
actor_2_facebook_likes                                                     326
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       371
Name: 2570, dtype: object
color                                                                    Color
director_name                                                 Richard Benjamin
num_critic_for_reviews                                                      15
duration                                                                   105
director_facebook_likes                                                    121
actor_3_facebook_likes                                                     384
actor_2_name                                                   Alyson Hannigan
actor_1_facebook_likes                                                   11000
gross                                                               1.3854e+07
genres                                                   Comedy|Romance|Sci-Fi
actor_1_name                                                        Jon Lovitz
movie_title                                         My Stepmother Is an Alien 
num_voted_users                                                          21079
cast_total_facebook_likes                                                14677
actor_3_name                                                          Tony Jay
facenumber_in_poster                                                         0
plot_keywords                          alien|earth|female alien|mission|secret
movie_imdb_link              http://www.imdb.com/title/tt0095687/?ref_=fn_t...
num_user_for_reviews                                                        55
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+07
title_year                                                                1988
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       818
Name: 2571, dtype: object
color                                                                    Color
director_name                                                   Jonathan Demme
num_critic_for_reviews                                                      68
duration                                                                   125
director_facebook_likes                                                    438
actor_3_facebook_likes                                                     372
actor_2_name                                                         Tom Hanks
actor_1_facebook_likes                                                   18000
gross                                                              7.73244e+07
genres                                                                   Drama
actor_1_name                                                 Denzel Washington
movie_title                                                      Philadelphia 
num_voted_users                                                         178731
cast_total_facebook_likes                                                33865
actor_3_name                                                     Jason Robards
facenumber_in_poster                                                         2
plot_keywords                    aids|city name in title|gay|homophobia|lawyer
movie_imdb_link              http://www.imdb.com/title/tt0107818/?ref_=fn_t...
num_user_for_reviews                                                       261
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.6e+07
title_year                                                                1993
actor_2_facebook_likes                                                   15000
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2572, dtype: object
color                                                                    Color
director_name                                                     Josef Rusnak
num_critic_for_reviews                                                     111
duration                                                                   100
director_facebook_likes                                                      9
actor_3_facebook_likes                                                     363
actor_2_name                                                      Craig Bierko
actor_1_facebook_likes                                                     599
gross                                                                 1.55e+07
genres                                                 Mystery|Sci-Fi|Thriller
actor_1_name                                                      Gretchen Mol
movie_title                                              The Thirteenth Floor 
num_voted_users                                                          51996
cast_total_facebook_likes                                                 2389
actor_3_name                                                Brad William Henke
facenumber_in_poster                                                         0
plot_keywords                    amnesia|barricade|letter|time|virtual reality
movie_imdb_link              http://www.imdb.com/title/tt0139809/?ref_=fn_t...
num_user_for_reviews                                                       302
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                1999
actor_2_facebook_likes                                                     380
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2573, dtype: object
color                                                                    Color
director_name                                                     Lance Rivera
num_critic_for_reviews                                                      21
duration                                                                    97
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     578
actor_2_name                                                   Vincent Pastore
actor_1_facebook_likes                                                    1000
gross                                                              1.15401e+07
genres                                                                  Comedy
actor_1_name                                                    Farrah Fawcett
movie_title                                                       The Cookout 
num_voted_users                                                           2385
cast_total_facebook_likes                                                 3835
actor_3_name                                                     Jenifer Lewis
facenumber_in_poster                                                         1
plot_keywords                         flatulence|interracial marriage|marriage
movie_imdb_link              http://www.imdb.com/title/tt0380277/?ref_=fn_t...
num_user_for_reviews                                                        20
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2004
actor_2_facebook_likes                                                     584
imdb_score                                                                 3.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       177
Name: 2574, dtype: object
color                                                                    Color
director_name                                                     Ronald Neame
num_critic_for_reviews                                                      42
duration                                                                   108
director_facebook_likes                                                     38
actor_3_facebook_likes                                                     316
actor_2_name                                                       Karl Malden
actor_1_facebook_likes                                                     940
gross                                                                      NaN
genres                                            Action|Drama|Sci-Fi|Thriller
actor_1_name                                                     Martin Landau
movie_title                                                            Meteor 
num_voted_users                                                           5237
cast_total_facebook_likes                                                 1945
actor_3_name                                                       Brian Keith
facenumber_in_poster                                                         7
plot_keywords                    asteroid|meteor|nasa|nuclear weapon|satellite
movie_imdb_link              http://www.imdb.com/title/tt0079550/?ref_=fn_t...
num_user_for_reviews                                                        90
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.6e+07
title_year                                                                1979
actor_2_facebook_likes                                                     416
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       392
Name: 2575, dtype: object
color                                                                    Color
director_name                                                    Bruce Paltrow
num_critic_for_reviews                                                      65
duration                                                                   112
director_facebook_likes                                                     28
actor_3_facebook_likes                                                     215
actor_2_name                                                     Marian Seldes
actor_1_facebook_likes                                                     555
gross                                                              4.73424e+06
genres                                                      Comedy|Drama|Music
actor_1_name                                                     Lochlyn Munro
movie_title                                                             Duets 
num_voted_users                                                           8217
cast_total_facebook_likes                                                 1227
actor_3_name                                                        Huey Lewis
facenumber_in_poster                                                         0
plot_keywords                   convict|karaoke|middle america|salesman|singer
movie_imdb_link              http://www.imdb.com/title/tt0134630/?ref_=fn_t...
num_user_for_reviews                                                       123
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     403
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       573
Name: 2576, dtype: object
color                                                                    Color
director_name                                                      Woody Allen
num_critic_for_reviews                                                     109
duration                                                                   112
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     642
actor_2_name                                                     Debra Messing
actor_1_facebook_likes                                                   11000
gross                                                              4.83938e+06
genres                                                          Comedy|Romance
actor_1_name                                                       Woody Allen
movie_title                                                  Hollywood Ending 
num_voted_users                                                          21613
cast_total_facebook_likes                                                12766
actor_3_name                                                    Treat Williams
facenumber_in_poster                                                         0
plot_keywords                blind|director|psychosomatic blindness|self de...
movie_imdb_link              http://www.imdb.com/title/tt0278823/?ref_=fn_t...
num_user_for_reviews                                                       148
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2002
actor_2_facebook_likes                                                     650
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       762
Name: 2577, dtype: object
color                                                                    Color
director_name                                                      Adam Rifkin
num_critic_for_reviews                                                      42
duration                                                                    95
director_facebook_likes                                                     89
actor_3_facebook_likes                                                     322
actor_2_name                                                         Lin Shaye
actor_1_facebook_likes                                                    1000
gross                                                              4.19302e+06
genres                                                            Comedy|Music
actor_1_name                                                    Natasha Lyonne
movie_title                                                 Detroit Rock City 
num_voted_users                                                          30682
cast_total_facebook_likes                                                 2518
actor_3_name                                                     Shannon Tweed
facenumber_in_poster                                                         0
plot_keywords                           band|concert|high school|kiss|teenager
movie_imdb_link              http://www.imdb.com/title/tt0165710/?ref_=fn_t...
num_user_for_reviews                                                       194
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     852
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2578, dtype: object
color                                                                    Color
director_name                                                  Russell Mulcahy
num_critic_for_reviews                                                     112
duration                                                                   110
director_facebook_likes                                                     85
actor_3_facebook_likes                                                     186
actor_2_name                                                        Jon Polito
actor_1_facebook_likes                                                    1000
gross                                                                  5.9e+06
genres                                                Action|Adventure|Fantasy
actor_1_name                                               Christopher Lambert
movie_title                                                        Highlander 
num_voted_users                                                          98629
cast_total_facebook_likes                                                 1852
actor_3_name                                                       Celia Imrie
facenumber_in_poster                                                         1
plot_keywords                  combat|head cut off|immortal|scotland|swordsman
movie_imdb_link              http://www.imdb.com/title/tt0091203/?ref_=fn_t...
num_user_for_reviews                                                       316
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                1986
actor_2_facebook_likes                                                     309
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2579, dtype: object
color                                                                    Color
director_name                                                     Susanne Bier
num_critic_for_reviews                                                     146
duration                                                                   118
director_facebook_likes                                                    369
actor_3_facebook_likes                                                     295
actor_2_name                                                Omar Benson Miller
actor_1_facebook_likes                                                    1000
gross                                                              2.84914e+06
genres                                                                   Drama
actor_1_name                                                     Alison Lohman
movie_title                                        Things We Lost in the Fire 
num_voted_users                                                          24104
cast_total_facebook_likes                                                 1889
actor_3_name                                                     Robin Weigert
facenumber_in_poster                                                         1
plot_keywords                best friend|dinner|garage|narcotics anonymous|...
movie_imdb_link              http://www.imdb.com/title/tt0469623/?ref_=fn_t...
num_user_for_reviews                                                        88
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                2007
actor_2_facebook_likes                                                     418
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2580, dtype: object
color                                                                    Color
director_name                                                  Kenneth Johnson
num_critic_for_reviews                                                      36
duration                                                                    97
director_facebook_likes                                                     34
actor_3_facebook_likes                                                     465
actor_2_name                                                     Annabeth Gish
actor_1_facebook_likes                                                     503
gross                                                              1.68643e+06
genres                                                     Action|Crime|Sci-Fi
actor_1_name                                                    Charles Napier
movie_title                                                             Steel 
num_voted_users                                                           8687
cast_total_facebook_likes                                                 3100
actor_3_name                                                       Hill Harper
facenumber_in_poster                                                         1
plot_keywords                             fight|gang|junkyard|military|soldier
movie_imdb_link              http://www.imdb.com/title/tt0120207/?ref_=fn_t...
num_user_for_reviews                                                        62
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                1997
actor_2_facebook_likes                                                     489
imdb_score                                                                 2.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2581, dtype: object
color                                                                    Color
director_name                                                       James Gray
num_critic_for_reviews                                                     230
duration                                                                   120
director_facebook_likes                                                    115
actor_3_facebook_likes                                                     310
actor_2_name                                                 Dagmara Dominczyk
actor_1_facebook_likes                                                   10000
gross                                                              1.98474e+06
genres                                                           Drama|Romance
actor_1_name                                                     Jeremy Renner
movie_title                                                     The Immigrant 
num_voted_users                                                          20616
cast_total_facebook_likes                                                11019
actor_3_name                                                   Angela Sarafyan
facenumber_in_poster                                                         3
plot_keywords                immigrant|immigration|magician|money|prostitution
movie_imdb_link              http://www.imdb.com/title/tt1951181/?ref_=fn_t...
num_user_for_reviews                                                        70
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                2013
actor_2_facebook_likes                                                     316
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2582, dtype: object
color                                                                    Color
director_name                                                      James Ivory
num_critic_for_reviews                                                      64
duration                                                                   135
director_facebook_likes                                                    133
actor_3_facebook_likes                                                     258
actor_2_name                                                Natasha Richardson
actor_1_facebook_likes                                                     898
gross                                                              1.66626e+06
genres                                               Drama|History|Romance|War
actor_1_name                                                  Vanessa Redgrave
movie_title                                                The White Countess 
num_voted_users                                                           5321
cast_total_facebook_likes                                                 2096
actor_3_name                                                     Lynn Redgrave
facenumber_in_poster                                                         0
plot_keywords                      countess|diplomat|japanese|russian|shanghai
movie_imdb_link              http://www.imdb.com/title/tt0384686/?ref_=fn_t...
num_user_for_reviews                                                        78
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2005
actor_2_facebook_likes                                                     708
imdb_score                                                                 6.7
aspect_ratio                                                              1.66
movie_facebook_likes                                                       356
Name: 2583, dtype: object
color                                                                    Color
director_name                                                      Danny Boyle
num_critic_for_reviews                                                     393
duration                                                                   101
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     888
actor_2_name                                                   Spencer Wilding
actor_1_facebook_likes                                                    3000
gross                                                              2.31919e+06
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                    Rosario Dawson
movie_title                                                            Trance 
num_voted_users                                                          92640
cast_total_facebook_likes                                                 5056
actor_3_name                                                Tuppence Middleton
facenumber_in_poster                                                         0
plot_keywords                amnesia|criminal|heist|hypnotherapy|lost painting
movie_imdb_link              http://www.imdb.com/title/tt1924429/?ref_=fn_t...
num_user_for_reviews                                                       212
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   2e+07
title_year                                                                2013
actor_2_facebook_likes                                                    1000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     23000
Name: 2584, dtype: object
color                                                                    Color
director_name                                                    Jessy Terrero
num_critic_for_reviews                                                      75
duration                                                                    92
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     618
actor_2_name                                                        Snoop Dogg
actor_1_facebook_likes                                                     939
gross                                                              1.39222e+07
genres                                                                  Comedy
actor_1_name                                                          Mo'Nique
movie_title                                                        Soul Plane 
num_voted_users                                                          18271
cast_total_facebook_likes                                                 3935
actor_3_name                                                        Tom Arnold
facenumber_in_poster                                                         9
plot_keywords                             airline|airplane|bathroom|sex|toilet
movie_imdb_link              http://www.imdb.com/title/tt0367085/?ref_=fn_t...
num_user_for_reviews                                                       150
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                2004
actor_2_facebook_likes                                                     881
imdb_score                                                                 4.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2585, dtype: object
color                                                                    Color
director_name                                                        Dany Boon
num_critic_for_reviews                                                      78
duration                                                                   106
director_facebook_likes                                                    172
actor_3_facebook_likes                                                      27
actor_2_name                                                         Kad Merad
actor_1_facebook_likes                                                     172
gross                                                                      NaN
genres                                                          Comedy|Romance
actor_1_name                                                         Dany Boon
movie_title                                             Welcome to the Sticks 
num_voted_users                                                          30587
cast_total_facebook_likes                                                  329
actor_3_name                                                    Michel Galabru
facenumber_in_poster                                                         2
plot_keywords                alcohol|alcoholic drink|drunken man|france|pro...
movie_imdb_link              http://www.imdb.com/title/tt1064932/?ref_=fn_t...
num_user_for_reviews                                                        49
language                                                                French
country                                                                 France
content_rating                                                             NaN
budget                                                                 1.1e+07
title_year                                                                2008
actor_2_facebook_likes                                                      55
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                      3000
Name: 2586, dtype: object
color                                                                    Color
director_name                                                   Vicente Amorim
num_critic_for_reviews                                                      67
duration                                                                    92
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     227
actor_2_name                                                   Jodie Whittaker
actor_1_facebook_likes                                                   10000
gross                                                                    23091
genres                                                       Drama|Romance|War
actor_1_name                                                   Viggo Mortensen
movie_title                                                              Good 
num_voted_users                                                           5664
cast_total_facebook_likes                                                11091
actor_3_name                                                 Steven Mackintosh
facenumber_in_poster                                                         1
plot_keywords                 censorship|children|corpse|heil hitler|suffering
movie_imdb_link              http://www.imdb.com/title/tt0436364/?ref_=fn_t...
num_user_for_reviews                                                        42
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                     304
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       921
Name: 2587, dtype: object
color                                                                    Color
director_name                                                       Gaspar Noé
num_critic_for_reviews                                                     216
duration                                                                   161
director_facebook_likes                                                    929
actor_3_facebook_likes                                                     116
actor_2_name                                                   Emily Alyn Lind
actor_1_facebook_likes                                                     488
gross                                                                   336467
genres                                                           Drama|Fantasy
actor_1_name                                                  Paz de la Huerta
movie_title                                                    Enter the Void 
num_voted_users                                                          45449
cast_total_facebook_likes                                                  943
actor_3_name                                                    Olly Alexander
facenumber_in_poster                                                         0
plot_keywords                       drug deal|drugs|explicit sex|love|stripper
movie_imdb_link              http://www.imdb.com/title/tt1191111/?ref_=fn_t...
num_user_for_reviews                                                       192
language                                                               English
country                                                                 France
content_rating                                                       Not Rated
budget                                                                 1.3e+07
title_year                                                                2009
actor_2_facebook_likes                                                     289
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     23000
Name: 2588, dtype: object
color                                                                    Color
director_name                                                   Amy Heckerling
num_critic_for_reviews                                                      54
duration                                                                    92
director_facebook_likes                                                    143
actor_3_facebook_likes                                                     613
actor_2_name                                                       Justin Kirk
actor_1_facebook_likes                                                    1000
gross                                                                     2964
genres                                                   Comedy|Horror|Romance
actor_1_name                                                     Taylor Negron
movie_title                                                             Vamps 
num_voted_users                                                           7444
cast_total_facebook_likes                                                 3086
actor_3_name                                                       Ivan Sergei
facenumber_in_poster                                                         2
plot_keywords                murder|new york city|one word title|vampire|va...
movie_imdb_link              http://www.imdb.com/title/tt1545106/?ref_=fn_t...
num_user_for_reviews                                                        42
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2012
actor_2_facebook_likes                                                     945
imdb_score                                                                 5.1
aspect_ratio                                                              1.78
movie_facebook_likes                                                         0
Name: 2589, dtype: object
color                                                                    Color
director_name                                                  Lasse Hallström
num_critic_for_reviews                                                      84
duration                                                                    93
director_facebook_likes                                                    529
actor_3_facebook_likes                                                     805
actor_2_name                                                      Sarah Roemer
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                            Drama|Family
actor_1_name                                              Cary-Hiroyuki Tagawa
movie_title                                               Hachi: A Dog's Tale 
num_voted_users                                                         155249
cast_total_facebook_likes                                                 4453
actor_3_name                                                        Joan Allen
facenumber_in_poster                                                         0
plot_keywords                dog|human animal relationship|japanese|loyalty...
movie_imdb_link              http://www.imdb.com/title/tt1028532/?ref_=fn_t...
num_user_for_reviews                                                       304
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 1.6e+07
title_year                                                                2009
actor_2_facebook_likes                                                     884
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                    115000
Name: 2590, dtype: object
color                                                                    Color
director_name                                                     Jérôme Salle
num_critic_for_reviews                                                      69
duration                                                                   110
director_facebook_likes                                                     22
actor_3_facebook_likes                                                      44
actor_2_name                                                   Tanya van Graan
actor_1_facebook_likes                                                    5000
gross                                                                      NaN
genres                                                    Crime|Drama|Thriller
actor_1_name                                                     Orlando Bloom
movie_title                                                              Zulu 
num_voted_users                                                          12817
cast_total_facebook_likes                                                 5273
actor_3_name                                                       Conrad Kemp
facenumber_in_poster                                                         0
plot_keywords                apartheid|corpse|male nudity|murder|police off...
movie_imdb_link              http://www.imdb.com/title/tt2249221/?ref_=fn_t...
num_user_for_reviews                                                        43
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                2013
actor_2_facebook_likes                                                     170
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2591, dtype: object
color                                                                    Color
director_name                                                  Tommy Lee Jones
num_critic_for_reviews                                                     208
duration                                                                   122
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     567
actor_2_name                                                  Tim Blake Nelson
actor_1_facebook_likes                                                     883
gross                                                              2.42888e+06
genres                                                           Drama|Western
actor_1_name                                                      Barry Corbin
movie_title                                                      The Homesman 
num_voted_users                                                          21370
cast_total_facebook_likes                                                 2896
actor_3_name                                                      Miranda Otto
facenumber_in_poster                                                         1
plot_keywords                abusive marriage|pastor|prison wagon|roast pig...
movie_imdb_link              http://www.imdb.com/title/tt2398231/?ref_=fn_t...
num_user_for_reviews                                                       132
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                2014
actor_2_facebook_likes                                                     596
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2592, dtype: object
color                                                                    Color
director_name                                                    Jesse Vaughan
num_critic_for_reviews                                                      32
duration                                                                    91
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     574
actor_2_name                                                     Jenifer Lewis
actor_1_facebook_likes                                                     890
gross                                                              1.35718e+07
genres                                              Comedy|Drama|Romance|Sport
actor_1_name                                                     Vivica A. Fox
movie_title                                                      Juwanna Mann 
num_voted_users                                                           5312
cast_total_facebook_likes                                                 3104
actor_3_name                                                      Kevin Pollak
facenumber_in_poster                                                         3
plot_keywords                basketball|dodge viper|hit in the crotch|male ...
movie_imdb_link              http://www.imdb.com/title/tt0247444/?ref_=fn_t...
num_user_for_reviews                                                        40
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.56e+07
title_year                                                                2002
actor_2_facebook_likes                                                     578
imdb_score                                                                 4.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       939
Name: 2593, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      20
duration                                                                    45
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                      15
actor_2_name                                                       Trond Fausa
actor_1_facebook_likes                                                     422
gross                                                                      NaN
genres                                                      Comedy|Crime|Drama
actor_1_name                                                  Steven Van Zandt
movie_title                                            Lilyhammer             
num_voted_users                                                          19164
cast_total_facebook_likes                                                  537
actor_3_name                                                     Tommy Karlsen
facenumber_in_poster                                                         0
plot_keywords                                       mafia|mob|norway|steve|van
movie_imdb_link              http://www.imdb.com/title/tt1958961/?ref_=fn_t...
num_user_for_reviews                                                        79
language                                                               English
country                                                                 Norway
content_rating                                                           TV-MA
budget                                                                 3.4e+07
title_year                                                                 NaN
actor_2_facebook_likes                                                      57
imdb_score                                                                 8.1
aspect_ratio                                                                16
movie_facebook_likes                                                     16000
Name: 2594, dtype: object
color                                                                    Color
director_name                                                      Atom Egoyan
num_critic_for_reviews                                                      78
duration                                                                   115
director_facebook_likes                                                    460
actor_3_facebook_likes                                                     125
actor_2_name                                                 Marie-Josée Croze
actor_1_facebook_likes                                                     232
gross                                                              1.55457e+06
genres                                                               Drama|War
actor_1_name                                                       David Alpay
movie_title                                                            Ararat 
num_voted_users                                                           8624
cast_total_facebook_likes                                                  699
actor_3_name                                                  Charles Aznavour
facenumber_in_poster                                                         1
plot_keywords                armenian|armenian genocide|customs agent|genoc...
movie_imdb_link              http://www.imdb.com/title/tt0273435/?ref_=fn_t...
num_user_for_reviews                                                       180
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2002
actor_2_facebook_likes                                                     150
imdb_score                                                                 6.6
aspect_ratio                                                              1.66
movie_facebook_likes                                                       824
Name: 2595, dtype: object
color                                                                    Color
director_name                                                  William Bindley
num_critic_for_reviews                                                      21
duration                                                                    94
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     518
actor_2_name                                                        Jake Lloyd
actor_1_facebook_likes                                                     844
gross                                                                   508867
genres                                                             Drama|Sport
actor_1_name                                                        Bruce Dern
movie_title                                                           Madison 
num_voted_users                                                           1033
cast_total_facebook_likes                                                 3583
actor_3_name                                                  William Shockley
facenumber_in_poster                                                         0
plot_keywords                boat racing|hydroplane|loyalty|one word title|...
movie_imdb_link              http://www.imdb.com/title/tt0206113/?ref_=fn_t...
num_user_for_reviews                                                        26
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2001
actor_2_facebook_likes                                                     626
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       282
Name: 2596, dtype: object
color                                                                    Color
director_name                                                      Wayne Beach
num_critic_for_reviews                                                      40
duration                                                                    93
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     922
actor_2_name                                                         LL Cool J
actor_1_facebook_likes                                                    1000
gross                                                               1.1812e+06
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                      Mekhi Phifer
movie_title                                                         Slow Burn 
num_voted_users                                                           3299
cast_total_facebook_likes                                                 4329
actor_3_name                                                    Fisher Stevens
facenumber_in_poster                                                         0
plot_keywords                district attorney|interview|murder|prosecutor|...
movie_imdb_link              http://www.imdb.com/title/tt0376196/?ref_=fn_t...
num_user_for_reviews                                                        24
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.55e+07
title_year                                                                2005
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       191
Name: 2597, dtype: object
color                                                                    Color
director_name                                                  Gérard Krawczyk
num_critic_for_reviews                                                      40
duration                                                                    94
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      17
actor_2_name                                                     Ryôko Hirosue
actor_1_facebook_likes                                                     235
gross                                                                    81525
genres                                      Action|Comedy|Crime|Drama|Thriller
actor_1_name                                                    Carole Bouquet
movie_title                                                            Wasabi 
num_voted_users                                                          29392
cast_total_facebook_likes                                                  303
actor_3_name                                                     Michel Muller
facenumber_in_poster                                                         1
plot_keywords                french|inheritance|japan|letter|police detecti...
movie_imdb_link              http://www.imdb.com/title/tt0281364/?ref_=fn_t...
num_user_for_reviews                                                        91
language                                                                French
country                                                                 France
content_rating                                                               R
budget                                                                1.53e+07
title_year                                                                2001
actor_2_facebook_likes                                                      46
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2598, dtype: object
color                                                                    Color
director_name                                                       James Gunn
num_critic_for_reviews                                                     251
duration                                                                    95
director_facebook_likes                                                    571
actor_3_facebook_likes                                                     102
actor_2_name                                                       Gregg Henry
actor_1_facebook_likes                                                     499
gross                                                              7.77473e+06
genres                                                    Comedy|Horror|Sci-Fi
actor_1_name                                                   Dustin Milligan
movie_title                                                           Slither 
num_voted_users                                                          61912
cast_total_facebook_likes                                                 1120
actor_3_name                                                    Tania Saulnier
facenumber_in_poster                                                         0
plot_keywords                                alien|b movie|sex|slug|small town
movie_imdb_link              http://www.imdb.com/title/tt0439815/?ref_=fn_t...
num_user_for_reviews                                                       352
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                1.55e+07
title_year                                                                2006
actor_2_facebook_likes                                                     298
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2599, dtype: object
color                                                                    Color
director_name                                                     Martin Brest
num_critic_for_reviews                                                      94
duration                                                                   105
director_facebook_likes                                                    102
actor_3_facebook_likes                                                     383
actor_2_name                                                         Ronny Cox
actor_1_facebook_likes                                                     901
gross                                                              2.34760e+08
genres                                                     Action|Comedy|Crime
actor_1_name                                                    Judge Reinhold
movie_title                                                 Beverly Hills Cop 
num_voted_users                                                         126464
cast_total_facebook_likes                                                 3464
actor_3_name                                                       James Russo
facenumber_in_poster                                                         1
plot_keywords                drug dealer|drugs|murder|police brutality|poli...
movie_imdb_link              http://www.imdb.com/title/tt0086960/?ref_=fn_t...
num_user_for_reviews                                                       175
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                1984
actor_2_facebook_likes                                                     605
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2600, dtype: object
color                                                                    Color
director_name                                                   Chris Columbus
num_critic_for_reviews                                                     102
duration                                                                   103
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     925
actor_2_name                                                      Devin Ratray
actor_1_facebook_likes                                                    3000
gross                                                              2.85761e+08
genres                                                           Comedy|Family
actor_1_name                                                   Macaulay Culkin
movie_title                                                        Home Alone 
num_voted_users                                                         311075
cast_total_facebook_likes                                                 7521
actor_3_name                                                  Catherine O'Hara
facenumber_in_poster                                                         5
plot_keywords                airport|child protagonist|child swearing|chris...
movie_imdb_link              http://www.imdb.com/title/tt0099785/?ref_=fn_t...
num_user_for_reviews                                                       305
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.8e+07
title_year                                                                1990
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     20000
Name: 2601, dtype: object
color                                                                    Color
director_name                                                    Leonard Nimoy
num_critic_for_reviews                                                      21
duration                                                                   102
director_facebook_likes                                                  12000
actor_3_facebook_likes                                                     801
actor_2_name                                                        Ted Danson
actor_1_facebook_likes                                                   19000
gross                                                              1.67781e+08
genres                                                     Comedy|Drama|Family
actor_1_name                                                       Tom Selleck
movie_title                                                  3 Men and a Baby 
num_voted_users                                                          36918
cast_total_facebook_likes                                                21499
actor_3_name                                                  Steve Guttenberg
facenumber_in_poster                                                         4
plot_keywords                   1980s|baby|heroin|package|questioned by police
movie_imdb_link              http://www.imdb.com/title/tt0094137/?ref_=fn_t...
num_user_for_reviews                                                        42
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.1e+07
title_year                                                                1987
actor_2_facebook_likes                                                     875
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                      3000
Name: 2602, dtype: object
color                                                                    Color
director_name                                                   Sydney Pollack
num_critic_for_reviews                                                      94
duration                                                                   116
director_facebook_likes                                                    521
actor_3_facebook_likes                                                     481
actor_2_name                                                    Sydney Pollack
actor_1_facebook_likes                                                   13000
gross                                                                1.772e+08
genres                                                    Comedy|Drama|Romance
actor_1_name                                                       Bill Murray
movie_title                                                           Tootsie 
num_voted_users                                                          77366
cast_total_facebook_likes                                                14701
actor_3_name                                                         Teri Garr
facenumber_in_poster                                                         1
plot_keywords                             actor|actress|friend|love|reputation
movie_imdb_link              http://www.imdb.com/title/tt0084805/?ref_=fn_t...
num_user_for_reviews                                                       194
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 2.2e+07
title_year                                                                1982
actor_2_facebook_likes                                                     521
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2603, dtype: object
color                                                                    Color
director_name                                                       Tony Scott
num_critic_for_reviews                                                     173
duration                                                                   110
director_facebook_likes                                                  12000
actor_3_facebook_likes                                                     555
actor_2_name                                                      Tom Skerritt
actor_1_facebook_likes                                                   10000
gross                                                              1.76782e+08
genres                                                    Action|Drama|Romance
actor_1_name                                                        Tom Cruise
movie_title                                                           Top Gun 
num_voted_users                                                         219171
cast_total_facebook_likes                                                13069
actor_3_name                                                     Adrian Pasdar
facenumber_in_poster                                                         2
plot_keywords                flying|gay subtext|machismo|male objectificati...
movie_imdb_link              http://www.imdb.com/title/tt0092099/?ref_=fn_t...
num_user_for_reviews                                                       388
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                1986
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.9
aspect_ratio                                                              1.33
movie_facebook_likes                                                     19000
Name: 2604, dtype: object
color                                                                    Color
director_name                                                          Ang Lee
num_critic_for_reviews                                                     287
duration                                                                   120
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       5
actor_2_name                                                     Pei-Pei Cheng
actor_1_facebook_likes                                                     103
gross                                                              1.28068e+08
genres                                                    Action|Drama|Romance
actor_1_name                                                        Chen Chang
movie_title                                    Crouching Tiger, Hidden Dragon 
num_voted_users                                                         217740
cast_total_facebook_likes                                                  129
actor_3_name                                                       Sihung Lung
facenumber_in_poster                                                         3
plot_keywords                bare midriff|china|magical realism|martial art...
movie_imdb_link              http://www.imdb.com/title/tt0190332/?ref_=fn_t...
num_user_for_reviews                                                      1641
language                                                              Mandarin
country                                                                 Taiwan
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                      21
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2605, dtype: object
color                                                                    Color
director_name                                                       Sam Mendes
num_critic_for_reviews                                                     176
duration                                                                   122
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     158
actor_2_name                                                   Peter Gallagher
actor_1_facebook_likes                                                   18000
gross                                                              1.30058e+08
genres                                                                   Drama
actor_1_name                                                      Kevin Spacey
movie_title                                                   American Beauty 
num_voted_users                                                         822500
cast_total_facebook_likes                                                19078
actor_3_name                                                          Ara Celi
facenumber_in_poster                                                         0
plot_keywords                domestic violence|drug dealer|homosexuality|mi...
movie_imdb_link              http://www.imdb.com/title/tt0169547/?ref_=fn_t...
num_user_for_reviews                                                      2715
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     828
imdb_score                                                                 8.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     22000
Name: 2606, dtype: object
color                                                                    Color
director_name                                                       Tom Hooper
num_critic_for_reviews                                                     479
duration                                                                   118
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     520
actor_2_name                                                     Jennifer Ehle
actor_1_facebook_likes                                                   14000
gross                                                              1.38795e+08
genres                                         Biography|Drama|History|Romance
actor_1_name                                                       Colin Firth
movie_title                                                 The King's Speech 
num_voted_users                                                         503631
cast_total_facebook_likes                                                15732
actor_3_name                                                      Derek Jacobi
facenumber_in_poster                                                         0
plot_keywords                king|king george vi|speech|speech therapist|th...
movie_imdb_link              http://www.imdb.com/title/tt1504320/?ref_=fn_t...
num_user_for_reviews                                                       636
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                    1000
imdb_score                                                                   8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     64000
Name: 2607, dtype: object
color                                                                    Color
director_name                                                     Ivan Reitman
num_critic_for_reviews                                                      27
duration                                                                   107
director_facebook_likes                                                    425
actor_3_facebook_likes                                                     247
actor_2_name                                                          Tony Jay
actor_1_facebook_likes                                                     742
gross                                                              1.11936e+08
genres                                                            Comedy|Crime
actor_1_name                                                     Kelly Preston
movie_title                                                             Twins 
num_voted_users                                                          87538
cast_total_facebook_likes                                                 2151
actor_3_name                                                      Hugh O'Brian
facenumber_in_poster                                                         1
plot_keywords                bare chested male|brother|catholic orphanage|l...
movie_imdb_link              http://www.imdb.com/title/tt0096320/?ref_=fn_t...
num_user_for_reviews                                                        79
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                1988
actor_2_facebook_likes                                                     384
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2608, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      20
duration                                                                    45
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     260
actor_2_name                                                       Bobby Campo
actor_1_facebook_likes                                                     460
gross                                                                      NaN
genres                                     Crime|Drama|Horror|Mystery|Thriller
actor_1_name                                                  Bex Taylor-Klaus
movie_title                                 Scream: The TV Series             
num_voted_users                                                          18058
cast_total_facebook_likes                                                 2380
actor_3_name                                                       Jason Wiles
facenumber_in_poster                                                         0
plot_keywords                generation y|millennial generation|murder|teen...
movie_imdb_link              http://www.imdb.com/title/tt3921180/?ref_=fn_t...
num_user_for_reviews                                                        68
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     292
imdb_score                                                                 7.3
aspect_ratio                                                                16
movie_facebook_likes                                                         0
Name: 2609, dtype: object
color                                                                    Color
director_name                                                    Udayan Prasad
num_critic_for_reviews                                                      60
duration                                                                   102
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     882
actor_2_name                                                    Eddie Redmayne
actor_1_facebook_likes                                                   17000
gross                                                                   317040
genres                                                           Drama|Romance
actor_1_name                                                   Kristen Stewart
movie_title                                           The Yellow Handkerchief 
num_voted_users                                                           6723
cast_total_facebook_likes                                                30978
actor_3_name                                                      William Hurt
facenumber_in_poster                                                         1
plot_keywords                louisiana|overalls|road trip|southern u.s.|tee...
movie_imdb_link              http://www.imdb.com/title/tt0954990/?ref_=fn_t...
num_user_for_reviews                                                        36
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.55e+07
title_year                                                                2008
actor_2_facebook_likes                                                   13000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 2610, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                      70
duration                                                                   154
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     271
actor_2_name                                                    Rae Dawn Chong
actor_1_facebook_likes                                                     852
gross                                                              9.41759e+07
genres                                                                   Drama
actor_1_name                                                     Oprah Winfrey
movie_title                                                  The Color Purple 
num_voted_users                                                          60988
cast_total_facebook_likes                                                 2592
actor_3_name                                                         Dana Ivey
facenumber_in_poster                                                         0
plot_keywords                book strap|girl|racial discrimination|racial t...
movie_imdb_link              http://www.imdb.com/title/tt0088939/?ref_=fn_t...
num_user_for_reviews                                                       199
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                1985
actor_2_facebook_likes                                                     581
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                      6000
Name: 2611, dtype: object
color                                                                    Color
director_name                                                          JK Youn
num_critic_for_reviews                                                      43
duration                                                                   103
director_facebook_likes                                                      2
actor_3_facebook_likes                                                      13
actor_2_name                                                         Ji-won Ha
actor_1_facebook_likes                                                      94
gross                                                                      NaN
genres                                            Action|Comedy|Drama|Thriller
actor_1_name                                                     Nicole Dionne
movie_title                                                        Tidal Wave 
num_voted_users                                                           2659
cast_total_facebook_likes                                                  213
actor_3_name                                                      Kyung-gu Sol
facenumber_in_poster                                                         2
plot_keywords                      korea|lifeguard|single father|tears|tsunami
movie_imdb_link              http://www.imdb.com/title/tt1153040/?ref_=fn_t...
num_user_for_reviews                                                        25
language                                                                Korean
country                                                            South Korea
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                      80
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       558
Name: 2612, dtype: object
color                                                                    Color
director_name                                                Timur Bekmambetov
num_critic_for_reviews                                                       1
duration                                                                   141
director_facebook_likes                                                    335
actor_3_facebook_likes                                                     635
actor_2_name                                                      Ayelet Zurer
actor_1_facebook_likes                                                   11000
gross                                                                      NaN
genres                                                 Adventure|Drama|History
actor_1_name                                                    Morgan Freeman
movie_title                                                           Ben-Hur 
num_voted_users                                                             62
cast_total_facebook_likes                                                13390
actor_3_name                                                      Moises Arias
facenumber_in_poster                                                         2
plot_keywords                chariot race|epic|false accusation|jerusalem|s...
movie_imdb_link              http://www.imdb.com/title/tt2638144/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2016
actor_2_facebook_likes                                                     744
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2613, dtype: object
color                                                                    Color
director_name                                                    Morten Tyldum
num_critic_for_reviews                                                     454
duration                                                                   114
director_facebook_likes                                                     77
actor_3_facebook_likes                                                     305
actor_2_name                                                      Rory Kinnear
actor_1_facebook_likes                                                   19000
gross                                                              9.11215e+07
genres                                            Biography|Drama|Thriller|War
actor_1_name                                              Benedict Cumberbatch
movie_title                                                The Imitation Game 
num_voted_users                                                         467613
cast_total_facebook_likes                                                20295
actor_3_name                                                       Allen Leech
facenumber_in_poster                                                         1
plot_keywords                crossword puzzle|cryptography|enigma code|gay ...
movie_imdb_link              http://www.imdb.com/title/tt2084970/?ref_=fn_t...
num_user_for_reviews                                                       608
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                2014
actor_2_facebook_likes                                                     393
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                    165000
Name: 2614, dtype: object
color                                                                    Color
director_name                                                     Howard Zieff
num_critic_for_reviews                                                      25
duration                                                                   109
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     271
actor_2_name                                                     Albert Brooks
actor_1_facebook_likes                                                    1000
gross                                                                 6.98e+07
genres                                                              Comedy|War
actor_1_name                                                    Eileen Brennan
movie_title                                                  Private Benjamin 
num_voted_users                                                          18140
cast_total_facebook_likes                                                 2419
actor_3_name                                                  Alan Oppenheimer
facenumber_in_poster                                                         1
plot_keywords                camera shot of feet|female stockinged feet|los...
movie_imdb_link              http://www.imdb.com/title/tt0081375/?ref_=fn_t...
num_user_for_reviews                                                        60
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1980
actor_2_facebook_likes                                                     745
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       855
Name: 2615, dtype: object
color                                                                    Color
director_name                                                    Michael Apted
num_critic_for_reviews                                                      46
duration                                                                   124
director_facebook_likes                                                    150
actor_3_facebook_likes                                                     572
actor_2_name                                                  Beverly D'Angelo
actor_1_facebook_likes                                                     874
gross                                                                 7.99e+07
genres                                           Biography|Drama|Music|Musical
actor_1_name                                                      Sissy Spacek
movie_title                                             Coal Miner's Daughter 
num_voted_users                                                          12974
cast_total_facebook_likes                                                 2667
actor_3_name                                                        Levon Helm
facenumber_in_poster                                                         0
plot_keywords                country music|kissing while having sex|poverty...
movie_imdb_link              http://www.imdb.com/title/tt0080549/?ref_=fn_t...
num_user_for_reviews                                                        84
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                1980
actor_2_facebook_likes                                                     816
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2616, dtype: object
color                                                                    Color
director_name                                                 Thor Freudenthal
num_critic_for_reviews                                                     111
duration                                                                    94
director_facebook_likes                                                     87
actor_3_facebook_likes                                                     569
actor_2_name                                                    Zachary Gordon
actor_1_facebook_likes                                                   17000
gross                                                              6.40013e+07
genres                                                           Comedy|Family
actor_1_name                                                Chloë Grace Moretz
movie_title                                              Diary of a Wimpy Kid 
num_voted_users                                                          32002
cast_total_facebook_likes                                                20154
actor_3_name                                                    Rachael Harris
facenumber_in_poster                                                         1
plot_keywords                         cheese|diary|friend|middle school|school
movie_imdb_link              http://www.imdb.com/title/tt1196141/?ref_=fn_t...
num_user_for_reviews                                                       103
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                     975
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2617, dtype: object
color                                                                    Color
director_name                                                Andrés Muschietti
num_critic_for_reviews                                                     393
duration                                                                   100
director_facebook_likes                                                    127
actor_3_facebook_likes                                                     250
actor_2_name                                                 Megan Charpentier
actor_1_facebook_likes                                                    1000
gross                                                              7.15882e+07
genres                                                          Fantasy|Horror
actor_1_name                                                      Javier Botet
movie_title                                                              Mama 
num_voted_users                                                         134869
cast_total_facebook_likes                                                 1949
actor_3_name                                                  Isabelle Nélisse
facenumber_in_poster                                                         1
plot_keywords                aunt|children|death of sister|forest|hiding in...
movie_imdb_link              http://www.imdb.com/title/tt2023587/?ref_=fn_t...
num_user_for_reviews                                                       304
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                   2e+07
title_year                                                                2013
actor_2_facebook_likes                                                     340
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     57000
Name: 2618, dtype: object
color                                                                    Color
director_name                                                   John Carpenter
num_critic_for_reviews                                                     318
duration                                                                   101
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     598
actor_2_name                                                  Donald Pleasence
actor_1_facebook_likes                                                    2000
gross                                                                  4.7e+07
genres                                                         Horror|Thriller
actor_1_name                                                  Jamie Lee Curtis
movie_title                                                         Halloween 
num_voted_users                                                         157857
cast_total_facebook_likes                                                 4400
actor_3_name                                                        P.J. Soles
facenumber_in_poster                                                         0
plot_keywords                halloween|masked killer|michael myers|slasher|...
movie_imdb_link              http://www.imdb.com/title/tt0077651/?ref_=fn_t...
num_user_for_reviews                                                      1191
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  300000
title_year                                                                1978
actor_2_facebook_likes                                                     742
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 2619, dtype: object
color                                                                    Color
director_name                                                     Harold Ramis
num_critic_for_reviews                                                      55
duration                                                                    98
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     624
actor_2_name                                                       Randy Quaid
actor_1_facebook_likes                                                     816
gross                                                                 6.14e+07
genres                                                        Adventure|Comedy
actor_1_name                                                  Beverly D'Angelo
movie_title                                       National Lampoon's Vacation 
num_voted_users                                                          71183
cast_total_facebook_likes                                                 3617
actor_3_name                                                    Jane Krakowski
facenumber_in_poster                                                         1
plot_keywords                amusement park|dog|family vacation|national la...
movie_imdb_link              http://www.imdb.com/title/tt0085995/?ref_=fn_t...
num_user_for_reviews                                                       183
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1983
actor_2_facebook_likes                                                     695
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2620, dtype: object
color                                                                    Color
director_name                                                    Jeff Tremaine
num_critic_for_reviews                                                     157
duration                                                                   102
director_facebook_likes                                                     79
actor_3_facebook_likes                                                      27
actor_2_name                                                    Georgina Cates
actor_1_facebook_likes                                                     925
gross                                                              1.01979e+08
genres                                                                  Comedy
actor_1_name                                                    Jackson Nicoll
movie_title                                                       Bad Grandpa 
num_voted_users                                                          77724
cast_total_facebook_likes                                                 1018
actor_3_name                                                   Grasie Mercedes
facenumber_in_poster                                                         0
plot_keywords                child beauty pageant|grandson|hidden camera|ja...
movie_imdb_link              http://www.imdb.com/title/tt3063516/?ref_=fn_t...
num_user_for_reviews                                                       162
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2013
actor_2_facebook_likes                                                      38
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     26000
Name: 2621, dtype: object
color                                                                    Color
director_name                                                   Stephen Frears
num_critic_for_reviews                                                     280
duration                                                                    94
director_facebook_likes                                                    350
actor_3_facebook_likes                                                      39
actor_2_name                                                       Sylvia Syms
actor_1_facebook_likes                                                     326
gross                                                              5.64379e+07
genres                                                         Biography|Drama
actor_1_name                                                       Roger Allam
movie_title                                                         The Queen 
num_voted_users                                                          85333
cast_total_facebook_likes                                                  486
actor_3_name                                                     Alex Jennings
facenumber_in_poster                                                         0
plot_keywords                monarchy|prime minister|princess diana|queen|s...
movie_imdb_link              http://www.imdb.com/title/tt0436697/?ref_=fn_t...
num_user_for_reviews                                                       421
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 9.8e+06
title_year                                                                2006
actor_2_facebook_likes                                                      48
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2622, dtype: object
color                                                                    Color
director_name                                                       Tim Burton
num_critic_for_reviews                                                     109
duration                                                                    92
director_facebook_likes                                                  13000
actor_3_facebook_likes                                                     217
actor_2_name                                                     Jeffrey Jones
actor_1_facebook_likes                                                     925
gross                                                              7.33267e+07
genres                                                          Comedy|Fantasy
actor_1_name                                                  Catherine O'Hara
movie_title                                                       Beetlejuice 
num_voted_users                                                         189413
cast_total_facebook_likes                                                 1953
actor_3_name                                                      Glenn Shadix
facenumber_in_poster                                                         3
plot_keywords                       attic|ghost|surrealism|teenage girl|yuppie
movie_imdb_link              http://www.imdb.com/title/tt0094721/?ref_=fn_t...
num_user_for_reviews                                                       306
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                1988
actor_2_facebook_likes                                                     692
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     15000
Name: 2623, dtype: object
color                                                                    Color
director_name                                                      Tyler Perry
num_critic_for_reviews                                                      41
duration                                                                   113
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     607
actor_2_name                                                       Tasha Smith
actor_1_facebook_likes                                                    2000
gross                                                              5.51847e+07
genres                                                            Comedy|Drama
actor_1_name                                                 Michael Jai White
movie_title                                            Why Did I Get Married? 
num_voted_users                                                           9811
cast_total_facebook_likes                                                 6510
actor_3_name                                                     Lamman Rucker
facenumber_in_poster                                                         8
plot_keywords                     marriage|overweight|psychologist|secret|work
movie_imdb_link              http://www.imdb.com/title/tt0906108/?ref_=fn_t...
num_user_for_reviews                                                       100
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     721
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 2624, dtype: object
color                                                                    Color
director_name                                                Gillian Armstrong
num_critic_for_reviews                                                      27
duration                                                                   115
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     902
actor_2_name                                                     Kirsten Dunst
actor_1_facebook_likes                                                   23000
gross                                                              5.00033e+07
genres                                                    Drama|Family|Romance
actor_1_name                                                    Christian Bale
movie_title                                                      Little Women 
num_voted_users                                                          36624
cast_total_facebook_likes                                                29370
actor_3_name                                                       Eric Stoltz
facenumber_in_poster                                                         4
plot_keywords                civil war|female protagonist|post civil war|re...
movie_imdb_link              http://www.imdb.com/title/tt0110367/?ref_=fn_t...
num_user_for_reviews                                                       132
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                1994
actor_2_facebook_likes                                                    4000
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2625, dtype: object
color                                                                    Color
director_name                                                    James Watkins
num_critic_for_reviews                                                     462
duration                                                                    95
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     259
actor_2_name                                                       Roger Allam
actor_1_facebook_likes                                                   11000
gross                                                              5.43223e+07
genres                                           Drama|Fantasy|Horror|Thriller
actor_1_name                                                  Daniel Radcliffe
movie_title                                                The Woman in Black 
num_voted_users                                                         139749
cast_total_facebook_likes                                                11946
actor_3_name                                                     Jessica Raine
facenumber_in_poster                                                         0
plot_keywords                afterlife|baby boy|bird in a cage|ghost|reunit...
movie_imdb_link              http://www.imdb.com/title/tt1596365/?ref_=fn_t...
num_user_for_reviews                                                       509
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.7e+07
title_year                                                                2012
actor_2_facebook_likes                                                     326
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     29000
Name: 2626, dtype: object
color                                                                    Color
director_name                                                       Simon West
num_critic_for_reviews                                                     152
duration                                                                    87
director_facebook_likes                                                    165
actor_3_facebook_likes                                                     383
actor_2_name                                                    Tessa Thompson
actor_1_facebook_likes                                                    1000
gross                                                              4.78602e+07
genres                                                         Horror|Thriller
actor_1_name                                                  Madeline Carroll
movie_title                                             When a Stranger Calls 
num_voted_users                                                          34711
cast_total_facebook_likes                                                 2452
actor_3_name                                                    Brian Geraghty
facenumber_in_poster                                                         0
plot_keywords                babysitting|cell phone|high school|nightmare|t...
movie_imdb_link              http://www.imdb.com/title/tt0455857/?ref_=fn_t...
num_user_for_reviews                                                       468
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     431
imdb_score                                                                   5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2627, dtype: object
color                                                                    Color
director_name                                                       Shawn Levy
num_critic_for_reviews                                                      69
duration                                                                    88
director_facebook_likes                                                    189
actor_3_facebook_likes                                                     799
actor_2_name                                                     Donald Faison
actor_1_facebook_likes                                                     934
gross                                                              4.78113e+07
genres                                                 Adventure|Comedy|Family
actor_1_name                                                     Frankie Muniz
movie_title                                                      Big Fat Liar 
num_voted_users                                                          29008
cast_total_facebook_likes                                                 3707
actor_3_name                                                        Lee Majors
facenumber_in_poster                                                         1
plot_keywords                          brunette|film producer|liar|prank|stunt
movie_imdb_link              http://www.imdb.com/title/tt0265298/?ref_=fn_t...
num_user_for_reviews                                                        99
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     927
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       896
Name: 2628, dtype: object
color                                                                    Color
director_name                                                   Michael Cimino
num_critic_for_reviews                                                     140
duration                                                                   183
director_facebook_likes                                                    517
actor_3_facebook_likes                                                     652
actor_2_name                                                      Meryl Streep
actor_1_facebook_likes                                                   22000
gross                                                                      NaN
genres                                                               Drama|War
actor_1_name                                                    Robert De Niro
movie_title                                                   The Deer Hunter 
num_voted_users                                                         232577
cast_total_facebook_likes                                                34025
actor_3_name                                                       John Savage
facenumber_in_poster                                                         2
plot_keywords                  escape|friend|party|pittsburgh steelers|vietnam
movie_imdb_link              http://www.imdb.com/title/tt0077416/?ref_=fn_t...
num_user_for_reviews                                                      1026
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1978
actor_2_facebook_likes                                                   11000
imdb_score                                                                 8.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 2629, dtype: object
color                                                                    Color
director_name                                                   Barry Levinson
num_critic_for_reviews                                                     130
duration                                                                    97
director_facebook_likes                                                    272
actor_3_facebook_likes                                                     957
actor_2_name                                                     Kirsten Dunst
actor_1_facebook_likes                                                   22000
gross                                                              4.30225e+07
genres                                                            Comedy|Drama
actor_1_name                                                    Robert De Niro
movie_title                                                       Wag the Dog 
num_voted_users                                                          67604
cast_total_facebook_likes                                                29252
actor_3_name                                              John Michael Higgins
facenumber_in_poster                                                         0
plot_keywords                       death|election|hollywood|president|scandal
movie_imdb_link              http://www.imdb.com/title/tt0120885/?ref_=fn_t...
num_user_for_reviews                                                       218
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1997
actor_2_facebook_likes                                                    4000
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     12000
Name: 2630, dtype: object
color                                                                    Color
director_name                                                         Jim Fall
num_critic_for_reviews                                                      66
duration                                                                    94
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     566
actor_2_name                                                      Adam Lamberg
actor_1_facebook_likes                                                     925
gross                                                              4.26726e+07
genres                                   Adventure|Comedy|Family|Music|Romance
actor_1_name                                                    Clayton Snyder
movie_title                                          The Lizzie McGuire Movie 
num_voted_users                                                          27580
cast_total_facebook_likes                                                 3423
actor_3_name                                                     Alex Borstein
facenumber_in_poster                                                         1
plot_keywords                       best friend|roma|singer|spaghetti|teenager
movie_imdb_link              http://www.imdb.com/title/tt0306841/?ref_=fn_t...
num_user_for_reviews                                                       172
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.7e+07
title_year                                                                2003
actor_2_facebook_likes                                                     738
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2631, dtype: object
color                                                                    Color
director_name                                                  Ric Roman Waugh
num_critic_for_reviews                                                     238
duration                                                                   112
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     874
actor_2_name                                                  Harold Perrineau
actor_1_facebook_likes                                                   12000
gross                                                              4.29191e+07
genres                                                   Action|Drama|Thriller
actor_1_name                                                    Dwayne Johnson
movie_title                                                            Snitch 
num_voted_users                                                          64747
cast_total_facebook_likes                                                15800
actor_3_name                                                  Nadine Velazquez
facenumber_in_poster                                                         1
plot_keywords                cigarette smoking|dea|drugs|inspired by true e...
movie_imdb_link              http://www.imdb.com/title/tt0882977/?ref_=fn_t...
num_user_for_reviews                                                       122
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2013
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 2632, dtype: object
color                                                                    Color
director_name                                                Michael Dougherty
num_critic_for_reviews                                                     198
duration                                                                    98
director_facebook_likes                                                     66
actor_3_facebook_likes                                                     562
actor_2_name                                                  Conchata Ferrell
actor_1_facebook_likes                                                    3000
gross                                                              4.25925e+07
genres                                                   Comedy|Fantasy|Horror
actor_1_name                                                        Adam Scott
movie_title                                                           Krampus 
num_voted_users                                                          29867
cast_total_facebook_likes                                                 4567
actor_3_name                                                    Allison Tolman
facenumber_in_poster                                                         0
plot_keywords                     christmas|german|holiday|krampus|santa claus
movie_imdb_link              http://www.imdb.com/title/tt3850590/?ref_=fn_t...
num_user_for_reviews                                                       181
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2015
actor_2_facebook_likes                                                     658
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     27000
Name: 2633, dtype: object
color                                                                    Color
director_name                                                 Robert Rodriguez
num_critic_for_reviews                                                     154
duration                                                                   104
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                       Salma Hayek
actor_1_facebook_likes                                                    4000
gross                                                               4.0065e+07
genres                                                   Horror|Mystery|Sci-Fi
actor_1_name                                                  Jordana Brewster
movie_title                                                       The Faculty 
num_voted_users                                                          92074
cast_total_facebook_likes                                                12170
actor_3_name                                                       Clea DuVall
facenumber_in_poster                                                         1
plot_keywords                        alien|high school|ohio|photographer|water
movie_imdb_link              http://www.imdb.com/title/tt0133751/?ref_=fn_t...
num_user_for_reviews                                                       502
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                    4000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2634, dtype: object
color                                                                    Color
director_name                                                     Brian Gibson
num_critic_for_reviews                                                      19
duration                                                                   118
director_facebook_likes                                                     13
actor_3_facebook_likes                                                       2
actor_2_name                                                   Virginia Capers
actor_1_facebook_likes                                                      90
gross                                                               3.9101e+07
genres                                                   Biography|Drama|Music
actor_1_name                                                     Rae'Ven Kelly
movie_title                                     What's Love Got to Do with It 
num_voted_users                                                          13442
cast_total_facebook_likes                                                  114
actor_3_name                                                  Dororthy Thorton
facenumber_in_poster                                                         0
plot_keywords                 abusive husband|love|singer|tina turner|violence
movie_imdb_link              http://www.imdb.com/title/tt0108551/?ref_=fn_t...
num_user_for_reviews                                                        59
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1993
actor_2_facebook_likes                                                      22
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2635, dtype: object
color                                                                    Color
director_name                                                    James Mangold
num_critic_for_reviews                                                     131
duration                                                                   120
director_facebook_likes                                                    446
actor_3_facebook_likes                                                    1000
actor_2_name                                                Sylvester Stallone
actor_1_facebook_likes                                                   22000
gross                                                              4.48861e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                    Robert De Niro
movie_title                                                          Cop Land 
num_voted_users                                                          69576
cast_total_facebook_likes                                                40117
actor_3_name                                                  Janeane Garofalo
facenumber_in_poster                                                         3
plot_keywords                corruption|faked death|falling off a roof|inte...
movie_imdb_link              http://www.imdb.com/title/tt0118887/?ref_=fn_t...
num_user_for_reviews                                                       207
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1997
actor_2_facebook_likes                                                   13000
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                      2000
Name: 2636, dtype: object
color                                                                    Color
director_name                                                      Joel Gallen
num_critic_for_reviews                                                      97
duration                                                                    99
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     971
actor_2_name                                             JoAnna Garcia Swisher
actor_1_facebook_likes                                                   11000
gross                                                              3.78826e+07
genres                                                                  Comedy
actor_1_name                                                       Chris Evans
movie_title                                            Not Another Teen Movie 
num_voted_users                                                          80305
cast_total_facebook_likes                                                15369
actor_3_name                                                      Mia Kirshner
facenumber_in_poster                                                         0
plot_keywords                cheerleader|foreign exchange student|incestuou...
movie_imdb_link              http://www.imdb.com/title/tt0277371/?ref_=fn_t...
num_user_for_reviews                                                       393
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                2001
actor_2_facebook_likes                                                     983
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2637, dtype: object
color                                                                    Color
director_name                                                       David Ayer
num_critic_for_reviews                                                     355
duration                                                                   109
director_facebook_likes                                                    453
actor_3_facebook_likes                                                     953
actor_2_name                                                     Anna Kendrick
actor_1_facebook_likes                                                   15000
gross                                                               4.0983e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                   Jake Gyllenhaal
movie_title                                                      End of Watch 
num_voted_users                                                         181025
cast_total_facebook_likes                                                27788
actor_3_name                                                   America Ferrera
facenumber_in_poster                                                         2
plot_keywords                lapd|police|police officer|south central los a...
movie_imdb_link              http://www.imdb.com/title/tt1855199/?ref_=fn_t...
num_user_for_reviews                                                       336
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2012
actor_2_facebook_likes                                                   10000
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     38000
Name: 2638, dtype: object
color                                                                    Color
director_name                                                    Cameron Crowe
num_critic_for_reviews                                                     138
duration                                                                   105
director_facebook_likes                                                    488
actor_3_facebook_likes                                                   13000
actor_2_name                                                    Bradley Cooper
actor_1_facebook_likes                                                   15000
gross                                                              2.09915e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                        Emma Stone
movie_title                                                             Aloha 
num_voted_users                                                          39782
cast_total_facebook_likes                                                44037
actor_3_name                                                       Bill Murray
facenumber_in_poster                                                         1
plot_keywords                box office flop|critically bashed|hawaii|one w...
movie_imdb_link              http://www.imdb.com/title/tt1243974/?ref_=fn_t...
num_user_for_reviews                                                       172
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 3.7e+07
title_year                                                                2015
actor_2_facebook_likes                                                   14000
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 2639, dtype: object
color                                                                    Color
director_name                                                        Rob Cohen
num_critic_for_reviews                                                     102
duration                                                                   106
director_facebook_likes                                                    357
actor_3_facebook_likes                                                     883
actor_2_name                                                       Leslie Bibb
actor_1_facebook_likes                                                   23000
gross                                                              3.50072e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                       Paul Walker
movie_title                                                        The Skulls 
num_voted_users                                                          26846
cast_total_facebook_likes                                                26652
actor_3_name                                                  William Petersen
facenumber_in_poster                                                         0
plot_keywords                 college|friend|ivy league|secret society|suicide
movie_imdb_link              http://www.imdb.com/title/tt0192614/?ref_=fn_t...
num_user_for_reviews                                                       193
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2640, dtype: object
color                                                                    Color
director_name                                                      James Marsh
num_critic_for_reviews                                                     419
duration                                                                   123
director_facebook_likes                                                    120
actor_3_facebook_likes                                                     149
actor_2_name                                                      Emily Watson
actor_1_facebook_likes                                                   13000
gross                                                              3.58873e+07
genres                                                 Biography|Drama|Romance
actor_1_name                                                    Eddie Redmayne
movie_title                                          The Theory of Everything 
num_voted_users                                                         265507
cast_total_facebook_likes                                                14100
actor_3_name                                                    Simon McBurney
facenumber_in_poster                                                         0
plot_keywords                based on memoir|cambridge university|husband w...
movie_imdb_link              http://www.imdb.com/title/tt2980516/?ref_=fn_t...
num_user_for_reviews                                                       388
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     876
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     90000
Name: 2641, dtype: object
color                                                                    Color
director_name                                                   John Whitesell
num_critic_for_reviews                                                      37
duration                                                                    86
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     685
actor_2_name                                                       Regina Hall
actor_1_facebook_likes                                                     833
gross                                                              3.43089e+07
genres                                                            Comedy|Crime
actor_1_name                                                     Greg Grunberg
movie_title                                              Malibu's Most Wanted 
num_voted_users                                                          15939
cast_total_facebook_likes                                                 4435
actor_3_name                                                   Blair Underwood
facenumber_in_poster                                                         3
plot_keywords                los angeles california|person in car trunk|rac...
movie_imdb_link              http://www.imdb.com/title/tt0328099/?ref_=fn_t...
num_user_for_reviews                                                        87
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                2003
actor_2_facebook_likes                                                     807
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2642, dtype: object
color                                                                    Color
director_name                                                    Matt Williams
num_critic_for_reviews                                                      78
duration                                                                   120
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     944
actor_2_name                                                       James Frain
actor_1_facebook_likes                                                   20000
gross                                                              3.37712e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                   Natalie Portman
movie_title                                                Where the Heart Is 
num_voted_users                                                          27044
cast_total_facebook_likes                                                22383
actor_3_name                                                 Stockard Channing
facenumber_in_poster                                                         2
plot_keywords                   birth|oklahoma|photographer|tennessee|wal mart
movie_imdb_link              http://www.imdb.com/title/tt0198021/?ref_=fn_t...
num_user_for_reviews                                                       240
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2643, dtype: object
color                                                                    Color
director_name                                                       David Lean
num_critic_for_reviews                                                     181
duration                                                                   227
director_facebook_likes                                                    767
actor_3_facebook_likes                                                      87
actor_2_name                                                       José Ferrer
actor_1_facebook_likes                                                     607
gross                                                                    6e+06
genres                                   Adventure|Biography|Drama|History|War
actor_1_name                                                      Claude Rains
movie_title                                                Lawrence of Arabia 
num_voted_users                                                         192775
cast_total_facebook_likes                                                 1076
actor_3_name                                                      Jack Hawkins
facenumber_in_poster                                                         8
plot_keywords                arab|british military|desert|ottoman empire|t....
movie_imdb_link              http://www.imdb.com/title/tt0056172/?ref_=fn_t...
num_user_for_reviews                                                       559
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                1962
actor_2_facebook_likes                                                     202
imdb_score                                                                 8.4
aspect_ratio                                                               2.2
movie_facebook_likes                                                     11000
Name: 2644, dtype: object
color                                                                    Color
director_name                                                       Rob Zombie
num_critic_for_reviews                                                     220
duration                                                                   119
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     593
actor_2_name                                                        Tyler Mane
actor_1_facebook_likes                                                     908
gross                                                              3.33861e+07
genres                                                                  Horror
actor_1_name                                              Scout Taylor-Compton
movie_title                                                      Halloween II 
num_voted_users                                                          36372
cast_total_facebook_likes                                                 3226
actor_3_name                                                     Margot Kidder
facenumber_in_poster                                                         0
plot_keywords                halloween|hospital|michael myers|rampage|vomiting
movie_imdb_link              http://www.imdb.com/title/tt1311067/?ref_=fn_t...
num_user_for_reviews                                                       491
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     764
imdb_score                                                                 4.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                      3000
Name: 2645, dtype: object
color                                                                    Color
director_name                                                 Jean-Marc Vallée
num_critic_for_reviews                                                     349
duration                                                                   115
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     612
actor_2_name                                                      Kevin Rankin
actor_1_facebook_likes                                                    2000
gross                                                               3.7878e+07
genres                                               Adventure|Biography|Drama
actor_1_name                                                   Michiel Huisman
movie_title                                                              Wild 
num_voted_users                                                          86664
cast_total_facebook_likes                                                 4896
actor_3_name                                                     Gaby Hoffmann
facenumber_in_poster                                                         1
plot_keywords                female protagonist|grief|hiking|loss of mother...
movie_imdb_link              http://www.imdb.com/title/tt2305051/?ref_=fn_t...
num_user_for_reviews                                                       252
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     820
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     38000
Name: 2646, dtype: object
color                                                                    Color
director_name                                                   Dennis Iliadis
num_critic_for_reviews                                                     241
duration                                                                   114
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     616
actor_2_name                                                     Monica Potter
actor_1_facebook_likes                                                     956
gross                                                              3.27216e+07
genres                                                   Crime|Horror|Thriller
actor_1_name                                                      Tony Goldwyn
movie_title                                        The Last House on the Left 
num_voted_users                                                          67822
cast_total_facebook_likes                                                 3861
actor_3_name                                                   Martha MacIsaac
facenumber_in_poster                                                         0
plot_keywords                  kidnapping|lake|microwave oven|psychopath|woods
movie_imdb_link              http://www.imdb.com/title/tt0844708/?ref_=fn_t...
num_user_for_reviews                                                       279
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     878
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2647, dtype: object
color                                                                    Color
director_name                                                     Clare Kilner
num_critic_for_reviews                                                     103
duration                                                                    90
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     458
actor_2_name                                                     Debra Messing
actor_1_facebook_likes                                                    1000
gross                                                              3.15853e+07
genres                                                          Comedy|Romance
actor_1_name                                                    Jack Davenport
movie_title                                                  The Wedding Date 
num_voted_users                                                          38248
cast_total_facebook_likes                                                 2666
actor_3_name                                                    Holland Taylor
facenumber_in_poster                                                         0
plot_keywords                chick flick|escort|male escort|wedding|wedding...
movie_imdb_link              http://www.imdb.com/title/tt0372532/?ref_=fn_t...
num_user_for_reviews                                                       250
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     650
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2648, dtype: object
color                                                                    Color
director_name                                                   Rick Rosenthal
num_critic_for_reviews                                                     151
duration                                                                    94
director_facebook_likes                                                     28
actor_3_facebook_likes                                                     731
actor_2_name                                               Thomas Ian Nicholas
actor_1_facebook_likes                                                    2000
gross                                                              3.02597e+07
genres                                                  Comedy|Horror|Thriller
actor_1_name                                                  Jamie Lee Curtis
movie_title                                           Halloween: Resurrection 
num_voted_users                                                          26905
cast_total_facebook_likes                                                 5440
actor_3_name                                                    Bianca Kajlich
facenumber_in_poster                                                         5
plot_keywords                cult film|halloween|killer|michael myers|seria...
movie_imdb_link              http://www.imdb.com/title/tt0220506/?ref_=fn_t...
num_user_for_reviews                                                       614
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     864
imdb_score                                                                 4.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2649, dtype: object
color                                                                    Color
director_name                                                  Louis Leterrier
num_critic_for_reviews                                                     344
duration                                                                   106
director_facebook_likes                                                    255
actor_3_facebook_likes                                                     850
actor_2_name                                                     Jason Flemyng
actor_1_facebook_likes                                                   14000
gross                                                              1.63192e+08
genres                                                Action|Adventure|Fantasy
actor_1_name                                                       Liam Neeson
movie_title                                               Clash of the Titans 
num_voted_users                                                         229687
cast_total_facebook_likes                                                18003
actor_3_name                                                     Alexa Davalos
facenumber_in_poster                                                         0
plot_keywords                 famous line|hand to hand combat|kraken|rape|zeus
movie_imdb_link              http://www.imdb.com/title/tt0800320/?ref_=fn_t...
num_user_for_reviews                                                       637
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+08
title_year                                                                2010
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 2650, dtype: object
color                                                                    Color
director_name                                                       Rob Reiner
num_critic_for_reviews                                                     185
duration                                                                    98
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     594
actor_2_name                                                        Carol Kane
actor_1_facebook_likes                                                   18000
gross                                                              3.08578e+07
genres                                        Adventure|Family|Fantasy|Romance
actor_1_name                                                      Robin Wright
movie_title                                                The Princess Bride 
num_voted_users                                                         294163
cast_total_facebook_likes                                                20060
actor_3_name                                                   André the Giant
facenumber_in_poster                                                         0
plot_keywords                       fairy tale|giant|pirate|princess|true love
movie_imdb_link              http://www.imdb.com/title/tt0093779/?ref_=fn_t...
num_user_for_reviews                                                       718
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.6e+07
title_year                                                                1987
actor_2_facebook_likes                                                     636
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     33000
Name: 2651, dtype: object
color                                                                    Color
director_name                                                Denzel Washington
num_critic_for_reviews                                                     112
duration                                                                   126
director_facebook_likes                                                  18000
actor_3_facebook_likes                                                     697
actor_2_name                                              Jurnee Smollett-Bell
actor_1_facebook_likes                                                   18000
gross                                                              3.02261e+07
genres                                                         Biography|Drama
actor_1_name                                                 Denzel Washington
movie_title                                                The Great Debaters 
num_voted_users                                                          47626
cast_total_facebook_likes                                                22745
actor_3_name                                                        John Heard
facenumber_in_poster                                                         1
plot_keywords                       college|debate|student|texas|wiley college
movie_imdb_link              http://www.imdb.com/title/tt0427309/?ref_=fn_t...
num_user_for_reviews                                                       118
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                    2000
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2652, dtype: object
color                                                                    Color
director_name                                             Nicolas Winding Refn
num_critic_for_reviews                                                     676
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     228
actor_2_name                                                     Albert Brooks
actor_1_facebook_likes                                                   33000
gross                                                              3.50549e+07
genres                                                             Crime|Drama
actor_1_name                                                      Ryan Gosling
movie_title                                                             Drive 
num_voted_users                                                         431578
cast_total_facebook_likes                                                34337
actor_3_name                                                      Russ Tamblyn
facenumber_in_poster                                                         0
plot_keywords                kissing in an elevator|mythical hero|neo noir|...
movie_imdb_link              http://www.imdb.com/title/tt0780504/?ref_=fn_t...
num_user_for_reviews                                                      1264
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                     745
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     81000
Name: 2653, dtype: object
color                                                                    Color
director_name                                                    Sara Sugarman
num_critic_for_reviews                                                      74
duration                                                                    89
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     231
actor_2_name                                                        Carol Kane
actor_1_facebook_likes                                                     811
gross                                                              2.93021e+07
genres                                             Comedy|Family|Music|Romance
actor_1_name                                                       Adam Garcia
movie_title                              Confessions of a Teenage Drama Queen 
num_voted_users                                                          23408
cast_total_facebook_likes                                                 2167
actor_3_name                                                     Glenne Headly
facenumber_in_poster                                                         8
plot_keywords                        band|friend|new york city|suburb|teenager
movie_imdb_link              http://www.imdb.com/title/tt0361467/?ref_=fn_t...
num_user_for_reviews                                                       105
language                                                               English
country                                                                Germany
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     636
imdb_score                                                                 4.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       810
Name: 2654, dtype: object
color                                                                    Color
director_name                                                  Nicholas Hytner
num_critic_for_reviews                                                      65
duration                                                                   111
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     106
actor_2_name                                                          Tim Daly
actor_1_facebook_likes                                                     818
gross                                                              2.91067e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                        Liam Aiken
movie_title                                        The Object of My Affection 
num_voted_users                                                          15582
cast_total_facebook_likes                                                 1450
actor_3_name                                                        Kali Rocha
facenumber_in_poster                                                         0
plot_keywords                         baby|dancing|gay|name calling|penis slur
movie_imdb_link              http://www.imdb.com/title/tt0120772/?ref_=fn_t...
num_user_for_reviews                                                       132
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     511
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       849
Name: 2655, dtype: object
color                                                                    Color
director_name                                          Juan Carlos Fresnadillo
num_critic_for_reviews                                                     274
duration                                                                   100
director_facebook_likes                                                     35
actor_3_facebook_likes                                                     306
actor_2_name                                                  Harold Perrineau
actor_1_facebook_likes                                                   10000
gross                                                              2.86375e+07
genres                                                     Drama|Horror|Sci-Fi
actor_1_name                                                     Jeremy Renner
movie_title                                                    28 Weeks Later 
num_voted_users                                                         212167
cast_total_facebook_likes                                                11471
actor_3_name                                               Catherine McCormack
facenumber_in_poster                                                         1
plot_keywords                paris france|rage|sniper|u.s. army|zombie apoc...
movie_imdb_link              http://www.imdb.com/title/tt0463854/?ref_=fn_t...
num_user_for_reviews                                                       713
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                    1000
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2656, dtype: object
color                                                                    Color
director_name                                                    Thomas Carter
num_critic_for_reviews                                                      50
duration                                                                   115
director_facebook_likes                                                     49
actor_3_facebook_likes                                                     100
actor_2_name                                                  Matthew Daddario
actor_1_facebook_likes                                                     116
gross                                                               3.0128e+07
genres                                                      Drama|Family|Sport
actor_1_name                                                   Jessie T. Usher
movie_title                                         When the Game Stands Tall 
num_voted_users                                                          12596
cast_total_facebook_likes                                                  525
actor_3_name                                                  Ser'Darius Blain
facenumber_in_poster                                                         0
plot_keywords                                       coach|high school football
movie_imdb_link              http://www.imdb.com/title/tt2247476/?ref_=fn_t...
num_user_for_reviews                                                        64
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     110
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2657, dtype: object
color                                                                    Color
director_name                                                       Wayne Wang
num_critic_for_reviews                                                      96
duration                                                                   106
director_facebook_likes                                                     61
actor_3_facebook_likes                                                     649
actor_2_name                                                      Luke Benward
actor_1_facebook_likes                                                     907
gross                                                              3.26455e+07
genres                                                     Comedy|Drama|Family
actor_1_name                                                      Cicely Tyson
movie_title                                             Because of Winn-Dixie 
num_voted_users                                                           8427
cast_total_facebook_likes                                                 3462
actor_3_name                                                   Eva Marie Saint
facenumber_in_poster                                                         5
plot_keywords                         10 year old|dog|florida|girl|supermarket
movie_imdb_link              http://www.imdb.com/title/tt0317132/?ref_=fn_t...
num_user_for_reviews                                                        88
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.4e+07
title_year                                                                2005
actor_2_facebook_likes                                                     807
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 2658, dtype: object
color                                                                    Color
director_name                                            Gina Prince-Bythewood
num_critic_for_reviews                                                      68
duration                                                                   124
director_facebook_likes                                                    107
actor_3_facebook_likes                                                     865
actor_2_name                                                      Sanaa Lathan
actor_1_facebook_likes                                                    1000
gross                                                              2.74411e+07
genres                                                     Drama|Romance|Sport
actor_1_name                                                     Alfre Woodard
movie_title                                                 Love & Basketball 
num_voted_users                                                          14322
cast_total_facebook_likes                                                 5135
actor_3_name                                                         Omar Epps
facenumber_in_poster                                                         0
plot_keywords                basketball movie|female basketball player|high...
movie_imdb_link              http://www.imdb.com/title/tt0199725/?ref_=fn_t...
num_user_for_reviews                                                       116
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     886
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2659, dtype: object
color                                                                    Color
director_name                                                  George Armitage
num_critic_for_reviews                                                     111
duration                                                                   107
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     141
actor_2_name                                                   Michael Cudlitz
actor_1_facebook_likes                                                     893
gross                                                              2.80145e+07
genres                                    Action|Comedy|Crime|Romance|Thriller
actor_1_name                                                     Minnie Driver
movie_title                                               Grosse Pointe Blank 
num_voted_users                                                          73347
cast_total_facebook_likes                                                 2044
actor_3_name                                                     Mitchell Ryan
facenumber_in_poster                                                         1
plot_keywords                assassin|high school|high school reunion|reuni...
movie_imdb_link              http://www.imdb.com/title/tt0119229/?ref_=fn_t...
num_user_for_reviews                                                       296
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     822
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2660, dtype: object
color                                                                    Color
director_name                                                      Phil Traill
num_critic_for_reviews                                                     128
duration                                                                    99
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     628
actor_2_name                                                        Katy Mixon
actor_1_facebook_likes                                                   14000
gross                                                                3.386e+07
genres                                                          Comedy|Romance
actor_1_name                                                    Bradley Cooper
movie_title                                                   All About Steve 
num_voted_users                                                          33088
cast_total_facebook_likes                                                16461
actor_3_name                                                        Beth Grant
facenumber_in_poster                                                         3
plot_keywords                blind date|crossword puzzle|eccentric|fall|min...
movie_imdb_link              http://www.imdb.com/title/tt0881891/?ref_=fn_t...
num_user_for_reviews                                                       143
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     982
imdb_score                                                                 4.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2661, dtype: object
color                                                                    Color
director_name                                                    Joe Berlinger
num_critic_for_reviews                                                     160
duration                                                                    90
director_facebook_likes                                                     31
actor_3_facebook_likes                                                     162
actor_2_name                                                    Erica Leerhsen
actor_1_facebook_likes                                                     193
gross                                                              2.64213e+07
genres                               Adventure|Fantasy|Horror|Mystery|Thriller
actor_1_name                                                      Kim Director
movie_title                                    Book of Shadows: Blair Witch 2 
num_voted_users                                                          28964
cast_total_facebook_likes                                                  608
actor_3_name                                                        Kurt Loder
facenumber_in_poster                                                         0
plot_keywords                convenience store|digit in title|punctuation i...
movie_imdb_link              http://www.imdb.com/title/tt0229260/?ref_=fn_t...
num_user_for_reviews                                                       457
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     184
imdb_score                                                                   4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       949
Name: 2662, dtype: object
color                                                                    Color
director_name                                                   Andrew Fleming
num_critic_for_reviews                                                      93
duration                                                                   101
director_facebook_likes                                                     26
actor_3_facebook_likes                                                     266
actor_2_name                                                       Rachel True
actor_1_facebook_likes                                                     838
gross                                                               2.4881e+07
genres                                           Drama|Fantasy|Horror|Thriller
actor_1_name                                                  Christine Taylor
movie_title                                                         The Craft 
num_voted_users                                                          57140
cast_total_facebook_likes                                                 1812
actor_3_name                                                     Brenda Strong
facenumber_in_poster                                                         0
plot_keywords                                 coven|occult|outcast|spell|witch
movie_imdb_link              http://www.imdb.com/title/tt0115963/?ref_=fn_t...
num_user_for_reviews                                                       195
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1996
actor_2_facebook_likes                                                     328
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                      6000
Name: 2663, dtype: object
color                                                                    Color
director_name                                                      Woody Allen
num_critic_for_reviews                                                     278
duration                                                                   119
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     400
actor_2_name                                                       Mark Gatiss
actor_1_facebook_likes                                                   19000
gross                                                              2.30899e+07
genres                                                  Drama|Romance|Thriller
actor_1_name                                                Scarlett Johansson
movie_title                                                       Match Point 
num_voted_users                                                         166269
cast_total_facebook_likes                                                20391
actor_3_name                                                   Penelope Wilton
facenumber_in_poster                                                         3
plot_keywords                extramarital affair|infidelity|irony of fate|s...
movie_imdb_link              http://www.imdb.com/title/tt0416320/?ref_=fn_t...
num_user_for_reviews                                                       735
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     567
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2664, dtype: object
color                                                                    Color
director_name                                        Elizabeth Allen Rosenbaum
num_critic_for_reviews                                                      81
duration                                                                   103
director_facebook_likes                                                     20
actor_3_facebook_likes                                                     125
actor_2_name                                                        Hutch Dano
actor_1_facebook_likes                                                     512
gross                                                              2.61614e+07
genres                                         Adventure|Comedy|Family|Fantasy
actor_1_name                                                  Sierra McCormick
movie_title                                                 Ramona and Beezus 
num_voted_users                                                          13874
cast_total_facebook_likes                                                 1002
actor_3_name                                                     Jason Spevack
facenumber_in_poster                                                         2
plot_keywords                    aunt|cat|death of pet|girl|no opening credits
movie_imdb_link              http://www.imdb.com/title/tt0493949/?ref_=fn_t...
num_user_for_reviews                                                        52
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 1.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                     316
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2665, dtype: object
color                                                                    Color
director_name                                                      James Ivory
num_critic_for_reviews                                                      58
duration                                                                   134
director_facebook_likes                                                    133
actor_3_facebook_likes                                                     258
actor_2_name                                                     Peter Vaughan
actor_1_facebook_likes                                                   12000
gross                                                               2.2955e+07
genres                                                           Drama|Romance
actor_1_name                                                   Anthony Hopkins
movie_title                                            The Remains of the Day 
num_voted_users                                                          45703
cast_total_facebook_likes                                                12749
actor_3_name                                                       Ben Chaplin
facenumber_in_poster                                                         1
plot_keywords                         butler|housekeeper|manor|servant|service
movie_imdb_link              http://www.imdb.com/title/tt0107943/?ref_=fn_t...
num_user_for_reviews                                                       156
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                1.15e+07
title_year                                                                1993
actor_2_facebook_likes                                                     310
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2666, dtype: object
color                                                                    Color
director_name                                             Paul Thomas Anderson
num_critic_for_reviews                                                     153
duration                                                                   155
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     170
actor_2_name                                                 Nicole Ari Parker
actor_1_facebook_likes                                                    3000
gross                                                              2.63849e+07
genres                                                                   Drama
actor_1_name                                                       Don Cheadle
movie_title                                                     Boogie Nights 
num_voted_users                                                         189032
cast_total_facebook_likes                                                 3677
actor_3_name                                                      Nina Hartley
facenumber_in_poster                                                        15
plot_keywords                1970s|adult entertainment industry|nightclub|p...
movie_imdb_link              http://www.imdb.com/title/tt0118749/?ref_=fn_t...
num_user_for_reviews                                                       560
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1997
actor_2_facebook_likes                                                     360
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2667, dtype: object
color                                                                    Color
director_name                                                    Robert Harmon
num_critic_for_reviews                                                      25
duration                                                                    94
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     232
actor_2_name                                                  Rosanna Arquette
actor_1_facebook_likes                                                    1000
gross                                                               2.2189e+07
genres                                     Action|Crime|Drama|Romance|Thriller
actor_1_name                                                     Kieran Culkin
movie_title                                                    Nowhere to Run 
num_voted_users                                                          17074
cast_total_facebook_likes                                                 2210
actor_3_name                                                      Joss Ackland
facenumber_in_poster                                                         0
plot_keywords                   business|escaped convict|farm|motorcycle|widow
movie_imdb_link              http://www.imdb.com/title/tt0107711/?ref_=fn_t...
num_user_for_reviews                                                        55
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1993
actor_2_facebook_likes                                                     605
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       466
Name: 2668, dtype: object
color                                                                    Color
director_name                                                    Michael Mayer
num_critic_for_reviews                                                      46
duration                                                                    95
director_facebook_likes                                                     15
actor_3_facebook_likes                                                     461
actor_2_name                                                        Danny Pino
actor_1_facebook_likes                                                    1000
gross                                                              2.09987e+07
genres                                                  Adventure|Drama|Family
actor_1_name                                                     Alison Lohman
movie_title                                                            Flicka 
num_voted_users                                                           6095
cast_total_facebook_likes                                                 3845
actor_3_name                                                        Tim McGraw
facenumber_in_poster                                                         0
plot_keywords                father son relationship|horse|horse ranch|ranc...
movie_imdb_link              http://www.imdb.com/title/tt0434215/?ref_=fn_t...
num_user_for_reviews                                                        76
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     786
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 2669, dtype: object
color                                                                    Color
director_name                                                     Martin Weisz
num_critic_for_reviews                                                     161
duration                                                                    89
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     399
actor_2_name                                                   Daniella Alonso
actor_1_facebook_likes                                                     919
gross                                                              2.08013e+07
genres                                                                  Horror
actor_1_name                                                        Jeff Kober
movie_title                                            The Hills Have Eyes II 
num_voted_users                                                          49721
cast_total_facebook_likes                                                 2559
actor_3_name                                                      Jacob Vargas
facenumber_in_poster                                                         0
plot_keywords                                  desert|fight|hill|murder|mutant
movie_imdb_link              http://www.imdb.com/title/tt0800069/?ref_=fn_t...
num_user_for_reviews                                                       211
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     557
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2670, dtype: object
color                                                                    Color
director_name                                                      John Ottman
num_critic_for_reviews                                                     108
duration                                                                    97
director_facebook_likes                                                     83
actor_3_facebook_likes                                                     579
actor_2_name                                                     Joey Lawrence
actor_1_facebook_likes                                                     912
gross                                                              2.14688e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                    Loretta Devine
movie_title                                          Urban Legends: Final Cut 
num_voted_users                                                          13048
cast_total_facebook_likes                                                 2682
actor_3_name                                                   Jacinda Barrett
facenumber_in_poster                                                         2
plot_keywords                film set|movie set|sequel|slow motion|urban le...
movie_imdb_link              http://www.imdb.com/title/tt0192731/?ref_=fn_t...
num_user_for_reviews                                                       227
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                2000
actor_2_facebook_likes                                                     786
imdb_score                                                                 4.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       243
Name: 2671, dtype: object
color                                                                    Color
director_name                                                      Jay Russell
num_critic_for_reviews                                                      69
duration                                                                    90
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     613
actor_2_name                                                      Sissy Spacek
actor_1_facebook_likes                                                     882
gross                                                              1.91581e+07
genres                                            Drama|Family|Fantasy|Romance
actor_1_name                                                      William Hurt
movie_title                                                  Tuck Everlasting 
num_voted_users                                                          17983
cast_total_facebook_likes                                                 2661
actor_3_name                                                  Jonathan Jackson
facenumber_in_poster                                                         2
plot_keywords                fountain of youth|immortality|secret|woods|you...
movie_imdb_link              http://www.imdb.com/title/tt0283084/?ref_=fn_t...
num_user_for_reviews                                                       127
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     874
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2672, dtype: object
color                                                                    Color
director_name                                                      John Bonito
num_critic_for_reviews                                                      78
duration                                                                    92
director_facebook_likes                                                      8
actor_3_facebook_likes                                                     129
actor_2_name                                                     Firass Dirani
actor_1_facebook_likes                                                     472
gross                                                              1.88433e+07
genres                                                   Action|Drama|Thriller
actor_1_name                                                     Kelly Carlson
movie_title                                                        The Marine 
num_voted_users                                                          27486
cast_total_facebook_likes                                                 1045
actor_3_name                                                       Drew Powell
facenumber_in_poster                                                         1
plot_keywords                       beating|marine|muscleman|tied up|tough guy
movie_imdb_link              http://www.imdb.com/title/tt0419946/?ref_=fn_t...
num_user_for_reviews                                                       284
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+07
title_year                                                                2006
actor_2_facebook_likes                                                     239
imdb_score                                                                 4.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2673, dtype: object
color                                                                    Color
director_name                                                    Peter Atencio
num_critic_for_reviews                                                     129
duration                                                                   100
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     415
actor_2_name                                                        Will Forte
actor_1_facebook_likes                                                     826
gross                                                              2.05663e+07
genres                                                           Action|Comedy
actor_1_name                                                          Nia Long
movie_title                                                             Keanu 
num_voted_users                                                          15385
cast_total_facebook_likes                                                 2958
actor_3_name                                                Keegan-Michael Key
facenumber_in_poster                                                         2
plot_keywords                        car chase|gangsta|gun fight|hitman|kitten
movie_imdb_link              http://www.imdb.com/title/tt4139124/?ref_=fn_t...
num_user_for_reviews                                                        84
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2016
actor_2_facebook_likes                                                     622
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2674, dtype: object
color                                                                    Color
director_name                                                      Shana Feste
num_critic_for_reviews                                                     135
duration                                                                   117
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     461
actor_2_name                                                      Cinda McCain
actor_1_facebook_likes                                                    3000
gross                                                              2.02189e+07
genres                                                             Drama|Music
actor_1_name                                                  Leighton Meester
movie_title                                                    Country Strong 
num_voted_users                                                          14814
cast_total_facebook_likes                                                 4204
actor_3_name                                                        Tim McGraw
facenumber_in_poster                                                         4
plot_keywords                country music|panties|pink panties|relapse|son...
movie_imdb_link              http://www.imdb.com/title/tt1555064/?ref_=fn_t...
num_user_for_reviews                                                       114
language                                                               English
country                                                          Official site
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                     646
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2675, dtype: object
color                                                                    Color
director_name                                                     David Nutter
num_critic_for_reviews                                                      96
duration                                                                    84
director_facebook_likes                                                    119
actor_3_facebook_likes                                                     918
actor_2_name                                                       Ethan Embry
actor_1_facebook_likes                                                     989
gross                                                              1.74113e+07
genres                                          Horror|Mystery|Sci-Fi|Thriller
actor_1_name                                                   Bruce Greenwood
movie_title                                               Disturbing Behavior 
num_voted_users                                                          17328
cast_total_facebook_likes                                                 4660
actor_3_name                                                Katharine Isabelle
facenumber_in_poster                                                         3
plot_keywords                       blue ribbon|high school|jacket|jock|yogurt
movie_imdb_link              http://www.imdb.com/title/tt0134619/?ref_=fn_t...
num_user_for_reviews                                                       237
language                                                               English
country                                                              Australia
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     982
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       673
Name: 2676, dtype: object
color                                                                    Color
director_name                                                 Derek Cianfrance
num_critic_for_reviews                                                     417
duration                                                                   140
director_facebook_likes                                                    310
actor_3_facebook_likes                                                     619
actor_2_name                                                    Ben Mendelsohn
actor_1_facebook_likes                                                   33000
gross                                                              2.13833e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                      Ryan Gosling
movie_title                                        The Place Beyond the Pines 
num_voted_users                                                         187170
cast_total_facebook_likes                                                34413
actor_3_name                                              Angelo Anthony Pizza
facenumber_in_poster                                                         3
plot_keywords                       bank|carnival|motorcycle|police|rookie cop
movie_imdb_link              http://www.imdb.com/title/tt1817273/?ref_=fn_t...
num_user_for_reviews                                                       376
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     748
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     47000
Name: 2677, dtype: object
color                                                                    Color
director_name                                                  Roger Donaldson
num_critic_for_reviews                                                     172
duration                                                                   108
director_facebook_likes                                                     79
actor_3_facebook_likes                                                     537
actor_2_name                                                       Akie Kotabe
actor_1_facebook_likes                                                     775
gross                                                              2.49849e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                       Luke Bracey
movie_title                                                  The November Man 
num_voted_users                                                          50056
cast_total_facebook_likes                                                 3033
actor_3_name                                                       Will Patton
facenumber_in_poster                                                         2
plot_keywords                critically bashed|premarital sex|sex scene|sex...
movie_imdb_link              http://www.imdb.com/title/tt2402157/?ref_=fn_t...
num_user_for_reviews                                                       152
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     614
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2678, dtype: object
color                                                                    Color
director_name                                                  Stephan Elliott
num_critic_for_reviews                                                      88
duration                                                                   109
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     159
actor_2_name                                                    Patrick Bergin
actor_1_facebook_likes                                                     471
gross                                                               1.6459e+07
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                   Jason Priestley
movie_title                                               Eye of the Beholder 
num_voted_users                                                          13320
cast_total_facebook_likes                                                 1069
actor_3_name                                                  Geneviève Bujold
facenumber_in_poster                                                         1
plot_keywords                chicago illinois|false identity|femme fatale|n...
movie_imdb_link              http://www.imdb.com/title/tt0120662/?ref_=fn_t...
num_user_for_reviews                                                       415
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     308
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       327
Name: 2679, dtype: object
color                                                                    Color
director_name                                                  Kathryn Bigelow
num_critic_for_reviews                                                     388
duration                                                                   131
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     383
actor_2_name                                                 Christian Camargo
actor_1_facebook_likes                                                   10000
gross                                                                 1.57e+07
genres                                              Drama|History|Thriller|War
actor_1_name                                                     Jeremy Renner
movie_title                                                   The Hurt Locker 
num_voted_users                                                         332065
cast_total_facebook_likes                                                11114
actor_3_name                                                    Brian Geraghty
facenumber_in_poster                                                         0
plot_keywords                               army|bomb|dangerous job|death|iraq
movie_imdb_link              http://www.imdb.com/title/tt0887912/?ref_=fn_t...
num_user_for_reviews                                                       876
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                     602
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     16000
Name: 2680, dtype: object
color                                                                    Color
director_name                                                   Mark L. Lester
num_critic_for_reviews                                                      45
duration                                                                   114
director_facebook_likes                                                     73
actor_3_facebook_likes                                                     563
actor_2_name                                                   George C. Scott
actor_1_facebook_likes                                                     695
gross                                                                 1.51e+07
genres                                           Action|Horror|Sci-Fi|Thriller
actor_1_name                                                  Heather Locklear
movie_title                                                       Firestarter 
num_voted_users                                                          22797
cast_total_facebook_likes                                                 3444
actor_3_name                                                       David Keith
facenumber_in_poster                                                         1
plot_keywords                captain|experiment|fire|psychic|secret governm...
movie_imdb_link              http://www.imdb.com/title/tt0087262/?ref_=fn_t...
num_user_for_reviews                                                        96
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1984
actor_2_facebook_likes                                                     654
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2681, dtype: object
color                                                                    Color
director_name                                                   Andrew Dominik
num_critic_for_reviews                                                     414
duration                                                                    97
director_facebook_likes                                                    181
actor_3_facebook_likes                                                     748
actor_2_name                                                       Sam Shepard
actor_1_facebook_likes                                                   11000
gross                                                              1.49386e+07
genres                                                          Crime|Thriller
actor_1_name                                                         Brad Pitt
movie_title                                               Killing Them Softly 
num_voted_users                                                         111625
cast_total_facebook_likes                                                14025
actor_3_name                                                    Ben Mendelsohn
facenumber_in_poster                                                         1
plot_keywords                exploding car|hit by a car|poker game|punched ...
movie_imdb_link              http://www.imdb.com/title/tt1764234/?ref_=fn_t...
num_user_for_reviews                                                       369
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     820
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     20000
Name: 2682, dtype: object
color                                                                    Color
director_name                                                    Anton Corbijn
num_critic_for_reviews                                                     291
duration                                                                   122
director_facebook_likes                                                    210
actor_3_facebook_likes                                                     123
actor_2_name                                                         Nina Hoss
actor_1_facebook_likes                                                   22000
gross                                                              1.72372e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                            Philip Seymour Hoffman
movie_title                                                 A Most Wanted Man 
num_voted_users                                                          57210
cast_total_facebook_likes                                                22574
actor_3_name                                                  Homayoun Ershadi
facenumber_in_poster                                                         3
plot_keywords                intelligence|intelligence agency|secret servic...
movie_imdb_link              http://www.imdb.com/title/tt1972571/?ref_=fn_t...
num_user_for_reviews                                                       158
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     164
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 2683, dtype: object
color                                                                    Color
director_name                                                        Tom Green
num_critic_for_reviews                                                      97
duration                                                                    87
director_facebook_likes                                                    374
actor_3_facebook_likes                                                     484
actor_2_name                                                  Harland Williams
actor_1_facebook_likes                                                     826
gross                                                               1.4249e+07
genres                                                                  Comedy
actor_1_name                                                          Rip Torn
movie_title                                               Freddy Got Fingered 
num_voted_users                                                          39788
cast_total_facebook_likes                                                 2689
actor_3_name                                                 Eddie Kaye Thomas
facenumber_in_poster                                                         1
plot_keywords                  animator|bamboo cane|cartoonist|sausage|slacker
movie_imdb_link              http://www.imdb.com/title/tt0240515/?ref_=fn_t...
num_user_for_reviews                                                       619
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2001
actor_2_facebook_likes                                                     503
imdb_score                                                                 4.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2684, dtype: object
color                                                                    Color
director_name                                                    Mike Nawrocki
num_critic_for_reviews                                                      37
duration                                                                    85
director_facebook_likes                                                     12
actor_3_facebook_likes                                                      23
actor_2_name                                                        Cam Clarke
actor_1_facebook_likes                                                     354
gross                                                              1.27019e+07
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                                    Yuri Lowenthal
movie_title                  The Pirates Who Don't Do Anything: A VeggieTal...
num_voted_users                                                           2037
cast_total_facebook_likes                                                  568
actor_3_name                                                      Phil Vischer
facenumber_in_poster                                                         0
plot_keywords                        17th century|king|pirate|vegetable|waiter
movie_imdb_link              http://www.imdb.com/title/tt0475998/?ref_=fn_t...
num_user_for_reviews                                                        22
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 1.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                     173
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       175
Name: 2685, dtype: object
color                                                                    Color
director_name                                                  Catherine Owens
num_critic_for_reviews                                                      68
duration                                                                    85
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      44
actor_2_name                                                          The Edge
actor_1_facebook_likes                                                     468
gross                                                              1.03537e+07
genres                                                       Documentary|Music
actor_1_name                                                              Bono
movie_title                                                             U2 3D 
num_voted_users                                                           2673
cast_total_facebook_likes                                                  646
actor_3_name                                                  Larry Mullen Jr.
facenumber_in_poster                                                         0
plot_keywords                   3d in title|digit in title|rock band|rocker|u2
movie_imdb_link              http://www.imdb.com/title/tt0892375/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                     NaN
title_year                                                                2007
actor_2_facebook_likes                                                      67
imdb_score                                                                 8.4
aspect_ratio                                                              1.78
movie_facebook_likes                                                       116
Name: 2686, dtype: object
color                                                                    Color
director_name                                              Douglas Aarniokoski
num_critic_for_reviews                                                      90
duration                                                                   101
director_facebook_likes                                                     36
actor_3_facebook_likes                                                     377
actor_2_name                                                       Adrian Paul
actor_1_facebook_likes                                                    1000
gross                                                              1.28012e+07
genres                                         Action|Adventure|Fantasy|Sci-Fi
actor_1_name                                               Christopher Lambert
movie_title                                               Highlander: Endgame 
num_voted_users                                                          16340
cast_total_facebook_likes                                                 2764
actor_3_name                                                     Adam Copeland
facenumber_in_poster                                                         1
plot_keywords                battle|explosion|immortal|revenge|sequel to cu...
movie_imdb_link              http://www.imdb.com/title/tt0144964/?ref_=fn_t...
num_user_for_reviews                                                       355
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     786
imdb_score                                                                 4.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       356
Name: 2687, dtype: object
color                                                                    Color
director_name                                                     Bryan Barber
num_critic_for_reviews                                                      81
duration                                                                   121
director_facebook_likes                                                     16
actor_3_facebook_likes                                                     526
actor_2_name                                                       Faizon Love
actor_1_facebook_likes                                                     907
gross                                                              1.25495e+07
genres                                             Crime|Drama|Musical|Romance
actor_1_name                                                      Cicely Tyson
movie_title                                                          Idlewild 
num_voted_users                                                           4603
cast_total_facebook_likes                                                 3633
actor_3_name                                                Bobb'e J. Thompson
facenumber_in_poster                                                         4
plot_keywords                gangster|playing piano|song and dance|speakeas...
movie_imdb_link              http://www.imdb.com/title/tt0417225/?ref_=fn_t...
num_user_for_reviews                                                        91
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     585
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       489
Name: 2688, dtype: object
color                                                                    Color
director_name                                                    Lone Scherfig
num_critic_for_reviews                                                     221
duration                                                                   107
director_facebook_likes                                                     92
actor_3_facebook_likes                                                     358
actor_2_name                                                      Jim Sturgess
actor_1_facebook_likes                                                   11000
gross                                                               1.3766e+07
genres                                                           Drama|Romance
actor_1_name                                                     Anne Hathaway
movie_title                                                           One Day 
num_voted_users                                                         106111
cast_total_facebook_likes                                                17627
actor_3_name                                                        Rafe Spall
facenumber_in_poster                                                         0
plot_keywords                23 year time span|accidental death|best friend...
movie_imdb_link              http://www.imdb.com/title/tt1563738/?ref_=fn_t...
num_user_for_reviews                                                       181
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                    5000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     49000
Name: 2689, dtype: object
color                                                                    Color
director_name                                                   Drew Barrymore
num_critic_for_reviews                                                     230
duration                                                                   111
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     727
actor_2_name                                                      Jimmy Fallon
actor_1_facebook_likes                                                     796
gross                                                              1.30344e+07
genres                                                             Drama|Sport
actor_1_name                                                      Daniel Stern
movie_title                                                           Whip It 
num_voted_users                                                          55665
cast_total_facebook_likes                                                 2633
actor_3_name                                                      Alia Shawkat
facenumber_in_poster                                                         1
plot_keywords                 beauty pageant|friend|pageant|roller derby|texas
movie_imdb_link              http://www.imdb.com/title/tt1172233/?ref_=fn_t...
num_user_for_reviews                                                       118
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     787
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 2690, dtype: object
color                                                                    Color
director_name                                                  Brian Koppelman
num_critic_for_reviews                                                      57
duration                                                                    92
director_facebook_likes                                                     34
actor_3_facebook_likes                                                     366
actor_2_name                                                        Tom Noonan
actor_1_facebook_likes                                                   14000
gross                                                              1.16324e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                        Vin Diesel
movie_title                                                  Knockaround Guys 
num_voted_users                                                          19768
cast_total_facebook_likes                                                15644
actor_3_name                                                        Kevin Gage
facenumber_in_poster                                                         1
plot_keywords                                mob|mobster|money|montana|sheriff
movie_imdb_link              http://www.imdb.com/title/tt0211465/?ref_=fn_t...
num_user_for_reviews                                                       135
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2001
actor_2_facebook_likes                                                     442
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       566
Name: 2691, dtype: object
color                                                                    Color
director_name                                                      James Foley
num_critic_for_reviews                                                     119
duration                                                                    97
director_facebook_likes                                                    164
actor_3_facebook_likes                                                     308
actor_2_name                                                    Brian Van Holt
actor_1_facebook_likes                                                     436
gross                                                              1.22124e+07
genres                                                          Crime|Thriller
actor_1_name                                                    Louis Lombardi
movie_title                                                        Confidence 
num_voted_users                                                          30643
cast_total_facebook_likes                                                 1172
actor_3_name                                                      Leland Orser
facenumber_in_poster                                                         3
plot_keywords                con|grifter|lap dance|organized crime|shot in ...
movie_imdb_link              http://www.imdb.com/title/tt0310910/?ref_=fn_t...
num_user_for_reviews                                                       144
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2003
actor_2_facebook_likes                                                     324
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       622
Name: 2692, dtype: object
color                                                                    Color
director_name                                                    Albert Brooks
num_critic_for_reviews                                                      97
duration                                                                    97
director_facebook_likes                                                    745
actor_3_facebook_likes                                                     745
actor_2_name                                                  Bradley Whitford
actor_1_facebook_likes                                                   12000
gross                                                              1.16142e+07
genres                                                                  Comedy
actor_1_name                                                      Jeff Bridges
movie_title                                                          The Muse 
num_voted_users                                                           9294
cast_total_facebook_likes                                                15209
actor_3_name                                                     Albert Brooks
facenumber_in_poster                                                         2
plot_keywords                directed by star|muse|satire|screenwriter|tiff...
movie_imdb_link              http://www.imdb.com/title/tt0164108/?ref_=fn_t...
num_user_for_reviews                                                       140
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     821
imdb_score                                                                 5.6
aspect_ratio                                                              1.37
movie_facebook_likes                                                       251
Name: 2693, dtype: object
color                                                          Black and White
director_name                                                    Irwin Winkler
num_critic_for_reviews                                                     119
duration                                                                   125
director_facebook_likes                                                     34
actor_3_facebook_likes                                                      65
actor_2_name                                                       Keith Allen
actor_1_facebook_likes                                                     427
gross                                                              1.33373e+07
genres                                           Biography|Drama|Music|Musical
actor_1_name                                                     Kevin McNally
movie_title                                                         De-Lovely 
num_voted_users                                                           9649
cast_total_facebook_likes                                                  729
actor_3_name                                                     Sandra Nelson
facenumber_in_poster                                                         7
plot_keywords                            cole porter|composer|love|party|tears
movie_imdb_link              http://www.imdb.com/title/tt0352277/?ref_=fn_t...
num_user_for_reviews                                                       226
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   2e+07
title_year                                                                2004
actor_2_facebook_likes                                                      66
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 2694, dtype: object
color                                                                    Color
director_name                                                      Woody Allen
num_critic_for_reviews                                                      42
duration                                                                   124
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     563
actor_2_name                                                       Larry David
actor_1_facebook_likes                                                   11000
gross                                                              1.07635e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                       Woody Allen
movie_title                                                  New York Stories 
num_voted_users                                                          13692
cast_total_facebook_likes                                                12685
actor_3_name                                                        Mia Farrow
facenumber_in_poster                                                         0
plot_keywords                12 year old|artist|hotel|three word title|writ...
movie_imdb_link              http://www.imdb.com/title/tt0097965/?ref_=fn_t...
num_user_for_reviews                                                        55
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                1989
actor_2_facebook_likes                                                     860
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       877
Name: 2695, dtype: object
color                                                                    Color
director_name                                                      Steve Gomer
num_critic_for_reviews                                                      24
duration                                                                    76
director_facebook_likes                                                      9
actor_3_facebook_likes                                                      47
actor_2_name                                                        Kyla Pratt
actor_1_facebook_likes                                                     595
gross                                                              1.11445e+07
genres                                                        Adventure|Family
actor_1_name                                                     Trevor Morgan
movie_title                                          Barney's Great Adventure 
num_voted_users                                                           2724
cast_total_facebook_likes                                                 1139
actor_3_name                                                   Shirley Douglas
facenumber_in_poster                                                         0
plot_keywords                apostrophe in title|critically bashed|hit on t...
movie_imdb_link              http://www.imdb.com/title/tt0120598/?ref_=fn_t...
num_user_for_reviews                                                        53
language                                                               English
country                                                                 Canada
content_rating                                                               G
budget                                                                 1.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     417
imdb_score                                                                 2.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       436
Name: 2696, dtype: object
color                                                                    Color
director_name                                                              RZA
num_critic_for_reviews                                                     208
duration                                                                   107
director_facebook_likes                                                    561
actor_3_facebook_likes                                                     353
actor_2_name                                                               RZA
actor_1_facebook_likes                                                     746
gross                                                              1.56085e+07
genres                                                                  Action
actor_1_name                                                         Rick Yune
movie_title                                       The Man with the Iron Fists 
num_voted_users                                                          53471
cast_total_facebook_likes                                                 2377
actor_3_name                                                         Daniel Wu
facenumber_in_poster                                                         3
plot_keywords                blacksmith|box office flop|chop socky|critical...
movie_imdb_link              http://www.imdb.com/title/tt1258972/?ref_=fn_t...
num_user_for_reviews                                                       224
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     561
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     29000
Name: 2697, dtype: object
color                                                                    Color
director_name                                                     Dean Parisot
num_critic_for_reviews                                                      42
duration                                                                    91
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     629
actor_2_name                                                        Jake Busey
actor_1_facebook_likes                                                     925
gross                                                              1.04433e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                  Catherine O'Hara
movie_title                                                        Home Fries 
num_voted_users                                                           7159
cast_total_facebook_likes                                                 2913
actor_3_name                                                    Shelley Duvall
facenumber_in_poster                                                         2
plot_keywords                          baby|infidelity|pilot|pregnant|waitress
movie_imdb_link              http://www.imdb.com/title/tt0119304/?ref_=fn_t...
num_user_for_reviews                                                        88
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                     660
imdb_score                                                                   5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       247
Name: 2698, dtype: object
color                                                                    Color
director_name                                                   Mark Piznarski
num_critic_for_reviews                                                      44
duration                                                                    96
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     670
actor_2_name                                                       Chris Klein
actor_1_facebook_likes                                                     989
gross                                                              1.04941e+07
genres                                                           Drama|Romance
actor_1_name                                                   Bruce Greenwood
movie_title                                                     Here on Earth 
num_voted_users                                                           7403
cast_total_facebook_likes                                                 3142
actor_3_name                                                    Elaine Hendrix
facenumber_in_poster                                                         1
plot_keywords                      diner|love|private school|school|small town
movie_imdb_link              http://www.imdb.com/title/tt0195778/?ref_=fn_t...
num_user_for_reviews                                                       162
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     841
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       648
Name: 2699, dtype: object
color                                                                    Color
director_name                                                    Terry Gilliam
num_critic_for_reviews                                                     230
duration                                                                   142
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                       Bob Hoskins
actor_1_facebook_likes                                                   22000
gross                                                                9.929e+06
genres                                                            Drama|Sci-Fi
actor_1_name                                                    Robert De Niro
movie_title                                                            Brazil 
num_voted_users                                                         152306
cast_total_facebook_likes                                                29475
actor_3_name                                                     Jim Broadbent
facenumber_in_poster                                                         0
plot_keywords                black comedy|bureaucracy|dream|terrorist|wrong...
movie_imdb_link              http://www.imdb.com/title/tt0088846/?ref_=fn_t...
num_user_for_reviews                                                       513
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1985
actor_2_facebook_likes                                                    5000
imdb_score                                                                   8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     16000
Name: 2700, dtype: object
color                                                                    Color
director_name                                                    Sean McNamara
num_critic_for_reviews                                                      46
duration                                                                   103
director_facebook_likes                                                     80
actor_3_facebook_likes                                                     782
actor_2_name                                                 Rebecca De Mornay
actor_1_facebook_likes                                                    1000
gross                                                               1.0412e+07
genres                                                    Family|Music|Romance
actor_1_name                                                      Oliver James
movie_title                                                  Raise Your Voice 
num_voted_users                                                          22649
cast_total_facebook_likes                                                 4676
actor_3_name                                                      Jason Ritter
facenumber_in_poster                                                         0
plot_keywords                music school|scholarship|small town|stage frig...
movie_imdb_link              http://www.imdb.com/title/tt0361696/?ref_=fn_t...
num_user_for_reviews                                                       212
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     872
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 2701, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      18
duration                                                                    60
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     186
actor_2_name                                                    Nicole de Boer
actor_1_facebook_likes                                                     443
gross                                                                      NaN
genres                                            Drama|Fantasy|Mystery|Sci-Fi
actor_1_name                                                David Ogden Stiers
movie_title                                         The Dead Zone             
num_voted_users                                                           7122
cast_total_facebook_likes                                                  981
actor_3_name                                                       Chris Bruno
facenumber_in_poster                                                         1
plot_keywords                psychic|psychic power|psychometry|spin off|sup...
movie_imdb_link              http://www.imdb.com/title/tt0281432/?ref_=fn_t...
num_user_for_reviews                                                        77
language                                                               English
country                                                                 Canada
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     319
imdb_score                                                                 7.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                       576
Name: 2702, dtype: object
color                                                                    Color
director_name                                                        Joel Coen
num_critic_for_reviews                                                     249
duration                                                                   117
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   12000
actor_2_name                                                      Jeff Bridges
actor_1_facebook_likes                                                   22000
gross                                                              1.74392e+07
genres                                                            Comedy|Crime
actor_1_name                                            Philip Seymour Hoffman
movie_title                                                  The Big Lebowski 
num_voted_users                                                         537419
cast_total_facebook_likes                                                47728
actor_3_name                                                     Steve Buscemi
facenumber_in_poster                                                         1
plot_keywords                            death|drug|nihilism|rug|white russian
movie_imdb_link              http://www.imdb.com/title/tt0118715/?ref_=fn_t...
num_user_for_reviews                                                      1028
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1998
actor_2_facebook_likes                                                   12000
imdb_score                                                                 8.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     35000
Name: 2703, dtype: object
color                                                          Black and White
director_name                                                     Craig Brewer
num_critic_for_reviews                                                     197
duration                                                                   116
director_facebook_likes                                                    153
actor_3_facebook_likes                                                     539
actor_2_name                                             Michael Raymond-James
actor_1_facebook_likes                                                    3000
gross                                                              9.39649e+06
genres                                                             Drama|Music
actor_1_name                                                 Justin Timberlake
movie_title                                                  Black Snake Moan 
num_voted_users                                                          52421
cast_total_facebook_likes                                                 5012
actor_3_name                                               S. Epatha Merkerson
facenumber_in_poster                                                         0
plot_keywords                breasts|nipples visible through clothing|nudit...
movie_imdb_link              http://www.imdb.com/title/tt0462200/?ref_=fn_t...
num_user_for_reviews                                                       200
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     788
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2704, dtype: object
color                                                                    Color
director_name                                                      Ron Shelton
num_critic_for_reviews                                                      71
duration                                                                   118
director_facebook_likes                                                     41
actor_3_facebook_likes                                                     274
actor_2_name                                                        Dash Mihok
actor_1_facebook_likes                                                     556
gross                                                              9.05959e+06
genres                                            Crime|Drama|Romance|Thriller
actor_1_name                                                  Khandi Alexander
movie_title                                                         Dark Blue 
num_voted_users                                                          17261
cast_total_facebook_likes                                                 1873
actor_3_name                                                   Michael Michele
facenumber_in_poster                                                         1
plot_keywords                       corrupt|criminal|investigation|lapd|police
movie_imdb_link              http://www.imdb.com/title/tt0279331/?ref_=fn_t...
num_user_for_reviews                                                       125
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     463
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       455
Name: 2705, dtype: object
color                                                                    Color
director_name                                             Michael Winterbottom
num_critic_for_reviews                                                     190
duration                                                                   108
director_facebook_likes                                                    187
actor_3_facebook_likes                                                     254
actor_2_name                                                    Archie Panjabi
actor_1_facebook_likes                                                   11000
gross                                                              9.17281e+06
genres                                    Biography|Drama|History|Thriller|War
actor_1_name                                               Angelina Jolie Pitt
movie_title                                                    A Mighty Heart 
num_voted_users                                                          24150
cast_total_facebook_likes                                                12178
actor_3_name                                                     Dan Futterman
facenumber_in_poster                                                         0
plot_keywords                         fbi|journalist|missing|pakistan|reporter
movie_imdb_link              http://www.imdb.com/title/tt0829459/?ref_=fn_t...
num_user_for_reviews                                                       118
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                2007
actor_2_facebook_likes                                                     883
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       923
Name: 2706, dtype: object
color                                                                    Color
director_name                                                      David Raynr
num_critic_for_reviews                                                      50
duration                                                                    94
director_facebook_likes                                                      9
actor_3_facebook_likes                                                     612
actor_2_name                                                  Jodi Lyn O'Keefe
actor_1_facebook_likes                                                   11000
gross                                                              8.73553e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      James Franco
movie_title                                                 Whatever It Takes 
num_voted_users                                                           8055
cast_total_facebook_likes                                                13524
actor_3_name                                                    Marla Sokoloff
facenumber_in_poster                                                         4
plot_keywords                male objectification|manipulative behavior|mod...
movie_imdb_link              http://www.imdb.com/title/tt0202402/?ref_=fn_t...
num_user_for_reviews                                                        89
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     897
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       816
Name: 2707, dtype: object
color                                                                    Color
director_name                                                      Mort Nathan
num_critic_for_reviews                                                      63
duration                                                                    97
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     461
actor_2_name                                                         Lin Shaye
actor_1_facebook_likes                                                     890
gross                                                              8.58638e+06
genres                                                                  Comedy
actor_1_name                                                     Vivica A. Fox
movie_title                                                         Boat Trip 
num_voted_users                                                          26598
cast_total_facebook_likes                                                 3161
actor_3_name                                                        Bob Gunton
facenumber_in_poster                                                         4
plot_keywords                gay|hot air balloon|rejecting a marriage propo...
movie_imdb_link              http://www.imdb.com/title/tt0285462/?ref_=fn_t...
num_user_for_reviews                                                       132
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   2e+07
title_year                                                                2002
actor_2_facebook_likes                                                     852
imdb_score                                                                 4.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 2708, dtype: object
color                                                                    Color
director_name                                                    Oliver Parker
num_critic_for_reviews                                                     104
duration                                                                    97
director_facebook_likes                                                     32
actor_3_facebook_likes                                                     692
actor_2_name                                                     Tom Wilkinson
actor_1_facebook_likes                                                   14000
gross                                                              8.37814e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                       Colin Firth
movie_title                                   The Importance of Being Earnest 
num_voted_users                                                          18966
cast_total_facebook_likes                                                16502
actor_3_name                                                    Rupert Everett
facenumber_in_poster                                                         5
plot_keywords                comedy of manners|false identity|farce|love|pe...
movie_imdb_link              http://www.imdb.com/title/tt0278500/?ref_=fn_t...
num_user_for_reviews                                                       141
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                2002
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2709, dtype: object
color                                                                    Color
director_name                                                       Dan Curtis
num_critic_for_reviews                                                     NaN
duration                                                                    99
director_facebook_likes                                                     45
actor_3_facebook_likes                                                     224
actor_2_name                                                    Campbell Scott
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                         Fantasy|Romance
actor_1_name                                              Jennifer Jason Leigh
movie_title                                                   The Love Letter 
num_voted_users                                                           1465
cast_total_facebook_likes                                                 2166
actor_3_name                                                   Estelle Parsons
facenumber_in_poster                                                         1
plot_keywords                             antique|desk|letter|love|time travel
movie_imdb_link              http://www.imdb.com/title/tt0140340/?ref_=fn_t...
num_user_for_reviews                                                        56
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                     NaN
title_year                                                                1998
actor_2_facebook_likes                                                     393
imdb_score                                                                 7.4
aspect_ratio                                                              1.33
movie_facebook_likes                                                       515
Name: 2710, dtype: object
color                                                                    Color
director_name                                                      Wil Shriner
num_critic_for_reviews                                                      49
duration                                                                    91
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     596
actor_2_name                                                        Neil Flynn
actor_1_facebook_likes                                                    8000
gross                                                              8.08012e+06
genres                                                 Adventure|Comedy|Family
actor_1_name                                                      Logan Lerman
movie_title                                                              Hoot 
num_voted_users                                                           6562
cast_total_facebook_likes                                                10732
actor_3_name                                                  Tim Blake Nelson
facenumber_in_poster                                                         0
plot_keywords                                 fight|florida|montana|owl|school
movie_imdb_link              http://www.imdb.com/title/tt0453494/?ref_=fn_t...
num_user_for_reviews                                                        66
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                     625
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       647
Name: 2711, dtype: object
color                                                                    Color
director_name                                                  Martin McDonagh
num_critic_for_reviews                                                     300
duration                                                                   107
director_facebook_likes                                                    454
actor_3_facebook_likes                                                      39
actor_2_name                                                      Anna Madeley
actor_1_facebook_likes                                                      65
gross                                                              7.75713e+06
genres                                                      Comedy|Crime|Drama
actor_1_name                                              Elizabeth Berrington
movie_title                                                         In Bruges 
num_voted_users                                                         307639
cast_total_facebook_likes                                                  173
actor_3_name                                                        Eric Godon
facenumber_in_poster                                                         1
plot_keywords                                 bruges|bullet|hope|irish|tourist
movie_imdb_link              http://www.imdb.com/title/tt0780536/?ref_=fn_t...
num_user_for_reviews                                                       513
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                      49
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     32000
Name: 2712, dtype: object
color                                                                    Color
director_name                                                Tina Gordon Chism
num_critic_for_reviews                                                      43
duration                                                                    95
director_facebook_likes                                                     24
actor_3_facebook_likes                                                     426
actor_2_name                                               S. Epatha Merkerson
actor_1_facebook_likes                                                     931
gross                                                              9.12383e+06
genres                                                          Comedy|Romance
actor_1_name                                              Tyler James Williams
movie_title                                                           Peeples 
num_voted_users                                                           4065
cast_total_facebook_likes                                                 3322
actor_3_name                                                   Diahann Carroll
facenumber_in_poster                                                         6
plot_keywords                                                 african american
movie_imdb_link              http://www.imdb.com/title/tt1699755/?ref_=fn_t...
num_user_for_reviews                                                        33
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2013
actor_2_facebook_likes                                                     539
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2713, dtype: object
color                                                                    Color
director_name                                                   Peter Cattaneo
num_critic_for_reviews                                                     132
duration                                                                   102
director_facebook_likes                                                     11
actor_3_facebook_likes                                                    1000
actor_2_name                                                    Bradley Cooper
actor_1_facebook_likes                                                   15000
gross                                                              6.40921e+06
genres                                                            Comedy|Music
actor_1_name                                                        Emma Stone
movie_title                                                        The Rocker 
num_voted_users                                                          32311
cast_total_facebook_likes                                                33153
actor_3_name                                                          Josh Gad
facenumber_in_poster                                                         4
plot_keywords                  20 years later|drummer|hdtv|rock band|rock star
movie_imdb_link              http://www.imdb.com/title/tt1031969/?ref_=fn_t...
num_user_for_reviews                                                       104
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                   14000
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2714, dtype: object
color                                                                    Color
director_name                                                     Vicky Jenson
num_critic_for_reviews                                                      97
duration                                                                    88
director_facebook_likes                                                     96
actor_3_facebook_likes                                                     360
actor_2_name                                                      Zach Gilford
actor_1_facebook_likes                                                   24000
gross                                                              6.37369e+06
genres                                                          Comedy|Romance
actor_1_name                                                      J.K. Simmons
movie_title                                                         Post Grad 
num_voted_users                                                          11498
cast_total_facebook_likes                                                25637
actor_3_name                                                     Bobby Coleman
facenumber_in_poster                                                         1
plot_keywords                graduation|graduation speech|title directed by...
movie_imdb_link              http://www.imdb.com/title/tt1142433/?ref_=fn_t...
num_user_for_reviews                                                        53
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     971
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2715, dtype: object
color                                                                    Color
director_name                                                     Gus Van Sant
num_critic_for_reviews                                                     242
duration                                                                   106
director_facebook_likes                                                    835
actor_3_facebook_likes                                                     363
actor_2_name                                                      Hal Holbrook
actor_1_facebook_likes                                                   13000
gross                                                              7.55671e+06
genres                                                                   Drama
actor_1_name                                                        Matt Damon
movie_title                                                     Promised Land 
num_voted_users                                                          30284
cast_total_facebook_likes                                                14544
actor_3_name                                                      Terry Kinney
facenumber_in_poster                                                         1
plot_keywords                corporate greed|corporation|natural gas|salesm...
movie_imdb_link              http://www.imdb.com/title/tt2091473/?ref_=fn_t...
num_user_for_reviews                                                       102
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     826
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 2716, dtype: object
color                                                                    Color
director_name                                                      Woody Allen
num_critic_for_reviews                                                     218
duration                                                                    92
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     386
actor_2_name                                                    Michael McKean
actor_1_facebook_likes                                                     860
gross                                                              5.30645e+06
genres                                                          Comedy|Romance
actor_1_name                                                       Larry David
movie_title                                                    Whatever Works 
num_voted_users                                                          58967
cast_total_facebook_likes                                                 2717
actor_3_name                                                      Conleth Hill
facenumber_in_poster                                                         1
plot_keywords                  atheist|limp|quantum mechanics|religion|runaway
movie_imdb_link              http://www.imdb.com/title/tt1178663/?ref_=fn_t...
num_user_for_reviews                                                       169
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     658
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 2717, dtype: object
color                                                          Black and White
director_name                                                     Mary Lambert
num_critic_for_reviews                                                      49
duration                                                                   105
director_facebook_likes                                                     52
actor_3_facebook_likes                                                     275
actor_2_name                                                        Susan Ward
actor_1_facebook_likes                                                     477
gross                                                               5.2175e+06
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                    Matthew Settle
movie_title                                                      The In Crowd 
num_voted_users                                                           3668
cast_total_facebook_likes                                                 2312
actor_3_name                                                      A.J. Buckley
facenumber_in_poster                                                         4
plot_keywords                clique|country club|female protagonist|lip glo...
movie_imdb_link              http://www.imdb.com/title/tt0163676/?ref_=fn_t...
num_user_for_reviews                                                        85
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     397
imdb_score                                                                 4.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       157
Name: 2718, dtype: object
color                                                                    Color
director_name                                                  Tommy Lee Jones
num_critic_for_reviews                                                     172
duration                                                                   107
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     289
actor_2_name                                                     Dwight Yoakam
actor_1_facebook_likes                                                     572
gross                                                              5.02328e+06
genres                                   Adventure|Crime|Drama|Mystery|Western
actor_1_name                                                        Levon Helm
movie_title                                                     Three Burials 
num_voted_users                                                          34194
cast_total_facebook_likes                                                 1627
actor_3_name                                                 Guillermo Arriaga
facenumber_in_poster                                                         2
plot_keywords                           cemetery|friend|journey|mexico|promise
movie_imdb_link              http://www.imdb.com/title/tt0419294/?ref_=fn_t...
num_user_for_reviews                                                       199
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     324
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2719, dtype: object
color                                                                    Color
director_name                                                  Peter Kassovitz
num_critic_for_reviews                                                      68
duration                                                                   120
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     693
actor_2_name                                                     Mark Margolis
actor_1_facebook_likes                                                   49000
gross                                                               4.9564e+06
genres                                                               Drama|War
actor_1_name                                                    Robin Williams
movie_title                                                    Jakob the Liar 
num_voted_users                                                          12601
cast_total_facebook_likes                                                51657
actor_3_name                                                     Michael Jeter
facenumber_in_poster                                                         2
plot_keywords                                    german|ghetto|hope|nazi|radio
movie_imdb_link              http://www.imdb.com/title/tt0120716/?ref_=fn_t...
num_user_for_reviews                                                        89
language                                                               English
country                                                                 France
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2720, dtype: object
color                                                                    Color
director_name                                                      Shane Black
num_critic_for_reviews                                                     223
duration                                                                   103
director_facebook_likes                                                   1000
actor_3_facebook_likes                                                     611
actor_2_name                                                    Corbin Bernsen
actor_1_facebook_likes                                                   21000
gross                                                              4.23584e+06
genres                                                    Comedy|Crime|Mystery
actor_1_name                                                 Robert Downey Jr.
movie_title                                               Kiss Kiss Bang Bang 
num_voted_users                                                         175962
cast_total_facebook_likes                                                23932
actor_3_name                                                      Larry Miller
facenumber_in_poster                                                         2
plot_keywords                   actor|detective sergeant|hotel|nightclub|thief
movie_imdb_link              http://www.imdb.com/title/tt0373469/?ref_=fn_t...
num_user_for_reviews                                                       336
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2721, dtype: object
color                                                                    Color
director_name                                                   Rodman Flender
num_critic_for_reviews                                                      59
duration                                                                    92
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     577
actor_2_name                                                      Fred Willard
actor_1_facebook_likes                                                     890
gross                                                              4.00296e+06
genres                                          Comedy|Fantasy|Horror|Thriller
actor_1_name                                                     Vivica A. Fox
movie_title                                                        Idle Hands 
num_voted_users                                                          33745
cast_total_facebook_likes                                                 3654
actor_3_name                                                      Elden Henson
facenumber_in_poster                                                         0
plot_keywords                breasts|female frontal nudity|nude woman murde...
movie_imdb_link              http://www.imdb.com/title/tt0138510/?ref_=fn_t...
num_user_for_reviews                                                       198
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   2e+07
title_year                                                                1999
actor_2_facebook_likes                                                     729
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2722, dtype: object
color                                                                    Color
director_name                                                      David Lynch
num_critic_for_reviews                                                     252
duration                                                                   147
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     669
actor_2_name                                                    Robert Forster
actor_1_facebook_likes                                                    6000
gross                                                              7.21958e+06
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                       Naomi Watts
movie_title                                                  Mulholland Drive 
num_voted_users                                                         235992
cast_total_facebook_likes                                                 8484
actor_3_name                                                     Laura Harring
facenumber_in_poster                                                         1
plot_keywords                amnesia|car accident|female protagonist|lesbia...
movie_imdb_link              http://www.imdb.com/title/tt0166924/?ref_=fn_t...
num_user_for_reviews                                                      1768
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2001
actor_2_facebook_likes                                                     889
imdb_score                                                                   8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     16000
Name: 2723, dtype: object
color                                                                    Color
director_name                                                Katja von Garnier
num_critic_for_reviews                                                     106
duration                                                                    98
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     220
actor_2_name                                                    Agnes Bruckner
actor_1_facebook_likes                                                     837
gross                                                              3.52516e+06
genres                                            Drama|Fantasy|Horror|Romance
actor_1_name                                                  Olivier Martinez
movie_title                                               Blood and Chocolate 
num_voted_users                                                          15388
cast_total_facebook_likes                                                 1675
actor_3_name                                                       Chris Geere
facenumber_in_poster                                                         0
plot_keywords                    colorado|love|murder|rocky mountains|werewolf
movie_imdb_link              http://www.imdb.com/title/tt0397044/?ref_=fn_t...
num_user_for_reviews                                                       190
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2007
actor_2_facebook_likes                                                     400
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2724, dtype: object
color                                                                    Color
director_name                                                      Woody Allen
num_critic_for_reviews                                                     223
duration                                                                    98
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     557
actor_2_name                                                       Naomi Watts
actor_1_facebook_likes                                                   12000
gross                                                              3.24782e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                   Anthony Hopkins
movie_title                                You Will Meet a Tall Dark Stranger 
num_voted_users                                                          36145
cast_total_facebook_likes                                                19310
actor_3_name                                                      Ewen Bremner
facenumber_in_poster                                                         0
plot_keywords                call girl|charlatan|fortune teller|manuscript|...
movie_imdb_link              http://www.imdb.com/title/tt1182350/?ref_=fn_t...
num_user_for_reviews                                                       108
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 2.2e+07
title_year                                                                2010
actor_2_facebook_likes                                                    6000
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2725, dtype: object
color                                                                    Color
director_name                                                     Mark Romanek
num_critic_for_reviews                                                     328
duration                                                                   103
director_facebook_likes                                                    132
actor_3_facebook_likes                                                     844
actor_2_name                                                      Charlie Rowe
actor_1_facebook_likes                                                   10000
gross                                                              2.41204e+06
genres                                                    Drama|Romance|Sci-Fi
actor_1_name                                                   Andrew Garfield
movie_title                                                   Never Let Me Go 
num_voted_users                                                         109873
cast_total_facebook_likes                                                12867
actor_3_name                                                Charlotte Rampling
facenumber_in_poster                                                         0
plot_keywords                boarding school|childhood|love|love triangle|o...
movie_imdb_link              http://www.imdb.com/title/tt1334260/?ref_=fn_t...
num_user_for_reviews                                                       320
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                     882
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     33000
Name: 2726, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                       9
duration                                                                   286
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     527
actor_2_name                                                     Tom Hollander
actor_1_facebook_likes                                                     857
gross                                                                      NaN
genres                                                  Drama|History|Thriller
actor_1_name                                                         Anna Silk
movie_title                                           The Company             
num_voted_users                                                           3828
cast_total_facebook_likes                                                 3809
actor_3_name                                                 Alessandro Nivola
facenumber_in_poster                                                         3
plot_keywords                                     cia|mole|revolution|spy|ussr
movie_imdb_link              http://www.imdb.com/title/tt0488352/?ref_=fn_t...
num_user_for_reviews                                                        39
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     555
imdb_score                                                                 7.9
aspect_ratio                                                              1.78
movie_facebook_likes                                                       733
Name: 2727, dtype: object
color                                                                    Color
director_name                                                    Brad Anderson
num_critic_for_reviews                                                     150
duration                                                                   111
director_facebook_likes                                                    122
actor_3_facebook_likes                                                      25
actor_2_name                                                   Eduardo Noriega
actor_1_facebook_likes                                                     918
gross                                                              2.20364e+06
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                Thomas Kretschmann
movie_title                                                     Transsiberian 
num_voted_users                                                          42792
cast_total_facebook_likes                                                 1252
actor_3_name                                                      Mac McDonald
facenumber_in_poster                                                         0
plot_keywords                   35 mm digital camera|drugs|murder|train|travel
movie_imdb_link              http://www.imdb.com/title/tt0800241/?ref_=fn_t...
num_user_for_reviews                                                       162
language                                                               English
country                                                                  Spain
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                     278
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2728, dtype: object
color                                                                    Color
director_name                                                  Michael Chapman
num_critic_for_reviews                                                      21
duration                                                                    98
director_facebook_likes                                                     70
actor_3_facebook_likes                                                      90
actor_2_name                                                       Pamela Reed
actor_1_facebook_likes                                                     876
gross                                                              1.95373e+06
genres                                                 Adventure|Drama|Fantasy
actor_1_name                                                  Curtis Armstrong
movie_title                                         The Clan of the Cave Bear 
num_voted_users                                                           4996
cast_total_facebook_likes                                                 1351
actor_3_name                                                       Mike Muscat
facenumber_in_poster                                                         0
plot_keywords                cave bear|cro magnon|neanderthal|survival|trad...
movie_imdb_link              http://www.imdb.com/title/tt0090848/?ref_=fn_t...
num_user_for_reviews                                                        62
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                1986
actor_2_facebook_likes                                                     324
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       843
Name: 2729, dtype: object
color                                                                    Color
director_name                                                 Antonio Banderas
num_critic_for_reviews                                                      28
duration                                                                   111
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     617
actor_2_name                                                 Elizabeth Perkins
actor_1_facebook_likes                                                     783
gross                                                               1.9542e+06
genres                                                      Comedy|Crime|Drama
actor_1_name                                                         Meat Loaf
movie_title                                                  Crazy in Alabama 
num_voted_users                                                           5917
cast_total_facebook_likes                                                 4834
actor_3_name                                                     Noah Emmerich
facenumber_in_poster                                                         0
plot_keywords                        abusive husband|alabama|boy|dream|sheriff
movie_imdb_link              http://www.imdb.com/title/tt0142201/?ref_=fn_t...
num_user_for_reviews                                                        71
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                     664
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       391
Name: 2730, dtype: object
color                                                                    Color
director_name                                                   Michael Haneke
num_critic_for_reviews                                                     250
duration                                                                   111
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     287
actor_2_name                                              Siobhan Fallon Hogan
actor_1_facebook_likes                                                    6000
gross                                                              1.29464e+06
genres                                             Crime|Drama|Horror|Thriller
actor_1_name                                                       Naomi Watts
movie_title                                                       Funny Games 
num_voted_users                                                          69569
cast_total_facebook_likes                                                 6748
actor_3_name                                                      Brady Corbet
facenumber_in_poster                                                         0
plot_keywords                breaking the fourth wall|looking at the camera...
movie_imdb_link              http://www.imdb.com/title/tt0808279/?ref_=fn_t...
num_user_for_reviews                                                       436
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     294
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2731, dtype: object
color                                                                    Color
director_name                                                   Khalil Sullins
num_critic_for_reviews                                                      17
duration                                                                   100
director_facebook_likes                                                      5
actor_3_facebook_likes                                                      46
actor_2_name                                                    Kalim Chandler
actor_1_facebook_likes                                                     192
gross                                                                      NaN
genres                                                   Drama|Sci-Fi|Thriller
actor_1_name                                                   Thomas Stroppel
movie_title                                                         Listening 
num_voted_users                                                           1933
cast_total_facebook_likes                                                  527
actor_3_name                                             Amber Marie Bollinger
facenumber_in_poster                                                         0
plot_keywords                divorce papers|fainting|mind control|playgroun...
movie_imdb_link              http://www.imdb.com/title/tt3153582/?ref_=fn_t...
num_user_for_reviews                                                        13
language                                                               English
country                                                               Cambodia
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2014
actor_2_facebook_likes                                                     134
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       708
Name: 2732, dtype: object
color                                                                    Color
director_name                                                      Atom Egoyan
num_critic_for_reviews                                                      95
duration                                                                   116
director_facebook_likes                                                    460
actor_3_facebook_likes                                                      71
actor_2_name                                                    Elaine Cassidy
actor_1_facebook_likes                                                    5000
gross                                                                   819852
genres                                                          Drama|Thriller
actor_1_name                                                       Bob Hoskins
movie_title                                                 Felicia's Journey 
num_voted_users                                                           6690
cast_total_facebook_likes                                                 5426
actor_3_name                                                   Gerard McSorley
facenumber_in_poster                                                         0
plot_keywords                          caterer|catering|chef|friend|lawn mower
movie_imdb_link              http://www.imdb.com/title/tt0165773/?ref_=fn_t...
num_user_for_reviews                                                        83
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                1999
actor_2_facebook_likes                                                     203
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       284
Name: 2733, dtype: object
color                                                          Black and White
director_name                                                       Fritz Lang
num_critic_for_reviews                                                     260
duration                                                                   145
director_facebook_likes                                                    756
actor_3_facebook_likes                                                      18
actor_2_name                                                   Gustav Fröhlich
actor_1_facebook_likes                                                     136
gross                                                                    26435
genres                                                            Drama|Sci-Fi
actor_1_name                                                     Brigitte Helm
movie_title                                                        Metropolis 
num_voted_users                                                         111841
cast_total_facebook_likes                                                  203
actor_3_name                                                Rudolf Klein-Rogge
facenumber_in_poster                                                         1
plot_keywords                    art deco|bible quote|dance|silent film|worker
movie_imdb_link              http://www.imdb.com/title/tt0017136/?ref_=fn_t...
num_user_for_reviews                                                       413
language                                                                German
country                                                                Germany
content_rating                                                       Not Rated
budget                                                                   6e+06
title_year                                                                1927
actor_2_facebook_likes                                                      23
imdb_score                                                                 8.3
aspect_ratio                                                              1.33
movie_facebook_likes                                                     12000
Name: 2734, dtype: object
color                                                                    Color
director_name                                                     Pierre Morel
num_critic_for_reviews                                                     141
duration                                                                    84
director_facebook_likes                                                    180
actor_3_facebook_likes                                                      58
actor_2_name                                                   Cyril Raffaelli
actor_1_facebook_likes                                                     510
gross                                                              1.19779e+06
genres                                                   Action|Crime|Thriller
actor_1_name                                                       David Belle
movie_title                                                      District B13 
num_voted_users                                                          55928
cast_total_facebook_likes                                                  962
actor_3_name                                              Dany Verissimo-Petit
facenumber_in_poster                                                         2
plot_keywords                           bomb|gang|police|sister|undercover cop
movie_imdb_link              http://www.imdb.com/title/tt0414852/?ref_=fn_t...
num_user_for_reviews                                                       157
language                                                                French
country                                                                 France
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2004
actor_2_facebook_likes                                                     297
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2735, dtype: object
color                                                                    Color
director_name                                                      Gary Fleder
num_critic_for_reviews                                                      52
duration                                                                   115
director_facebook_likes                                                     39
actor_3_facebook_likes                                                     642
actor_2_name                                                        Bill Cobbs
actor_1_facebook_likes                                                   12000
gross                                                                   529766
genres                                                             Crime|Drama
actor_1_name                                                     Steve Buscemi
movie_title                           Things to Do in Denver When You're Dead 
num_voted_users                                                          22345
cast_total_facebook_likes                                                14889
actor_3_name                                                    Treat Williams
facenumber_in_poster                                                         2
plot_keywords                death|finger gun|video message|what happened t...
movie_imdb_link              http://www.imdb.com/title/tt0114660/?ref_=fn_t...
num_user_for_reviews                                                       144
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                1995
actor_2_facebook_likes                                                     970
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2736, dtype: object
color                                                                    Color
director_name                                                  Hsiao-Hsien Hou
num_critic_for_reviews                                                     205
duration                                                                   105
director_facebook_likes                                                    141
actor_3_facebook_likes                                                      56
actor_2_name                                                        Chen Chang
actor_1_facebook_likes                                                    1000
gross                                                                   613556
genres                                                            Action|Drama
actor_1_name                                                            Qi Shu
movie_title                                                      The Assassin 
num_voted_users                                                           9427
cast_total_facebook_likes                                                 1172
actor_3_name                                                 Satoshi Tsumabuki
facenumber_in_poster                                                         1
plot_keywords                     black magic|china|love|refusal to kill|wuxia
movie_imdb_link              http://www.imdb.com/title/tt3508840/?ref_=fn_t...
num_user_for_reviews                                                        87
language                                                              Mandarin
country                                                                 Taiwan
content_rating                                                       Not Rated
budget                                                                 1.5e+07
title_year                                                                2015
actor_2_facebook_likes                                                     103
imdb_score                                                                 6.4
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 2737, dtype: object
color                                                                    Color
director_name                                                    Gregor Jordan
num_critic_for_reviews                                                     109
duration                                                                    98
director_facebook_likes                                                     34
actor_3_facebook_likes                                                     730
actor_2_name                                                       Scott Glenn
actor_1_facebook_likes                                                     936
gross                                                                   353743
genres                                         Comedy|Crime|Drama|Thriller|War
actor_1_name                                                    Dean Stockwell
movie_title                                                  Buffalo Soldiers 
num_voted_users                                                          20730
cast_total_facebook_likes                                                 3578
actor_3_name                                                              Leon
facenumber_in_poster                                                         1
plot_keywords                    berlin wall|germany|murder|soldier|specialist
movie_imdb_link              http://www.imdb.com/title/tt0252299/?ref_=fn_t...
num_user_for_reviews                                                       111
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2001
actor_2_facebook_likes                                                     826
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       664
Name: 2738, dtype: object
color                                                                    Color
director_name                                               Andrey Zvyagintsev
num_critic_for_reviews                                                     103
duration                                                                    99
director_facebook_likes                                                    445
actor_3_facebook_likes                                                       9
actor_2_name                                                    Vladimir Garin
actor_1_facebook_likes                                                      20
gross                                                                   502028
genres                                                  Drama|Mystery|Thriller
actor_1_name                                             Konstantin Lavronenko
movie_title                                                        The Return 
num_voted_users                                                          31589
cast_total_facebook_likes                                                   48
actor_3_name                                                  Nataliya Vdovina
facenumber_in_poster                                                         0
plot_keywords                         boy|photograph|return|russian|wilderness
movie_imdb_link              http://www.imdb.com/title/tt0376968/?ref_=fn_t...
num_user_for_reviews                                                       172
language                                                               Russian
country                                                                 Russia
content_rating                                                         Unrated
budget                                                                     NaN
title_year                                                                2003
actor_2_facebook_likes                                                      13
imdb_score                                                                   8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2739, dtype: object
color                                                                    Color
director_name                                                         Tony Jaa
num_critic_for_reviews                                                     110
duration                                                                   110
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       7
actor_2_name                                               Petchtai Wongkamlao
actor_1_facebook_likes                                                      64
gross                                                                   102055
genres                                                                  Action
actor_1_name                                                  Nirut Sirichanya
movie_title                                                         Ong-bak 2 
num_voted_users                                                          24570
cast_total_facebook_likes                                                  134
actor_3_name                                              Sarunyu Wongkrachang
facenumber_in_poster                                                         0
plot_keywords                cult film|elephant|jungle|martial arts|stylize...
movie_imdb_link              http://www.imdb.com/title/tt0785035/?ref_=fn_t...
num_user_for_reviews                                                        72
language                                                                  Thai
country                                                               Thailand
content_rating                                                               R
budget                                                                   3e+08
title_year                                                                2008
actor_2_facebook_likes                                                      45
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2740, dtype: object
color                                                                    Color
director_name                                                    Neil Marshall
num_critic_for_reviews                                                     195
duration                                                                    97
director_facebook_likes                                                    197
actor_3_facebook_likes                                                     570
actor_2_name                                                          JJ Feild
actor_1_facebook_likes                                                   13000
gross                                                                   122288
genres                             Action|Adventure|Drama|History|Thriller|War
actor_1_name                                                Michael Fassbender
movie_title                                                         Centurion 
num_voted_users                                                          64777
cast_total_facebook_likes                                                15293
actor_3_name                                                       Dave Legeno
facenumber_in_poster                                                         0
plot_keywords                mushroom|mute|roman soldier|screaming|wood car...
movie_imdb_link              http://www.imdb.com/title/tt1020558/?ref_=fn_t...
num_user_for_reviews                                                       201
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                     794
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2741, dtype: object
color                                                                    Color
director_name                                                  Russell Mulcahy
num_critic_for_reviews                                                      14
duration                                                                    88
director_facebook_likes                                                     85
actor_3_facebook_likes                                                      40
actor_2_name                                                      Gina Bellman
actor_1_facebook_likes                                                     825
gross                                                                      NaN
genres                                                   Action|Drama|Thriller
actor_1_name                                             Christopher Heyerdahl
movie_title                                                    Silent Trigger 
num_voted_users                                                           2699
cast_total_facebook_likes                                                 1432
actor_3_name                                                       Conrad Dunn
facenumber_in_poster                                                         0
plot_keywords                assassin|die hard scenario|rangefinder|soldier...
movie_imdb_link              http://www.imdb.com/title/tt0117653/?ref_=fn_t...
num_user_for_reviews                                                        29
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                1996
actor_2_facebook_likes                                                     476
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       154
Name: 2742, dtype: object
color                                                                    Color
director_name                                                  Ryûhei Kitamura
num_critic_for_reviews                                                     177
duration                                                                   103
director_facebook_likes                                                    129
actor_3_facebook_likes                                                    1000
actor_2_name                                                    Brooke Shields
actor_1_facebook_likes                                                   14000
gross                                                                    73548
genres                                                  Fantasy|Horror|Mystery
actor_1_name                                                    Bradley Cooper
movie_title                                           The Midnight Meat Train 
num_voted_users                                                          47574
cast_total_facebook_likes                                                18639
actor_3_name                                                       Leslie Bibb
facenumber_in_poster                                                         0
plot_keywords                butcher|girlfriend|mute character|photographer...
movie_imdb_link              http://www.imdb.com/title/tt0805570/?ref_=fn_t...
num_user_for_reviews                                                       209
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2743, dtype: object
color                                                                    Color
director_name                                                    Darrell Roodt
num_critic_for_reviews                                                      17
duration                                                                   104
director_facebook_likes                                                     36
actor_3_facebook_likes                                                       2
actor_2_name                                                     Wendy Crewson
actor_1_facebook_likes                                                     549
gross                                                                      NaN
genres                                                 Biography|Drama|History
actor_1_name                                                   Jennifer Hudson
movie_title                                                    Winnie Mandela 
num_voted_users                                                            609
cast_total_facebook_likes                                                  801
actor_3_name                                                        Aubrey Poo
facenumber_in_poster                                                         2
plot_keywords                character name in title|nelson mandela|one wor...
movie_imdb_link              http://www.imdb.com/title/tt1551641/?ref_=fn_t...
num_user_for_reviews                                                        15
language                                                               English
country                                                           South Africa
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                     248
imdb_score                                                                   6
aspect_ratio                                                               NaN
movie_facebook_likes                                                       705
Name: 2744, dtype: object
color                                                                    Color
director_name                                                     Dito Montiel
num_critic_for_reviews                                                      62
duration                                                                    90
director_facebook_likes                                                     68
actor_3_facebook_likes                                                     642
actor_2_name                                                         Al Pacino
actor_1_facebook_likes                                                   17000
gross                                                                    28870
genres                                                    Crime|Drama|Thriller
actor_1_name                                                    Channing Tatum
movie_title                                                 The Son of No One 
num_voted_users                                                          14280
cast_total_facebook_likes                                                32814
actor_3_name                                                      Tracy Morgan
facenumber_in_poster                                                         5
plot_keywords                housing project|letter|man with glasses|murder...
movie_imdb_link              http://www.imdb.com/title/tt1535612/?ref_=fn_t...
num_user_for_reviews                                                        41
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2011
actor_2_facebook_likes                                                   14000
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2745, dtype: object
color                                                                    Color
director_name                                                Stefan Ruzowitzky
num_critic_for_reviews                                                      19
duration                                                                   105
director_facebook_likes                                                     24
actor_3_facebook_likes                                                     125
actor_2_name                                                          Udo Kier
actor_1_facebook_likes                                                     776
gross                                                                    22723
genres                                                 Action|Comedy|Drama|War
actor_1_name                                                      Eddie Izzard
movie_title                                               All the Queen's Men 
num_voted_users                                                           2236
cast_total_facebook_likes                                                 1732
actor_3_name                                                        Edward Fox
facenumber_in_poster                                                         1
plot_keywords                apostrophe in title|behind enemy lines|box off...
movie_imdb_link              http://www.imdb.com/title/tt0252223/?ref_=fn_t...
num_user_for_reviews                                                        40
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                 2.5e+07
title_year                                                                2001
actor_2_facebook_likes                                                     595
imdb_score                                                                 4.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       193
Name: 2746, dtype: object
color                                                                    Color
director_name                                                     Jake Paltrow
num_critic_for_reviews                                                      50
duration                                                                    93
director_facebook_likes                                                     17
actor_3_facebook_likes                                                      66
actor_2_name                                                    Gael Le Cornec
actor_1_facebook_likes                                                    1000
gross                                                                    20380
genres                                      Comedy|Drama|Fantasy|Music|Romance
actor_1_name                                                    Stephen Graham
movie_title                                                    The Good Night 
num_voted_users                                                           7519
cast_total_facebook_likes                                                 1245
actor_3_name                                                       Keith Allen
facenumber_in_poster                                                         1
plot_keywords                     commercial|dream|dreaming|girl|new york city
movie_imdb_link              http://www.imdb.com/title/tt0484111/?ref_=fn_t...
num_user_for_reviews                                                        39
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     165
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       445
Name: 2747, dtype: object
color                                                                    Color
director_name                                                  Juraj Jakubisko
num_critic_for_reviews                                                      25
duration                                                                   141
director_facebook_likes                                                     15
actor_3_facebook_likes                                                     576
actor_2_name                                                     Hans Matheson
actor_1_facebook_likes                                                     735
gross                                                                      NaN
genres                                         Biography|Drama|Fantasy|History
actor_1_name                                                        Anna Friel
movie_title                                        Bathory: Countess of Blood 
num_voted_users                                                           3425
cast_total_facebook_likes                                                 2528
actor_3_name                                                       Franco Nero
facenumber_in_poster                                                         1
plot_keywords                bathory|countess|female protagonist|legend|vir...
movie_imdb_link              http://www.imdb.com/title/tt0469640/?ref_=fn_t...
num_user_for_reviews                                                        32
language                                                               English
country                                                               Slovakia
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2008
actor_2_facebook_likes                                                     627
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2748, dtype: object
color                                                                    Color
director_name                                               Anthony Silverston
num_critic_for_reviews                                                      39
duration                                                                    85
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     912
actor_2_name                                                     Steve Buscemi
actor_1_facebook_likes                                                   14000
gross                                                                      NaN
genres                                              Adventure|Animation|Family
actor_1_name                                                       Liam Neeson
movie_title                                                            Khumba 
num_voted_users                                                           4006
cast_total_facebook_likes                                                29488
actor_3_name                                                    Loretta Devine
facenumber_in_poster                                                         0
plot_keywords                          herd|ostrich|waterhole|wildebeest|zebra
movie_imdb_link              http://www.imdb.com/title/tt1487931/?ref_=fn_t...
num_user_for_reviews                                                        12
language                                                               English
country                                                           South Africa
content_rating                                                       Not Rated
budget                                                                   2e+07
title_year                                                                2013
actor_2_facebook_likes                                                   12000
imdb_score                                                                 5.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 2749, dtype: object
color                                                                    Color
director_name                                                      Gabe Ibáñez
num_critic_for_reviews                                                     136
duration                                                                   109
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     537
actor_2_name                                                    Robert Forster
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                  Action|Sci-Fi|Thriller
actor_1_name                                           Birgitte Hjort Sørensen
movie_title                                                          Automata 
num_voted_users                                                          41638
cast_total_facebook_likes                                                 2829
actor_3_name                                                  Melanie Griffith
facenumber_in_poster                                                         0
plot_keywords                   child hitman|dystopia|future|robot|self repair
movie_imdb_link              http://www.imdb.com/title/tt1971325/?ref_=fn_t...
num_user_for_reviews                                                       134
language                                                               English
country                                                               Bulgaria
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2014
actor_2_facebook_likes                                                     889
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 2750, dtype: object
color                                                                    Color
director_name                                                     Gerry Lively
num_critic_for_reviews                                                      26
duration                                                                   105
director_facebook_likes                                                     93
actor_3_facebook_likes                                                      51
actor_2_name                                                      Lucy Gaskell
actor_1_facebook_likes                                                     179
gross                                                                      NaN
genres                                                Action|Adventure|Fantasy
actor_1_name                                                       Bruce Payne
movie_title                       Dungeons & Dragons: Wrath of the Dragon God 
num_voted_users                                                           5018
cast_total_facebook_likes                                                  363
actor_3_name                                                      Steven Elder
facenumber_in_poster                                                         0
plot_keywords                combat|helmet|martial arts|medieval times|viol...
movie_imdb_link              http://www.imdb.com/title/tt0406728/?ref_=fn_t...
num_user_for_reviews                                                       108
language                                                               English
country                                                                Germany
content_rating                                                       Not Rated
budget                                                                 1.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                      55
imdb_score                                                                 4.9
aspect_ratio                                                              1.78
movie_facebook_likes                                                       473
Name: 2751, dtype: object
color                                                                    Color
director_name                                                 Daniele Luchetti
num_critic_for_reviews                                                       4
duration                                                                    98
director_facebook_likes                                                      6
actor_3_facebook_likes                                                      50
actor_2_name                                               Rodrigo De la Serna
actor_1_facebook_likes                                                      61
gross                                                                      NaN
genres                                                               Biography
actor_1_name                                                   Maximilian Dirr
movie_title                        Chiamatemi Francesco - Il Papa della gente 
num_voted_users                                                             80
cast_total_facebook_likes                                                  192
actor_3_name                                                 Ferdinando Vetere
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3856124/?ref_=fn_t...
num_user_for_reviews                                                         4
language                                                               Spanish
country                                                                  Italy
content_rating                                                             NaN
budget                                                                 1.5e+07
title_year                                                                2015
actor_2_facebook_likes                                                      57
imdb_score                                                                 5.7
aspect_ratio                                                               NaN
movie_facebook_likes                                                        18
Name: 2752, dtype: object
color                                                                      NaN
director_name                                                   Tung-Shing Yee
num_critic_for_reviews                                                      53
duration                                                                   119
director_facebook_likes                                                      3
actor_3_facebook_likes                                                      19
actor_2_name                                                         Daniel Wu
actor_1_facebook_likes                                                     556
gross                                                                      NaN
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                      Bingbing Fan
movie_title                                                 Shinjuku Incident 
num_voted_users                                                           9177
cast_total_facebook_likes                                                  996
actor_3_name                                                    Yasuaki Kurata
facenumber_in_poster                                                         4
plot_keywords                           chinese|gang|gratitude|immigrant|japan
movie_imdb_link              http://www.imdb.com/title/tt1075419/?ref_=fn_t...
num_user_for_reviews                                                        53
language                                                              Mandarin
country                                                              Hong Kong
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     353
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       821
Name: 2753, dtype: object
color                                                                    Color
director_name                                                    Julien Temple
num_critic_for_reviews                                                      22
duration                                                                   124
director_facebook_likes                                                     67
actor_3_facebook_likes                                                     303
actor_2_name                                                   Dexter Fletcher
actor_1_facebook_likes                                                     631
gross                                                                      NaN
genres                                                         Biography|Drama
actor_1_name                                                   Samantha Morton
movie_title                                                      Pandaemonium 
num_voted_users                                                            695
cast_total_facebook_likes                                                 1585
actor_3_name                                                      Linus Roache
facenumber_in_poster                                                         1
plot_keywords                betrayal|french revolution|friendship|poet|rev...
movie_imdb_link              http://www.imdb.com/title/tt0210217/?ref_=fn_t...
num_user_for_reviews                                                        32
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2000
actor_2_facebook_likes                                                     452
imdb_score                                                                 6.6
aspect_ratio                                                               NaN
movie_facebook_likes                                                       277
Name: 2754, dtype: object
color                                                                    Color
director_name                                                     Harold Ramis
num_critic_for_reviews                                                     147
duration                                                                   101
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     512
actor_2_name                                                     Chris Elliott
actor_1_facebook_likes                                                   13000
gross                                                               7.0907e+07
genres                                                  Comedy|Fantasy|Romance
actor_1_name                                                       Bill Murray
movie_title                                                     Groundhog Day 
num_voted_users                                                         437418
cast_total_facebook_likes                                                15500
actor_3_name                                                     Willie Garson
facenumber_in_poster                                                         1
plot_keywords                cult film|existentialism|groundhog day|time lo...
movie_imdb_link              http://www.imdb.com/title/tt0107048/?ref_=fn_t...
num_user_for_reviews                                                       609
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.46e+07
title_year                                                                1993
actor_2_facebook_likes                                                     571
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     38000
Name: 2755, dtype: object
color                                                                    Color
director_name                                                   Gregory Jacobs
num_critic_for_reviews                                                     222
duration                                                                   115
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     642
actor_2_name                                                    Channing Tatum
actor_1_facebook_likes                                                   20000
gross                                                                6.601e+07
genres                                                      Comedy|Drama|Music
actor_1_name                                                        Matt Bomer
movie_title                                                    Magic Mike XXL 
num_voted_users                                                          38202
cast_total_facebook_likes                                                38963
actor_3_name                                                        Kevin Nash
facenumber_in_poster                                                         3
plot_keywords                male bonding|male friendship|male objectificat...
movie_imdb_link              http://www.imdb.com/title/tt2268016/?ref_=fn_t...
num_user_for_reviews                                                       135
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.48e+07
title_year                                                                2015
actor_2_facebook_likes                                                   17000
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     41000
Name: 2756, dtype: object
color                                                                    Color
director_name                                                     Baz Luhrmann
num_critic_for_reviews                                                     106
duration                                                                   120
director_facebook_likes                                                   1000
actor_3_facebook_likes                                                     954
actor_2_name                                                  Harold Perrineau
actor_1_facebook_likes                                                   29000
gross                                                              4.63387e+07
genres                                                           Drama|Romance
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                    Romeo + Juliet 
num_voted_users                                                         167750
cast_total_facebook_likes                                                33791
actor_3_name                                                     Brian Dennehy
facenumber_in_poster                                                         2
plot_keywords                hawaiian shirt|love|shakespeare adaptation|sha...
movie_imdb_link              http://www.imdb.com/title/tt0117509/?ref_=fn_t...
num_user_for_reviews                                                       506
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.45e+07
title_year                                                                1996
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 2757, dtype: object
color                                                                    Color
director_name                                            Gilles Paquet-Brenner
num_critic_for_reviews                                                     136
duration                                                                   111
director_facebook_likes                                                     15
actor_3_facebook_likes                                                     121
actor_2_name                                                       Aidan Quinn
actor_1_facebook_likes                                                    1000
gross                                                               7.6917e+06
genres                                                               Drama|War
actor_1_name                                              Kristin Scott Thomas
movie_title                                                       Sarah's Key 
num_voted_users                                                          12937
cast_total_facebook_likes                                                 2140
actor_3_name                                                 Arben Bajraktaraj
facenumber_in_poster                                                         2
plot_keywords                    apartment|escape|jewish family|journalist|key
movie_imdb_link              http://www.imdb.com/title/tt1668200/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                                French
country                                                                 France
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2010
actor_2_facebook_likes                                                     767
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2758, dtype: object
color                                                                    Color
director_name                                                    Peter Cousens
num_critic_for_reviews                                                       5
duration                                                                    94
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     124
actor_2_name                                                      David Rasche
actor_1_facebook_likes                                                     467
gross                                                                      NaN
genres                                                      Drama|Family|Music
actor_1_name                                                       Sharon Leal
movie_title                                                           Freedom 
num_voted_users                                                            993
cast_total_facebook_likes                                                  994
actor_3_name                                                       Bart Shatto
facenumber_in_poster                                                         2
plot_keywords                  19th century|christian film|hymn|religion|slave
movie_imdb_link              http://www.imdb.com/title/tt2584018/?ref_=fn_t...
num_user_for_reviews                                                        13
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.45e+07
title_year                                                                2014
actor_2_facebook_likes                                                     220
imdb_score                                                                 6.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                       998
Name: 2759, dtype: object
color                                                                    Color
director_name                                                   Clint Eastwood
num_critic_for_reviews                                                     131
duration                                                                   131
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     638
actor_2_name                                                    Morgan Freeman
actor_1_facebook_likes                                                   16000
gross                                                              1.01157e+08
genres                                                           Drama|Western
actor_1_name                                                    Clint Eastwood
movie_title                                                        Unforgiven 
num_voted_users                                                         277505
cast_total_facebook_likes                                                28544
actor_3_name                                                    Frances Fisher
facenumber_in_poster                                                         1
plot_keywords                englishman|leaving flowers on a grave|one last...
movie_imdb_link              http://www.imdb.com/title/tt0105695/?ref_=fn_t...
num_user_for_reviews                                                       495
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.44e+07
title_year                                                                1992
actor_2_facebook_likes                                                   11000
imdb_score                                                                 8.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 2760, dtype: object
color                                                                    Color
director_name                                                   Lars von Trier
num_critic_for_reviews                                                     140
duration                                                                   139
director_facebook_likes                                                   3000
actor_3_facebook_likes                                                     236
actor_2_name                                                     Jeremy Davies
actor_1_facebook_likes                                                    3000
gross                                                                    74205
genres                                                                   Drama
actor_1_name                                               Bryce Dallas Howard
movie_title                                                         Manderlay 
num_voted_users                                                          18646
cast_total_facebook_likes                                                 4211
actor_3_name                                                    Jean-Marc Barr
facenumber_in_poster                                                         1
plot_keywords                cotton|female frontal nudity|flogging|gangster...
movie_imdb_link              http://www.imdb.com/title/tt0342735/?ref_=fn_t...
num_user_for_reviews                                                        81
language                                                               English
country                                                                Denmark
content_rating                                                       Not Rated
budget                                                                1.42e+07
title_year                                                                2005
actor_2_facebook_likes                                                     769
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 2761, dtype: object
color                                                                    Color
director_name                                                      Danny Boyle
num_critic_for_reviews                                                     418
duration                                                                   120
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      40
actor_2_name                                                    Saurabh Shukla
actor_1_facebook_likes                                                     668
gross                                                              1.41319e+08
genres                                                           Drama|Romance
actor_1_name                                                       Anil Kapoor
movie_title                                               Slumdog Millionaire 
num_voted_users                                                         641997
cast_total_facebook_likes                                                  820
actor_3_name                                             Ayush Mahesh Khedekar
facenumber_in_poster                                                         0
plot_keywords                cheating|falling from height|murder|non profes...
movie_imdb_link              http://www.imdb.com/title/tt1010048/?ref_=fn_t...
num_user_for_reviews                                                      1017
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                      56
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 2762, dtype: object
color                                                                    Color
director_name                                                      Adrian Lyne
num_critic_for_reviews                                                      94
duration                                                                   119
director_facebook_likes                                                    213
actor_3_facebook_likes                                                     249
actor_2_name                                                        Lois Smith
actor_1_facebook_likes                                                     886
gross                                                              1.56646e+08
genres                                                  Drama|Romance|Thriller
actor_1_name                                                       Fred Gwynne
movie_title                                                  Fatal Attraction 
num_voted_users                                                          55101
cast_total_facebook_likes                                                 1639
actor_3_name                                                       Anne Archer
facenumber_in_poster                                                         0
plot_keywords                borderline personality disorder|killing a pet|...
movie_imdb_link              http://www.imdb.com/title/tt0093010/?ref_=fn_t...
num_user_for_reviews                                                       201
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                1987
actor_2_facebook_likes                                                     276
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                      3000
Name: 2763, dtype: object
color                                                                    Color
director_name                                                   Garry Marshall
num_critic_for_reviews                                                      82
duration                                                                   125
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     700
actor_2_name                                                   Hector Elizondo
actor_1_facebook_likes                                                    8000
gross                                                              1.78406e+08
genres                                                          Comedy|Romance
actor_1_name                                                     Julia Roberts
movie_title                                                      Pretty Woman 
num_voted_users                                                         213476
cast_total_facebook_likes                                                11135
actor_3_name                                                   Jason Alexander
facenumber_in_poster                                                         2
plot_keywords                businessman|falling in love with a prostitute|...
movie_imdb_link              http://www.imdb.com/title/tt0100405/?ref_=fn_t...
num_user_for_reviews                                                       271
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                1990
actor_2_facebook_likes                                                     995
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 2764, dtype: object
color                                                                    Color
director_name                                                   John Blanchard
num_critic_for_reviews                                                     NaN
duration                                                                    65
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     176
actor_2_name                                                     Andrea Martin
actor_1_facebook_likes                                                     770
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                      Martin Short
movie_title                                      Towering Inferno             
num_voted_users                                                             10
cast_total_facebook_likes                                                 1125
actor_3_name                                                      Joe Flaherty
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt0691996/?ref_=fn_t...
num_user_for_reviews                                                       NaN
language                                                               English
country                                                                 Canada
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     179
imdb_score                                                                 9.5
aspect_ratio                                                              1.33
movie_facebook_likes                                                         0
Name: 2765, dtype: object
color                                                                    Color
director_name                                                     John Cornell
num_critic_for_reviews                                                      32
duration                                                                   108
director_facebook_likes                                                      5
actor_3_facebook_likes                                                      57
actor_2_name                                                   Linda Kozlowski
actor_1_facebook_likes                                                     442
gross                                                              1.09306e+08
genres                                                 Action|Adventure|Comedy
actor_1_name                                                        Paul Hogan
movie_title                                               Crocodile Dundee II 
num_voted_users                                                          44096
cast_total_facebook_likes                                                  717
actor_3_name                                                      John Meillon
facenumber_in_poster                                                         1
plot_keywords                australia|australian|crime boss|crocodile|gang...
movie_imdb_link              http://www.imdb.com/title/tt0092493/?ref_=fn_t...
num_user_for_reviews                                                        62
language                                                               English
country                                                              Australia
content_rating                                                              PG
budget                                                                1.58e+07
title_year                                                                1988
actor_2_facebook_likes                                                     162
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       489
Name: 2766, dtype: object
color                                                                    Color
director_name                                               Vidhu Vinod Chopra
num_critic_for_reviews                                                      22
duration                                                                   101
director_facebook_likes                                                     34
actor_3_facebook_likes                                                     277
actor_2_name                                                   Chris Marquette
actor_1_facebook_likes                                                     892
gross                                                                      NaN
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                    María Valverde
movie_title                                                     Broken Horses 
num_voted_users                                                           1554
cast_total_facebook_likes                                                 2055
actor_3_name                                                       Chad Bishop
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2503954/?ref_=fn_t...
num_user_for_reviews                                                        20
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2015
actor_2_facebook_likes                                                     355
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2767, dtype: object
color                                                                    Color
director_name                                                     Oliver Stone
num_critic_for_reviews                                                      72
duration                                                                   145
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     560
actor_2_name                                                      Tom Berenger
actor_1_facebook_likes                                                   10000
gross                                                              7.00017e+07
genres                                                     Biography|Drama|War
actor_1_name                                                        Tom Cruise
movie_title                                        Born on the Fourth of July 
num_voted_users                                                          76842
cast_total_facebook_likes                                                12098
actor_3_name                                                   Stephen Baldwin
facenumber_in_poster                                                         0
plot_keywords                desert|drunkenness|religious mother|strict mot...
movie_imdb_link              http://www.imdb.com/title/tt0096969/?ref_=fn_t...
num_user_for_reviews                                                       173
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                1989
actor_2_facebook_likes                                                     854
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                      4000
Name: 2768, dtype: object
color                                                          Black and White
director_name                                                   Jon Turteltaub
num_critic_for_reviews                                                      39
duration                                                                    98
director_facebook_likes                                                    226
actor_3_facebook_likes                                                     496
actor_2_name                                                              Leon
actor_1_facebook_likes                                                     953
gross                                                              6.88563e+07
genres                                           Adventure|Comedy|Family|Sport
actor_1_name                                                      Doug E. Doug
movie_title                                                     Cool Runnings 
num_voted_users                                                          69733
cast_total_facebook_likes                                                 2496
actor_3_name                                                        Malik Yoba
facenumber_in_poster                                                         1
plot_keywords                     bobsled|coach|jamaica|olympic games|olympics
movie_imdb_link              http://www.imdb.com/title/tt0106611/?ref_=fn_t...
num_user_for_reviews                                                        97
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                1993
actor_2_facebook_likes                                                     730
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2769, dtype: object
color                                                                    Color
director_name                                                  Patrick Lussier
num_critic_for_reviews                                                     264
duration                                                                   101
director_facebook_likes                                                     71
actor_3_facebook_likes                                                     725
actor_2_name                                                        Jaime King
actor_1_facebook_likes                                                   10000
gross                                                              5.15278e+07
genres                                                         Horror|Thriller
actor_1_name                                                     Jensen Ackles
movie_title                                               My Bloody Valentine 
num_voted_users                                                          45603
cast_total_facebook_likes                                                14159
actor_3_name                                                       Edi Gathegi
facenumber_in_poster                                                         0
plot_keywords                       coma|death|miner|valentine|valentine's day
movie_imdb_link              http://www.imdb.com/title/tt1179891/?ref_=fn_t...
num_user_for_reviews                                                       268
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     960
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2770, dtype: object
color                                                                    Color
director_name                                                     Ole Bornedal
num_critic_for_reviews                                                     264
duration                                                                    92
director_facebook_likes                                                     30
actor_3_facebook_likes                                                     309
actor_2_name                                                 Madison Davenport
actor_1_facebook_likes                                                     941
gross                                                              4.91223e+07
genres                                                         Horror|Thriller
actor_1_name                                                     Kyra Sedgwick
movie_title                                                    The Possession 
num_voted_users                                                          47169
cast_total_facebook_likes                                                 2348
actor_3_name                                                     Natasha Calis
facenumber_in_poster                                                         0
plot_keywords                      basketball coach|box|jewish|rabbi|yard sale
movie_imdb_link              http://www.imdb.com/title/tt0431021/?ref_=fn_t...
num_user_for_reviews                                                       162
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                2012
actor_2_facebook_likes                                                     459
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     17000
Name: 2771, dtype: object
color                                                                    Color
director_name                                                     Ted Kotcheff
num_critic_for_reviews                                                     145
duration                                                                    93
director_facebook_likes                                                    270
actor_3_facebook_likes                                                     535
actor_2_name                                                     Brian Dennehy
actor_1_facebook_likes                                                   13000
gross                                                                      NaN
genres                                                  Action|Adventure|Drama
actor_1_name                                                Sylvester Stallone
movie_title                                                       First Blood 
num_voted_users                                                         172493
cast_total_facebook_likes                                                15192
actor_3_name                                                      Chris Mulkey
facenumber_in_poster                                                         1
plot_keywords                               1980s|colonel|deputy|rambo|sheriff
movie_imdb_link              http://www.imdb.com/title/tt0083944/?ref_=fn_t...
num_user_for_reviews                                                       376
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                1982
actor_2_facebook_likes                                                     954
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2772, dtype: object
color                                                                    Color
director_name                                                    Sylvain White
num_critic_for_reviews                                                      86
duration                                                                   109
director_facebook_likes                                                     41
actor_3_facebook_likes                                                     748
actor_2_name                                                        Laz Alonso
actor_1_facebook_likes                                                     997
gross                                                              6.13562e+07
genres                                                     Drama|Music|Romance
actor_1_name                                                       Chris Brown
movie_title                                                    Stomp the Yard 
num_voted_users                                                          19505
cast_total_facebook_likes                                                 3544
actor_3_name                                                      Harry Lennix
facenumber_in_poster                                                         0
plot_keywords                atlanta georgia|competition|dancer|death|frate...
movie_imdb_link              http://www.imdb.com/title/tt0775539/?ref_=fn_t...
num_user_for_reviews                                                       162
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                2007
actor_2_facebook_likes                                                     826
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2773, dtype: object
color                                                                    Color
director_name                                                    Lewis Gilbert
num_critic_for_reviews                                                     112
duration                                                                   123
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     238
actor_2_name                                                  Desmond Llewelyn
actor_1_facebook_likes                                                     456
gross                                                                 4.68e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                    Caroline Munro
movie_title                                              The Spy Who Loved Me 
num_voted_users                                                          76477
cast_total_facebook_likes                                                 1326
actor_3_name                                                      Barbara Bach
facenumber_in_poster                                                         2
plot_keywords                1970s|cult film|official james bond series|sub...
movie_imdb_link              http://www.imdb.com/title/tt0076752/?ref_=fn_t...
num_user_for_reviews                                                       275
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 1.4e+07
title_year                                                                1977
actor_2_facebook_likes                                                     244
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2774, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      17
duration                                                                    60
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                      84
actor_2_name                                                   Steve Gonsalves
actor_1_facebook_likes                                                     155
gross                                                                      NaN
genres                                                             Documentary
actor_1_name                                                         Amy Bruni
movie_title                                         Ghost Hunters             
num_voted_users                                                           5563
cast_total_facebook_likes                                                  552
actor_3_name                                                       Jason Hawes
facenumber_in_poster                                                         0
plot_keywords                   ghost|paranormal|paranormal research|shaky cam
movie_imdb_link              http://www.imdb.com/title/tt0426697/?ref_=fn_t...
num_user_for_reviews                                                        57
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     130
imdb_score                                                                 6.6
aspect_ratio                                                               NaN
movie_facebook_likes                                                       373
Name: 2775, dtype: object
color                                                                    Color
director_name                                                     Jamie Blanks
num_critic_for_reviews                                                     101
duration                                                                    99
director_facebook_likes                                                      9
actor_3_facebook_likes                                                     648
actor_2_name                                                    Loretta Devine
actor_1_facebook_likes                                                     975
gross                                                              3.80486e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                       Alicia Witt
movie_title                                                      Urban Legend 
num_voted_users                                                          47814
cast_total_facebook_likes                                                 3500
actor_3_name                                                   Julian Richings
facenumber_in_poster                                                         4
plot_keywords                       campus|death|friend|professor|urban legend
movie_imdb_link              http://www.imdb.com/title/tt0146336/?ref_=fn_t...
num_user_for_reviews                                                       426
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                1998
actor_2_facebook_likes                                                     912
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2776, dtype: object
color                                                                    Color
director_name                                                   Stephen Frears
num_critic_for_reviews                                                      51
duration                                                                   119
director_facebook_likes                                                    350
actor_3_facebook_likes                                                     418
actor_2_name                                                     Peter Capaldi
actor_1_facebook_likes                                                   18000
gross                                                                 3.47e+07
genres                                                           Drama|Romance
actor_1_name                                                      Keanu Reeves
movie_title                                                Dangerous Liaisons 
num_voted_users                                                          52846
cast_total_facebook_likes                                                35501
actor_3_name                                                     Swoosie Kurtz
facenumber_in_poster                                                         2
plot_keywords                catholic|corruption|emotional abuse|france|sed...
movie_imdb_link              http://www.imdb.com/title/tt0094947/?ref_=fn_t...
num_user_for_reviews                                                       143
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                1988
actor_2_facebook_likes                                                   17000
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2777, dtype: object
color                                                                    Color
director_name                                                      Tyler Perry
num_critic_for_reviews                                                      42
duration                                                                   110
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     490
actor_2_name                                                   Phylicia Rashad
actor_1_facebook_likes                                                     849
gross                                                              3.50102e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Eddie Cibrian
movie_title                                                        Good Deeds 
num_voted_users                                                           6352
cast_total_facebook_likes                                                 2226
actor_3_name                                                     Jamie Kennedy
facenumber_in_poster                                                         1
plot_keywords                businessman|fight|mean brother|narrated by cha...
movie_imdb_link              http://www.imdb.com/title/tt1885265/?ref_=fn_t...
num_user_for_reviews                                                        43
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2012
actor_2_facebook_likes                                                     597
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2778, dtype: object
color                                                                    Color
director_name                                                   Randal Kleiser
num_critic_for_reviews                                                      10
duration                                                                   107
director_facebook_likes                                                    116
actor_3_facebook_likes                                                      25
actor_2_name                                             Klaus Maria Brandauer
actor_1_facebook_likes                                                     327
gross                                                              3.47932e+07
genres                                                         Adventure|Drama
actor_1_name                                                    Seymour Cassel
movie_title                                                        White Fang 
num_voted_users                                                          15730
cast_total_facebook_likes                                                  552
actor_3_name                                                       Susan Hogan
facenumber_in_poster                                                         1
plot_keywords                                 alaska|dog|friendship|gold|yukon
movie_imdb_link              http://www.imdb.com/title/tt0103247/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.4e+07
title_year                                                                1991
actor_2_facebook_likes                                                     172
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2779, dtype: object
color                                                                    Color
director_name                                                  Bruce McCulloch
num_critic_for_reviews                                                      43
duration                                                                    81
director_facebook_likes                                                     54
actor_3_facebook_likes                                                     636
actor_2_name                                                    Elaine Hendrix
actor_1_facebook_likes                                                    8000
gross                                                               3.0629e+07
genres                                                          Comedy|Romance
actor_1_name                                                      Will Ferrell
movie_title                                                         Superstar 
num_voted_users                                                          15047
cast_total_facebook_likes                                                10792
actor_3_name                                                     Molly Shannon
facenumber_in_poster                                                         1
plot_keywords                  dancing|orphan|school|special education|student
movie_imdb_link              http://www.imdb.com/title/tt0167427/?ref_=fn_t...
num_user_for_reviews                                                       160
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                1999
actor_2_facebook_likes                                                     670
imdb_score                                                                   5
aspect_ratio                                                              1.85
movie_facebook_likes                                                      2000
Name: 2780, dtype: object
color                                                                    Color
director_name                                                   Phyllida Lloyd
num_critic_for_reviews                                                     331
duration                                                                   105
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     583
actor_2_name                                                     Jim Broadbent
actor_1_facebook_likes                                                   11000
gross                                                              2.99594e+07
genres                                                 Biography|Drama|History
actor_1_name                                                      Meryl Streep
movie_title                                                     The Iron Lady 
num_voted_users                                                          82327
cast_total_facebook_likes                                                12894
actor_3_name                                                     Olivia Colman
facenumber_in_poster                                                         1
plot_keywords                british prime minister|female prime minister|p...
movie_imdb_link              http://www.imdb.com/title/tt1007029/?ref_=fn_t...
num_user_for_reviews                                                       350
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.3e+07
title_year                                                                2011
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 2781, dtype: object
color                                                                    Color
director_name                                                    Mike Nawrocki
num_critic_for_reviews                                                      38
duration                                                                    82
director_facebook_likes                                                     12
actor_3_facebook_likes                                                       8
actor_2_name                                                     Mike Nawrocki
actor_1_facebook_likes                                                      23
gross                                                              2.55714e+07
genres                         Adventure|Animation|Comedy|Drama|Family|Musical
actor_1_name                                                      Phil Vischer
movie_title                                        Jonah: A VeggieTales Movie 
num_voted_users                                                           3135
cast_total_facebook_likes                                                   49
actor_3_name                                                    Shelby Vischer
facenumber_in_poster                                                         0
plot_keywords                 anthropomorphism|pirate|pirate ship|tomato|whale
movie_imdb_link              http://www.imdb.com/title/tt0298388/?ref_=fn_t...
num_user_for_reviews                                                        78
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 1.4e+07
title_year                                                                2002
actor_2_facebook_likes                                                      12
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       184
Name: 2782, dtype: object
color                                                                    Color
director_name                                                   John Singleton
num_critic_for_reviews                                                      12
duration                                                                   109
director_facebook_likes                                                    309
actor_3_facebook_likes                                                     279
actor_2_name                                                  Khandi Alexander
actor_1_facebook_likes                                                     592
gross                                                              2.75158e+07
genres                                                           Drama|Romance
actor_1_name                                                     Janet Jackson
movie_title                                                    Poetic Justice 
num_voted_users                                                           8904
cast_total_facebook_likes                                                 1620
actor_3_name                                                      Maya Angelou
facenumber_in_poster                                                         0
plot_keywords                african american|mail carrier|poetry|postal wo...
movie_imdb_link              http://www.imdb.com/title/tt0107840/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                1993
actor_2_facebook_likes                                                     556
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2783, dtype: object
color                                                                    Color
director_name                                                       Kevin Bray
num_critic_for_reviews                                                      40
duration                                                                    95
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     111
actor_2_name                                              Roger Guenveur Smith
actor_1_facebook_likes                                                     706
gross                                                              2.54829e+07
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                                         Mike Epps
movie_title                                           All About the Benjamins 
num_voted_users                                                           9693
cast_total_facebook_likes                                                 1421
actor_3_name                                                      Gino Salvano
facenumber_in_poster                                                         2
plot_keywords                black comedy|bounty hunter|diamond|machismo|money
movie_imdb_link              http://www.imdb.com/title/tt0278295/?ref_=fn_t...
num_user_for_reviews                                                        33
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                2002
actor_2_facebook_likes                                                     266
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       530
Name: 2784, dtype: object
color                                                                    Color
director_name                                                       Wes Craven
num_critic_for_reviews                                                      34
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     364
actor_2_name                                                     W. Earl Brown
actor_1_facebook_likes                                                     723
gross                                                                 1.99e+07
genres                                           Comedy|Fantasy|Horror|Romance
actor_1_name                                                  John Witherspoon
movie_title                                               Vampire in Brooklyn 
num_voted_users                                                          17262
cast_total_facebook_likes                                                 2348
actor_3_name                                                       Allen Payne
facenumber_in_poster                                                         1
plot_keywords                          blood|destiny|nightmare|partner|vampire
movie_imdb_link              http://www.imdb.com/title/tt0114825/?ref_=fn_t...
num_user_for_reviews                                                        53
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   2e+07
title_year                                                                1995
actor_2_facebook_likes                                                     422
imdb_score                                                                 4.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 2785, dtype: object
color                                                                    Color
director_name                                                     John Boorman
num_critic_for_reviews                                                      82
duration                                                                   118
director_facebook_likes                                                    128
actor_3_facebook_likes                                                     467
actor_2_name                                                    Richard Burton
actor_1_facebook_likes                                                     931
gross                                                                      NaN
genres                                                                  Horror
actor_1_name                                                       Linda Blair
movie_title                                          Exorcist II: The Heretic 
num_voted_users                                                          16294
cast_total_facebook_likes                                                 2704
actor_3_name                                                        Ned Beatty
facenumber_in_poster                                                         7
plot_keywords                    demon|exorcism|locust|priest|repressed memory
movie_imdb_link              http://www.imdb.com/title/tt0076009/?ref_=fn_t...
num_user_for_reviews                                                       252
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                1977
actor_2_facebook_likes                                                     726
imdb_score                                                                 3.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       889
Name: 2786, dtype: object
color                                                                    Color
director_name                                                 Courtney Solomon
num_critic_for_reviews                                                     125
duration                                                                    91
director_facebook_likes                                                     31
actor_3_facebook_likes                                                      50
actor_2_name                                                      James D'Arcy
actor_1_facebook_likes                                                     874
gross                                                               1.6298e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                      Sissy Spacek
movie_title                                              An American Haunting 
num_voted_users                                                          22207
cast_total_facebook_likes                                                 1608
actor_3_name                                                  Vernon Dobtcheff
facenumber_in_poster                                                         0
plot_keywords                flashback|lifting someone into the air|paranor...
movie_imdb_link              http://www.imdb.com/title/tt0429573/?ref_=fn_t...
num_user_for_reviews                                                       747
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                2005
actor_2_facebook_likes                                                     613
imdb_score                                                                   5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2787, dtype: object
color                                                                    Color
director_name                                                     David Zucker
num_critic_for_reviews                                                      56
duration                                                                    90
director_facebook_likes                                                    119
actor_3_facebook_likes                                                     636
actor_2_name                                                      Tyler Labine
actor_1_facebook_likes                                                     869
gross                                                              1.55497e+07
genres                                                          Comedy|Romance
actor_1_name                                                    Carmen Electra
movie_title                                                My Boss's Daughter 
num_voted_users                                                          24038
cast_total_facebook_likes                                                 3007
actor_3_name                                                     Molly Shannon
facenumber_in_poster                                                         2
plot_keywords                boss' daughter|crush|house sitter|housesitting...
movie_imdb_link              http://www.imdb.com/title/tt0270980/?ref_=fn_t...
num_user_for_reviews                                                       123
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                2003
actor_2_facebook_likes                                                     779
imdb_score                                                                 4.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       411
Name: 2788, dtype: object
color                                                                    Color
director_name                                                      David Twohy
num_critic_for_reviews                                                     160
duration                                                                   108
director_facebook_likes                                                    123
actor_3_facebook_likes                                                     690
actor_2_name                                                    Milla Jovovich
actor_1_facebook_likes                                                   26000
gross                                                              1.54835e+07
genres                                              Adventure|Mystery|Thriller
actor_1_name                                                   Chris Hemsworth
movie_title                                                 A Perfect Getaway 
num_voted_users                                                          56338
cast_total_facebook_likes                                                41359
actor_3_name                                                    Marley Shelton
facenumber_in_poster                                                         4
plot_keywords                           cliff|hawaii|island|newlywed|waterfall
movie_imdb_link              http://www.imdb.com/title/tt0971209/?ref_=fn_t...
num_user_for_reviews                                                       215
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                2009
actor_2_facebook_likes                                                   14000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                      4000
Name: 2789, dtype: object
color                                                                    Color
director_name                                                    Rick Famuyiwa
num_critic_for_reviews                                                      71
duration                                                                   103
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     625
actor_2_name                                                       Lance Gross
actor_1_facebook_likes                                                     953
gross                                                               2.0247e+07
genres                                                          Comedy|Romance
actor_1_name                                                   America Ferrera
movie_title                                                Our Family Wedding 
num_voted_users                                                           5721
cast_total_facebook_likes                                                 3299
actor_3_name                                                    Lupe Ontiveros
facenumber_in_poster                                                         2
plot_keywords                   california|love|marriage|wedding|wedding dress
movie_imdb_link              http://www.imdb.com/title/tt1305583/?ref_=fn_t...
num_user_for_reviews                                                        20
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                2010
actor_2_facebook_likes                                                     849
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 2790, dtype: object
color                                                                    Color
director_name                                                        Alan Cohn
num_critic_for_reviews                                                      37
duration                                                                    96
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     654
actor_2_name                                                  Linda Cardellini
actor_1_facebook_likes                                                    3000
gross                                                              1.50629e+07
genres                                                                  Comedy
actor_1_name                                                   Alyson Hannigan
movie_title                                                Dead Man on Campus 
num_voted_users                                                          11729
cast_total_facebook_likes                                                 6861
actor_3_name                                                  Poppy Montgomery
facenumber_in_poster                                                         0
plot_keywords                  college|college roommate|party|roommate|student
movie_imdb_link              http://www.imdb.com/title/tt0118301/?ref_=fn_t...
num_user_for_reviews                                                       106
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                1998
actor_2_facebook_likes                                                    2000
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       645
Name: 2791, dtype: object
color                                                                    Color
director_name                                                Franco Zeffirelli
num_critic_for_reviews                                                      62
duration                                                                   117
director_facebook_likes                                                    160
actor_3_facebook_likes                                                      55
actor_2_name                                                    Joan Plowright
actor_1_facebook_likes                                                     718
gross                                                              1.43481e+07
genres                                                        Comedy|Drama|War
actor_1_name                                                       Lily Tomlin
movie_title                                                Tea with Mussolini 
num_voted_users                                                           9323
cast_total_facebook_likes                                                 1148
actor_3_name                                                     Paolo Seganti
facenumber_in_poster                                                         6
plot_keywords                            ambassador|american|art|english|italy
movie_imdb_link              http://www.imdb.com/title/tt0120857/?ref_=fn_t...
num_user_for_reviews                                                       157
language                                                               English
country                                                                  Italy
content_rating                                                              PG
budget                                                                 1.2e+07
title_year                                                                1999
actor_2_facebook_likes                                                     330
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       970
Name: 2792, dtype: object
color                                                                    Color
director_name                                                      Tom Holland
num_critic_for_reviews                                                      73
duration                                                                    93
director_facebook_likes                                                     85
actor_3_facebook_likes                                                     514
actor_2_name                                                  Bethany Joy Lenz
actor_1_facebook_likes                                                    1000
gross                                                              1.51715e+07
genres                                                          Fantasy|Horror
actor_1_name                                                      Joe Mantegna
movie_title                                                           Thinner 
num_voted_users                                                          19805
cast_total_facebook_likes                                                 2777
actor_3_name                                                       Kari Wuhrer
facenumber_in_poster                                                         0
plot_keywords                                  death|doctor|gypsy|judge|lawyer
movie_imdb_link              http://www.imdb.com/title/tt0117894/?ref_=fn_t...
num_user_for_reviews                                                       122
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.5e+06
title_year                                                                1996
actor_2_facebook_likes                                                     855
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2793, dtype: object
color                                                                    Color
director_name                                                  Martin Scorsese
num_critic_for_reviews                                                      59
duration                                                                   136
director_facebook_likes                                                  17000
actor_3_facebook_likes                                                     213
actor_2_name                                                     Liza Minnelli
actor_1_facebook_likes                                                   22000
gross                                                                      NaN
genres                                             Drama|Music|Musical|Romance
actor_1_name                                                    Robert De Niro
movie_title                                                New York, New York 
num_voted_users                                                          13548
cast_total_facebook_likes                                                23378
actor_3_name                                                    Mary Kay Place
facenumber_in_poster                                                         0
plot_keywords                      love|musician|saxophonist|singer|songwriter
movie_imdb_link              http://www.imdb.com/title/tt0076451/?ref_=fn_t...
num_user_for_reviews                                                        75
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.4e+07
title_year                                                                1977
actor_2_facebook_likes                                                     740
imdb_score                                                                 6.7
aspect_ratio                                                              1.66
movie_facebook_likes                                                       932
Name: 2794, dtype: object
color                                                                    Color
director_name                                                        Spike Lee
num_critic_for_reviews                                                      25
duration                                                                   115
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     534
actor_2_name                                                      Delroy Lindo
actor_1_facebook_likes                                                    1000
gross                                                                1.364e+07
genres                                                            Comedy|Drama
actor_1_name                                                     Alfre Woodard
movie_title                                                          Crooklyn 
num_voted_users                                                           6011
cast_total_facebook_likes                                                 3267
actor_3_name                                                 Isaiah Washington
facenumber_in_poster                                                         0
plot_keywords                argument|birthday|bully|coming of age|semi aut...
movie_imdb_link              http://www.imdb.com/title/tt0109504/?ref_=fn_t...
num_user_for_reviews                                                        39
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                1994
actor_2_facebook_likes                                                     848
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       905
Name: 2795, dtype: object
color                                                                    Color
director_name                                                       Chris Rock
num_critic_for_reviews                                                      97
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     458
actor_2_name                                                       Eliza Coupe
actor_1_facebook_likes                                                   12000
gross                                                              1.25502e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Steve Buscemi
movie_title                                            I Think I Love My Wife 
num_voted_users                                                          13866
cast_total_facebook_likes                                                13446
actor_3_name                                                    Wendell Pierce
facenumber_in_poster                                                         3
plot_keywords                 banker|investment|investment banker|marriage|sex
movie_imdb_link              http://www.imdb.com/title/tt0770772/?ref_=fn_t...
num_user_for_reviews                                                        55
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2007
actor_2_facebook_likes                                                     490
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       488
Name: 2796, dtype: object
color                                                                    Color
director_name                                                      James Isaac
num_critic_for_reviews                                                     205
duration                                                                    85
director_facebook_likes                                                     52
actor_3_facebook_likes                                                     489
actor_2_name                                                       Kane Hodder
actor_1_facebook_likes                                                    1000
gross                                                              1.26107e+07
genres                                           Action|Horror|Sci-Fi|Thriller
actor_1_name                                                      Peter Mensah
movie_title                                                           Jason X 
num_voted_users                                                          38985
cast_total_facebook_likes                                                 3050
actor_3_name                                                         Lexa Doig
facenumber_in_poster                                                         1
plot_keywords                    jason voorhees|lake|machete|scientist|slasher
movie_imdb_link              http://www.imdb.com/title/tt0211443/?ref_=fn_t...
num_user_for_reviews                                                       673
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2001
actor_2_facebook_likes                                                     935
imdb_score                                                                 4.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2797, dtype: object
color                                                                    Color
director_name                                                       Shawn Levy
num_critic_for_reviews                                                      69
duration                                                                    88
director_facebook_likes                                                    189
actor_3_facebook_likes                                                     799
actor_2_name                                                     Donald Faison
actor_1_facebook_likes                                                     934
gross                                                              4.78113e+07
genres                                                 Adventure|Comedy|Family
actor_1_name                                                     Frankie Muniz
movie_title                                                      Big Fat Liar 
num_voted_users                                                          29008
cast_total_facebook_likes                                                 3707
actor_3_name                                                        Lee Majors
facenumber_in_poster                                                         1
plot_keywords                          brunette|film producer|liar|prank|stunt
movie_imdb_link              http://www.imdb.com/title/tt0265298/?ref_=fn_t...
num_user_for_reviews                                                        99
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     927
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       896
Name: 2798, dtype: object
color                                                                    Color
director_name                                                   Emilio Estevez
num_critic_for_reviews                                                     195
duration                                                                   112
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     383
actor_2_name                                                       Nick Cannon
actor_1_facebook_likes                                                   12000
gross                                                              1.12045e+07
genres                                                           Drama|History
actor_1_name                                                   Anthony Hopkins
movie_title                                                             Bobby 
num_voted_users                                                          38142
cast_total_facebook_likes                                                13528
actor_3_name                                                    Brian Geraghty
facenumber_in_poster                                                         0
plot_keywords                              campaign|chess|friend|hotel|senator
movie_imdb_link              http://www.imdb.com/title/tt0308055/?ref_=fn_t...
num_user_for_reviews                                                       270
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                2006
actor_2_facebook_likes                                                     593
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2799, dtype: object
color                                                                    Color
director_name                                                      Mark Waters
num_critic_for_reviews                                                      61
duration                                                                    86
director_facebook_likes                                                     70
actor_3_facebook_likes                                                     169
actor_2_name                                                   Ivana Milicevic
actor_1_facebook_likes                                                     878
gross                                                              1.03974e+07
genres                                                  Comedy|Mystery|Romance
actor_1_name                                                     Monica Potter
movie_title                                                   Head Over Heels 
num_voted_users                                                          11693
cast_total_facebook_likes                                                 2165
actor_3_name                                                        China Chow
facenumber_in_poster                                                         5
plot_keywords                apartment|fast motion scene|model|private inve...
movie_imdb_link              http://www.imdb.com/title/tt0192111/?ref_=fn_t...
num_user_for_reviews                                                       104
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                2001
actor_2_facebook_likes                                                     834
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       613
Name: 2800, dtype: object
color                                                                    Color
director_name                                                    Josh Schwartz
num_critic_for_reviews                                                      77
duration                                                                    86
director_facebook_likes                                                     90
actor_3_facebook_likes                                                     635
actor_2_name                                                    Jackson Nicoll
actor_1_facebook_likes                                                     962
gross                                                              9.40241e+06
genres                                                        Adventure|Comedy
actor_1_name                                                   Thomas McDonell
movie_title                                                          Fun Size 
num_voted_users                                                          11233
cast_total_facebook_likes                                                 3715
actor_3_name                                                        Osric Chau
facenumber_in_poster                                                         1
plot_keywords                adult humor|best friend|friend|halloween|teena...
movie_imdb_link              http://www.imdb.com/title/tt1663143/?ref_=fn_t...
num_user_for_reviews                                                        32
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                2012
actor_2_facebook_likes                                                     925
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2801, dtype: object
color                                                                    Color
director_name                                                  Julian Schnabel
num_critic_for_reviews                                                     259
duration                                                                   112
director_facebook_likes                                                    232
actor_3_facebook_likes                                                     177
actor_2_name                                                   Mathieu Amalric
actor_1_facebook_likes                                                     413
gross                                                              5.99008e+06
genres                                                         Biography|Drama
actor_1_name                                                Emmanuelle Seigner
movie_title                                 The Diving Bell and the Butterfly 
num_voted_users                                                          89906
cast_total_facebook_likes                                                 1372
actor_3_name                                                 Isaach De Bankolé
facenumber_in_poster                                                         1
plot_keywords                arc de triomphe paris|based on autobiography|c...
movie_imdb_link              http://www.imdb.com/title/tt0401383/?ref_=fn_t...
num_user_for_reviews                                                       175
language                                                                French
country                                                                 France
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2007
actor_2_facebook_likes                                                     412
imdb_score                                                                   8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     13000
Name: 2802, dtype: object
color                                                                    Color
director_name                                                       Todd Field
num_critic_for_reviews                                                     251
duration                                                                   137
director_facebook_likes                                                    143
actor_3_facebook_likes                                                     280
actor_2_name                                                     Noah Emmerich
actor_1_facebook_likes                                                   14000
gross                                                              5.45982e+06
genres                                                           Drama|Romance
actor_1_name                                                      Kate Winslet
movie_title                                                   Little Children 
num_voted_users                                                          92781
cast_total_facebook_likes                                                15337
actor_3_name                                                        Jane Adams
facenumber_in_poster                                                         0
plot_keywords                adulterous wife|bar|dysfunctional marriage|sex...
movie_imdb_link              http://www.imdb.com/title/tt0404203/?ref_=fn_t...
num_user_for_reviews                                                       320
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 2.6e+07
title_year                                                                2006
actor_2_facebook_likes                                                     617
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                      5000
Name: 2803, dtype: object
color                                                                    Color
director_name                                                 Davis Guggenheim
num_critic_for_reviews                                                      63
duration                                                                    90
director_facebook_likes                                                     49
actor_3_facebook_likes                                                     191
actor_2_name                                                   Sharon Lawrence
actor_1_facebook_likes                                                   12000
gross                                                              5.10882e+06
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                     Norman Reedus
movie_title                                                            Gossip 
num_voted_users                                                          12519
cast_total_facebook_likes                                                12776
actor_3_name                                                      Noam Jenkins
facenumber_in_poster                                                         5
plot_keywords                           college|college campus|gossip|rape|sex
movie_imdb_link              http://www.imdb.com/title/tt0176783/?ref_=fn_t...
num_user_for_reviews                                                       112
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 2.4e+07
title_year                                                                2000
actor_2_facebook_likes                                                     215
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       853
Name: 2804, dtype: object
color                                                                    Color
director_name                                                     Tony Goldwyn
num_critic_for_reviews                                                      47
duration                                                                   107
director_facebook_likes                                                    956
actor_3_facebook_likes                                                     113
actor_2_name                                                      Julie Kavner
actor_1_facebook_likes                                                   10000
gross                                                              4.74199e+06
genres                                                                   Drama
actor_1_name                                                   Viggo Mortensen
movie_title                                                A Walk on the Moon 
num_voted_users                                                           6782
cast_total_facebook_likes                                                10368
actor_3_name                                                    Tovah Feldshuh
facenumber_in_poster                                                         1
plot_keywords                adulterous wife|cheating wife|summer|unfaithfu...
movie_imdb_link              http://www.imdb.com/title/tt0120613/?ref_=fn_t...
num_user_for_reviews                                                       114
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                1999
actor_2_facebook_likes                                                     233
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       860
Name: 2805, dtype: object
color                                                                    Color
director_name                                                    Phillip Noyce
num_critic_for_reviews                                                     108
duration                                                                    98
director_facebook_likes                                                    176
actor_3_facebook_likes                                                      15
actor_2_name                                                       Terry Pheto
actor_1_facebook_likes                                                     543
gross                                                              4.29196e+06
genres                                                 Biography|Drama|History
actor_1_name                                                        Derek Luke
movie_title                                                      Catch a Fire 
num_voted_users                                                           9334
cast_total_facebook_likes                                                  678
actor_3_name                                                      Bonnie Henna
facenumber_in_poster                                                         3
plot_keywords                           attack|coach|colonel|jail|oil refinery
movie_imdb_link              http://www.imdb.com/title/tt0437232/?ref_=fn_t...
num_user_for_reviews                                                        59
language                                                               English
country                                                                 France
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                2006
actor_2_facebook_likes                                                     113
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       447
Name: 2806, dtype: object
color                                                                    Color
director_name                                                Stephen Carpenter
num_critic_for_reviews                                                      64
duration                                                                    84
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     102
actor_2_name                                               Angela Featherstone
actor_1_facebook_likes                                                     159
gross                                                              3.10065e+06
genres                                           Drama|Horror|Mystery|Thriller
actor_1_name                                                Melissa Sagemiller
movie_title                                                    Soul Survivors 
num_voted_users                                                           7277
cast_total_facebook_likes                                                  417
actor_3_name                                                   Candace Kroslak
facenumber_in_poster                                                         4
plot_keywords                car accident|college|ghost|girl in panties|whi...
movie_imdb_link              http://www.imdb.com/title/tt0218619/?ref_=fn_t...
num_user_for_reviews                                                       181
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                2001
actor_2_facebook_likes                                                     102
imdb_score                                                                 3.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       231
Name: 2807, dtype: object
color                                                                    Color
director_name                                                      James Ivory
num_critic_for_reviews                                                      20
duration                                                                   139
director_facebook_likes                                                    133
actor_3_facebook_likes                                                       5
actor_2_name                                                        Todd Boyce
actor_1_facebook_likes                                                     423
gross                                                                2.474e+06
genres                                         Biography|Drama|History|Romance
actor_1_name                                                      Seth Gilliam
movie_title                                                Jefferson in Paris 
num_voted_users                                                           2427
cast_total_facebook_likes                                                  446
actor_3_name                                                     Nigel Whitmey
facenumber_in_poster                                                         1
plot_keywords                18th century|ambassador|french revolution|frie...
movie_imdb_link              http://www.imdb.com/title/tt0113463/?ref_=fn_t...
num_user_for_reviews                                                        27
language                                                               English
country                                                                 France
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                1995
actor_2_facebook_likes                                                      15
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       127
Name: 2808, dtype: object
color                                                                    Color
director_name                                                  Stephan Elliott
num_critic_for_reviews                                                     135
duration                                                                    97
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     548
actor_2_name                                              Kristin Scott Thomas
actor_1_facebook_likes                                                   14000
gross                                                              2.65632e+06
genres                                                          Comedy|Romance
actor_1_name                                                       Colin Firth
movie_title                                                       Easy Virtue 
num_voted_users                                                          16444
cast_total_facebook_likes                                                16431
actor_3_name                                                     Kris Marshall
facenumber_in_poster                                                         4
plot_keywords                estate|female frontal nudity|female nudity|no ...
movie_imdb_link              http://www.imdb.com/title/tt0808244/?ref_=fn_t...
num_user_for_reviews                                                        79
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2008
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 2809, dtype: object
color                                                                    Color
director_name                                                      James Fargo
num_critic_for_reviews                                                       2
duration                                                                   127
director_facebook_likes                                                    109
actor_3_facebook_likes                                                     324
actor_2_name                                                     Joseph Cotten
actor_1_facebook_likes                                                   16000
gross                                                                    1e+06
genres                                                Action|Adventure|History
actor_1_name                                                   Christopher Lee
movie_title                                                          Caravans 
num_voted_users                                                            524
cast_total_facebook_likes                                                17250
actor_3_name                                                 Behrouz Vossoughi
facenumber_in_poster                                                         0
plot_keywords                          afghanistan|caravan|rebel|russian|tribe
movie_imdb_link              http://www.imdb.com/title/tt0077296/?ref_=fn_t...
num_user_for_reviews                                                         8
language                                                               English
country                                                                   Iran
content_rating                                                              PG
budget                                                                 1.4e+07
title_year                                                                1978
actor_2_facebook_likes                                                     469
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                        76
Name: 2810, dtype: object
color                                                                    Color
director_name                                                       Mike Leigh
num_critic_for_reviews                                                     262
duration                                                                   150
director_facebook_likes                                                    608
actor_3_facebook_likes                                                      43
actor_2_name                                                        Ruth Sheen
actor_1_facebook_likes                                                     149
gross                                                               3.9585e+06
genres                                                 Biography|Drama|History
actor_1_name                                                   Lesley Manville
movie_title                                                        Mr. Turner 
num_voted_users                                                          17933
cast_total_facebook_likes                                                  390
actor_3_name                                                      Karl Johnson
facenumber_in_poster                                                         0
plot_keywords                     prism|rented room|scrofula|sketching|sunrise
movie_imdb_link              http://www.imdb.com/title/tt2473794/?ref_=fn_t...
num_user_for_reviews                                                       165
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 8.2e+06
title_year                                                                2014
actor_2_facebook_likes                                                      44
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2811, dtype: object
color                                                                    Color
director_name                                                    Alain Resnais
num_critic_for_reviews                                                     129
duration                                                                   104
director_facebook_likes                                                    752
actor_3_facebook_likes                                                      59
actor_2_name                                                    Sara Forestier
actor_1_facebook_likes                                                     412
gross                                                                   403649
genres                                                           Drama|Romance
actor_1_name                                                   Mathieu Amalric
movie_title                                                        Wild Grass 
num_voted_users                                                           3174
cast_total_facebook_likes                                                  799
actor_3_name                                                      Edouard Baer
facenumber_in_poster                                                         0
plot_keywords                           dentist|letter|pilot|skateboard|wallet
movie_imdb_link              http://www.imdb.com/title/tt1156143/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                                French
country                                                                 France
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                      74
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       512
Name: 2812, dtype: object
color                                                                    Color
director_name                                                     Costa-Gavras
num_critic_for_reviews                                                      69
duration                                                                   132
director_facebook_likes                                                    333
actor_3_facebook_likes                                                     284
actor_2_name                                                 Mathieu Kassovitz
actor_1_facebook_likes                                                     380
gross                                                                   274299
genres                                               Biography|Crime|Drama|War
actor_1_name                                                    Sebastian Koch
movie_title                                                             Amen. 
num_voted_users                                                          11077
cast_total_facebook_likes                                                 1429
actor_3_name                                                       Ulrich Mühe
facenumber_in_poster                                                         2
plot_keywords                                        jesuit|jew|pope|priest|ss
movie_imdb_link              http://www.imdb.com/title/tt0280653/?ref_=fn_t...
num_user_for_reviews                                                        55
language                                                               English
country                                                                 France
content_rating                                                         Unrated
budget                                                                1.03e+08
title_year                                                                2002
actor_2_facebook_likes                                                     326
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2813, dtype: object
color                                                                    Color
director_name                                                      Chao-Bin Su
num_critic_for_reviews                                                      50
duration                                                                   117
director_facebook_likes                                                      2
actor_3_facebook_likes                                                      21
actor_2_name                                                         Shawn Yue
actor_1_facebook_likes                                                     149
gross                                                                      NaN
genres                                                                  Action
actor_1_name                                                     Woo-sung Jung
movie_title                                                Reign of Assassins 
num_voted_users                                                           6069
cast_total_facebook_likes                                                  243
actor_3_name                                                         Kelly Lin
facenumber_in_poster                                                         2
plot_keywords                                   martial arts|sword fight|wuxia
movie_imdb_link              http://www.imdb.com/title/tt1460743/?ref_=fn_t...
num_user_for_reviews                                                        34
language                                                              Mandarin
country                                                                  China
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2010
actor_2_facebook_likes                                                      32
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 2814, dtype: object
color                                                                    Color
director_name                                                      Neil Burger
num_critic_for_reviews                                                      57
duration                                                                   115
director_facebook_likes                                                    168
actor_3_facebook_likes                                                     322
actor_2_name                                                  Katherine LaNasa
actor_1_facebook_likes                                                     697
gross                                                                   183088
genres                                                        Comedy|Drama|War
actor_1_name                                                        John Heard
movie_title                                                    The Lucky Ones 
num_voted_users                                                          11704
cast_total_facebook_likes                                                 2243
actor_3_name                                                     Mark L. Young
facenumber_in_poster                                                         0
plot_keywords                college tuition|guitar|road trip|soldier|stranded
movie_imdb_link              http://www.imdb.com/title/tt0981072/?ref_=fn_t...
num_user_for_reviews                                                        36
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                     329
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       702
Name: 2815, dtype: object
color                                                                    Color
director_name                                                 Kenneth Lonergan
num_critic_for_reviews                                                     116
duration                                                                   186
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     338
actor_2_name                                                     Kieran Culkin
actor_1_facebook_likes                                                   13000
gross                                                                    46495
genres                                                                   Drama
actor_1_name                                                        Matt Damon
movie_title                                                          Margaret 
num_voted_users                                                          12053
cast_total_facebook_likes                                                14638
actor_3_name                                                John Gallagher Jr.
facenumber_in_poster                                                         1
plot_keywords                accident|bus|loss of virginity|new york city|v...
movie_imdb_link              http://www.imdb.com/title/tt0466893/?ref_=fn_t...
num_user_for_reviews                                                       119
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                2011
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2816, dtype: object
color                                                                    Color
director_name                                                         Bo Zenga
num_critic_for_reviews                                                      45
duration                                                                    90
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     378
actor_2_name                                                    Kenan Thompson
actor_1_facebook_likes                                                     826
gross                                                                      NaN
genres                                                           Comedy|Horror
actor_1_name                                                       Steve Howey
movie_title                                                      Stan Helsing 
num_voted_users                                                           9928
cast_total_facebook_likes                                                 2207
actor_3_name                                                       Diora Baird
facenumber_in_poster                                                         7
plot_keywords                dollar bill|double entendre|escaped convict|ha...
movie_imdb_link              http://www.imdb.com/title/tt1185266/?ref_=fn_t...
num_user_for_reviews                                                        66
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     521
imdb_score                                                                 3.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       934
Name: 2817, dtype: object
color                                                                    Color
director_name                                                       Rob Reiner
num_critic_for_reviews                                                      87
duration                                                                    90
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     767
actor_2_name                                                 Rebecca De Mornay
actor_1_facebook_likes                                                    1000
gross                                                              1.75221e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                  Madeline Carroll
movie_title                                                           Flipped 
num_voted_users                                                          60460
cast_total_facebook_likes                                                 4377
actor_3_name                                                       Aidan Quinn
facenumber_in_poster                                                         0
plot_keywords                apology|falling in love|multiple perspectives|...
movie_imdb_link              http://www.imdb.com/title/tt0817177/?ref_=fn_t...
num_user_for_reviews                                                       104
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.4e+07
title_year                                                                2010
actor_2_facebook_likes                                                     872
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 2818, dtype: object
color                                                                    Color
director_name                                                          Ang Lee
num_critic_for_reviews                                                     357
duration                                                                   134
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   11000
actor_2_name                                                      Heath Ledger
actor_1_facebook_likes                                                   15000
gross                                                              8.30259e+07
genres                                                           Drama|Romance
actor_1_name                                                   Jake Gyllenhaal
movie_title                                                Brokeback Mountain 
num_voted_users                                                         259837
cast_total_facebook_likes                                                39789
actor_3_name                                                     Anne Hathaway
facenumber_in_poster                                                         0
plot_keywords                gay relationship|homosexuality|mountain|ranch|...
movie_imdb_link              http://www.imdb.com/title/tt0388795/?ref_=fn_t...
num_user_for_reviews                                                      2254
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                2005
actor_2_facebook_likes                                                   13000
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     13000
Name: 2819, dtype: object
color                                                                    Color
director_name                                               Jonathan Liebesman
num_critic_for_reviews                                                     348
duration                                                                   101
director_facebook_likes                                                    473
actor_3_facebook_likes                                                     429
actor_2_name                                                    Danny Woodburn
actor_1_facebook_likes                                                     833
gross                                                              1.90871e+08
genres                                          Action|Adventure|Comedy|Sci-Fi
actor_1_name                                                       Noel Fisher
movie_title                                      Teenage Mutant Ninja Turtles 
num_voted_users                                                         167089
cast_total_facebook_likes                                                 2690
actor_3_name                                                     Jeremy Howard
facenumber_in_poster                                                         0
plot_keywords                             18 wheeler|mutant|ninja|sewer|turtle
movie_imdb_link              http://www.imdb.com/title/tt1291150/?ref_=fn_t...
num_user_for_reviews                                                       491
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+08
title_year                                                                2014
actor_2_facebook_likes                                                     809
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     62000
Name: 2820, dtype: object
color                                                                    Color
director_name                                                   Amy Heckerling
num_critic_for_reviews                                                      88
duration                                                                    97
director_facebook_likes                                                    143
actor_3_facebook_likes                                                     201
actor_2_name                                                        Dan Hedaya
actor_1_facebook_likes                                                     927
gross                                                              5.66316e+07
genres                                                          Comedy|Romance
actor_1_name                                                     Donald Faison
movie_title                                                          Clueless 
num_voted_users                                                         123390
cast_total_facebook_likes                                                 1724
actor_3_name                                                     Elisa Donovan
facenumber_in_poster                                                         1
plot_keywords                female protagonist|high school|makeover|matchm...
movie_imdb_link              http://www.imdb.com/title/tt0112697/?ref_=fn_t...
num_user_for_reviews                                                       248
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                1995
actor_2_facebook_likes                                                     281
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2821, dtype: object
color                                                                    Color
director_name                                                      Todd Haynes
num_critic_for_reviews                                                     181
duration                                                                   107
director_facebook_likes                                                    162
actor_3_facebook_likes                                                     135
actor_2_name                                                      Celia Weston
actor_1_facebook_likes                                                    2000
gross                                                               1.5855e+07
genres                                                           Drama|Romance
actor_1_name                                                      Dennis Quaid
movie_title                                                   Far from Heaven 
num_voted_users                                                          36542
cast_total_facebook_likes                                                 2447
actor_3_name                                                    Michael Gaston
facenumber_in_poster                                                         2
plot_keywords                african american|catastrophe|family relationsh...
movie_imdb_link              http://www.imdb.com/title/tt0297884/?ref_=fn_t...
num_user_for_reviews                                                       378
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.35e+07
title_year                                                                2002
actor_2_facebook_likes                                                     258
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2822, dtype: object
color                                                                    Color
director_name                                                       Steve Pink
num_critic_for_reviews                                                     107
duration                                                                    99
director_facebook_likes                                                     38
actor_3_facebook_likes                                                     390
actor_2_name                                                    Gillian Jacobs
actor_1_facebook_likes                                                    3000
gross                                                              1.22827e+07
genres                                                           Comedy|Sci-Fi
actor_1_name                                                        Adam Scott
movie_title                                            Hot Tub Time Machine 2 
num_voted_users                                                          28159
cast_total_facebook_likes                                                 4702
actor_3_name                                                    Collette Wolfe
facenumber_in_poster                                                         4
plot_keywords                acid trip|gameshow|hot tub|time lord|time machine
movie_imdb_link              http://www.imdb.com/title/tt2637294/?ref_=fn_t...
num_user_for_reviews                                                        96
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                2015
actor_2_facebook_likes                                                     837
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2823, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      53
duration                                                                    55
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                       2
actor_2_name                                                   Olaf Lubaszenko
actor_1_facebook_likes                                                      20
gross                                                                   447093
genres                                                                   Drama
actor_1_name                                                    Krystyna Janda
movie_title                                               Dekalog             
num_voted_users                                                          12590
cast_total_facebook_likes                                                   25
actor_3_name                                               Olgierd Lukaszewicz
facenumber_in_poster                                                         0
plot_keywords                meaning of life|moral challenge|morality|searc...
movie_imdb_link              http://www.imdb.com/title/tt0092337/?ref_=fn_t...
num_user_for_reviews                                                        37
language                                                                Polish
country                                                                 Poland
content_rating                                                           TV-MA
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                       3
imdb_score                                                                 9.1
aspect_ratio                                                              1.33
movie_facebook_likes                                                         0
Name: 2824, dtype: object
color                                                                    Color
director_name                                                   Philip Kaufman
num_critic_for_reviews                                                     132
duration                                                                   124
director_facebook_likes                                                    133
actor_3_facebook_likes                                                     170
actor_2_name                                                    Stephen Marcus
actor_1_facebook_likes                                                   14000
gross                                                              7.06088e+06
genres                                                         Biography|Drama
actor_1_name                                                      Kate Winslet
movie_title                                                            Quills 
num_voted_users                                                          44795
cast_total_facebook_likes                                                14726
actor_3_name                                                     Amelia Warner
facenumber_in_poster                                                         1
plot_keywords                     asylum|lust|male pubic hair|penis|pubic hair
movie_imdb_link              http://www.imdb.com/title/tt0180073/?ref_=fn_t...
num_user_for_reviews                                                       314
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                1.35e+07
title_year                                                                2000
actor_2_facebook_likes                                                     230
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2825, dtype: object
color                                                                    Color
director_name                                                  Martin McDonagh
num_critic_for_reviews                                                     401
duration                                                                   110
director_facebook_likes                                                    454
actor_3_facebook_likes                                                     816
actor_2_name                                                   Gabourey Sidibe
actor_1_facebook_likes                                                    2000
gross                                                              1.49898e+07
genres                                                            Comedy|Crime
actor_1_name                                                     Abbie Cornish
movie_title                                                 Seven Psychopaths 
num_voted_users                                                         185845
cast_total_facebook_likes                                                 4757
actor_3_name                                                 Michael Stuhlbarg
facenumber_in_poster                                                         7
plot_keywords                dognapping|gangster|misfiring gun|screenwriter...
movie_imdb_link              http://www.imdb.com/title/tt1931533/?ref_=fn_t...
num_user_for_reviews                                                       284
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2012
actor_2_facebook_likes                                                     906
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     52000
Name: 2826, dtype: object
color                                                                    Color
director_name                                                     Kasi Lemmons
num_critic_for_reviews                                                      58
duration                                                                   105
director_facebook_likes                                                    148
actor_3_facebook_likes                                                     400
actor_2_name                                                      Tamara Tunie
actor_1_facebook_likes                                                     539
gross                                                                   687081
genres                                      Crime|Drama|Music|Mystery|Thriller
actor_1_name                                                        Colm Feore
movie_title                                           The Caveman's Valentine 
num_voted_users                                                           5602
cast_total_facebook_likes                                                 1767
actor_3_name                                                    Aunjanue Ellis
facenumber_in_poster                                                         0
plot_keywords                chrysler building manhattan new york city|delu...
movie_imdb_link              http://www.imdb.com/title/tt0182000/?ref_=fn_t...
num_user_for_reviews                                                        59
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2001
actor_2_facebook_likes                                                     508
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       329
Name: 2827, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                       1
duration                                                                    41
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                       2
actor_2_name                                                  Marian Dziedziel
actor_1_facebook_likes                                                      70
gross                                                                      NaN
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                       Jacek Koman
movie_title                                            The Border             
num_voted_users                                                            271
cast_total_facebook_likes                                                   74
actor_3_name                                                  Jaroslaw Boberek
facenumber_in_poster                                                         4
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt4048942/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                                Polish
country                                                                 Poland
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                       2
imdb_score                                                                 7.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                        64
Name: 2828, dtype: object
color                                                                    Color
director_name                                              Oliver Hirschbiegel
num_critic_for_reviews                                                     192
duration                                                                   178
director_facebook_likes                                                    101
actor_3_facebook_likes                                                     471
actor_2_name                                                        Bruno Ganz
actor_1_facebook_likes                                                     918
gross                                                              5.50194e+06
genres                                             Biography|Drama|History|War
actor_1_name                                                Thomas Kretschmann
movie_title                                                          Downfall 
num_voted_users                                                         248354
cast_total_facebook_likes                                                 2334
actor_3_name                                              Alexandra Maria Lara
facenumber_in_poster                                                         0
plot_keywords                             bunker|hitler|nazi|no exit|war ruins
movie_imdb_link              http://www.imdb.com/title/tt0363163/?ref_=fn_t...
num_user_for_reviews                                                       564
language                                                                German
country                                                                Germany
content_rating                                                               R
budget                                                                1.35e+07
title_year                                                                2004
actor_2_facebook_likes                                                     653
imdb_score                                                                 8.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 2829, dtype: object
color                                                                    Color
director_name                                               Alejandro Amenábar
num_critic_for_reviews                                                     157
duration                                                                   125
director_facebook_likes                                                    448
actor_3_facebook_likes                                                      93
actor_2_name                                                       Lola Dueñas
actor_1_facebook_likes                                                     273
gross                                                              2.08634e+06
genres                                                 Biography|Drama|Romance
actor_1_name                                                       Belén Rueda
movie_title                                                    The Sea Inside 
num_voted_users                                                          64556
cast_total_facebook_likes                                                  529
actor_3_name                                                       Tamar Novas
facenumber_in_poster                                                         1
plot_keywords                         dignity|euthanasia|freedom|lawyer|sailor
movie_imdb_link              http://www.imdb.com/title/tt0369702/?ref_=fn_t...
num_user_for_reviews                                                       140
language                                                               Spanish
country                                                                  Spain
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2004
actor_2_facebook_likes                                                     114
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2830, dtype: object
color                                                                    Color
director_name                                                  Jonathan Glazer
num_critic_for_reviews                                                     454
duration                                                                   108
director_facebook_likes                                                    143
actor_3_facebook_likes                                                      21
actor_2_name                                                    Paul Brannigan
actor_1_facebook_likes                                                   19000
gross                                                              2.60504e+06
genres                                            Drama|Horror|Sci-Fi|Thriller
actor_1_name                                                Scarlett Johansson
movie_title                                                    Under the Skin 
num_voted_users                                                          85022
cast_total_facebook_likes                                                19086
actor_3_name                                                      Alison Chand
facenumber_in_poster                                                         0
plot_keywords                alien|desire|female nudity|male frontal nudity...
movie_imdb_link              http://www.imdb.com/title/tt1441395/?ref_=fn_t...
num_user_for_reviews                                                       616
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2013
actor_2_facebook_likes                                                      50
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     29000
Name: 2831, dtype: object
color                                                                    Color
director_name                                                   Barry Levinson
num_critic_for_reviews                                                      62
duration                                                                   121
director_facebook_likes                                                    272
actor_3_facebook_likes                                                     227
actor_2_name                                                        J.T. Walsh
actor_1_facebook_likes                                                   49000
gross                                                              1.23922e+08
genres                                              Biography|Comedy|Drama|War
actor_1_name                                                    Robin Williams
movie_title                                             Good Morning, Vietnam 
num_voted_users                                                          98348
cast_total_facebook_likes                                                50141
actor_3_name                                                       Bruno Kirby
facenumber_in_poster                                                         1
plot_keywords                  disc jockey|friendship|radio|vietnam|vietnamese
movie_imdb_link              http://www.imdb.com/title/tt0093105/?ref_=fn_t...
num_user_for_reviews                                                       131
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1987
actor_2_facebook_likes                                                     263
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2832, dtype: object
color                                                                    Color
director_name                                                   Hyung-rae Shim
num_critic_for_reviews                                                       4
duration                                                                   100
director_facebook_likes                                                     26
actor_3_facebook_likes                                                     385
actor_2_name                                               Stephanie Danielson
actor_1_facebook_likes                                                     898
gross                                                                   163591
genres                                                                  Comedy
actor_1_name                                                       Jason Mewes
movie_title                                                The Last Godfather 
num_voted_users                                                            912
cast_total_facebook_likes                                                 2895
actor_3_name                                                   Michael Rispoli
facenumber_in_poster                                                         5
plot_keywords                mafia|mafia boss|mafiosi|mafioso|three word title
movie_imdb_link              http://www.imdb.com/title/tt1584131/?ref_=fn_t...
num_user_for_reviews                                                        17
language                                                               English
country                                                            South Korea
content_rating                                                           PG-13
budget                                                                1.34e+07
title_year                                                                2010
actor_2_facebook_likes                                                     391
imdb_score                                                                 3.6
aspect_ratio                                                              1.78
movie_facebook_likes                                                       502
Name: 2833, dtype: object
color                                                                    Color
director_name                                                       Jon M. Chu
num_critic_for_reviews                                                      84
duration                                                                   115
director_facebook_likes                                                    209
actor_3_facebook_likes                                                      41
actor_2_name                                                     Sean Kingston
actor_1_facebook_likes                                                     569
gross                                                              7.30009e+07
genres                                                       Documentary|Music
actor_1_name                                                     Usher Raymond
movie_title                                    Justin Bieber: Never Say Never 
num_voted_users                                                          74351
cast_total_facebook_likes                                                  714
actor_3_name                                                       Boys II Men
facenumber_in_poster                                                         1
plot_keywords                    boyhood friend|manager|plasma tv|prodigy|star
movie_imdb_link              http://www.imdb.com/title/tt1702443/?ref_=fn_t...
num_user_for_reviews                                                       233
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 1.3e+07
title_year                                                                2011
actor_2_facebook_likes                                                      69
imdb_score                                                                 1.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     62000
Name: 2834, dtype: object
color                                                                    Color
director_name                                                 Darren Aronofsky
num_critic_for_reviews                                                     669
duration                                                                   108
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Mila Kunis
actor_1_facebook_likes                                                   20000
gross                                                              1.06952e+08
genres                                                          Drama|Thriller
actor_1_name                                                   Natalie Portman
movie_title                                                        Black Swan 
num_voted_users                                                         551363
cast_total_facebook_likes                                                38072
actor_3_name                                                     Mark Margolis
facenumber_in_poster                                                         1
plot_keywords                 ballerina|ballet|fear|female protagonist|madness
movie_imdb_link              http://www.imdb.com/title/tt0947798/?ref_=fn_t...
num_user_for_reviews                                                      1140
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2010
actor_2_facebook_likes                                                   15000
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                    106000
Name: 2835, dtype: object
color                                                                    Color
director_name                                                     José Padilha
num_critic_for_reviews                                                     492
duration                                                                   117
director_facebook_likes                                                    294
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Abbie Cornish
actor_1_facebook_likes                                                   10000
gross                                                               5.8607e+07
genres                                            Action|Crime|Sci-Fi|Thriller
actor_1_name                                                       Gary Oldman
movie_title                                                           RoboCop 
num_voted_users                                                         182910
cast_total_facebook_likes                                                14160
actor_3_name                                                     Jennifer Ehle
facenumber_in_poster                                                         0
plot_keywords                  law enforcement|police|robocop|robot|technology
movie_imdb_link              http://www.imdb.com/title/tt1234721/?ref_=fn_t...
num_user_for_reviews                                                       630
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2014
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     60000
Name: 2836, dtype: object
color                                                                    Color
director_name                                             Francis Ford Coppola
num_critic_for_reviews                                                     149
duration                                                                   220
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    3000
actor_2_name                                                         Al Pacino
actor_1_facebook_likes                                                   22000
gross                                                                 5.73e+07
genres                                                             Crime|Drama
actor_1_name                                                    Robert De Niro
movie_title                                            The Godfather: Part II 
num_voted_users                                                         790926
cast_total_facebook_likes                                                39960
actor_3_name                                                     Robert Duvall
facenumber_in_poster                                                         1
plot_keywords                1950s|corrupt politician|lake tahoe nevada|mel...
movie_imdb_link              http://www.imdb.com/title/tt0071562/?ref_=fn_t...
num_user_for_reviews                                                       650
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1974
actor_2_facebook_likes                                                   14000
imdb_score                                                                   9
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 2837, dtype: object
color                                                                    Color
director_name                                                    Thomas Carter
num_critic_for_reviews                                                     101
duration                                                                   112
director_facebook_likes                                                     49
actor_3_facebook_likes                                                     237
actor_2_name                                                      Terry Kinney
actor_1_facebook_likes                                                     656
gross                                                              9.10383e+07
genres                                                     Drama|Music|Romance
actor_1_name                                               Sean Patrick Thomas
movie_title                                               Save the Last Dance 
num_voted_users                                                          47876
cast_total_facebook_likes                                                 1307
actor_3_name                                                      Fredro Starr
facenumber_in_poster                                                         0
plot_keywords                 dance|dancing|ghetto|hip hop|imperative in title
movie_imdb_link              http://www.imdb.com/title/tt0206275/?ref_=fn_t...
num_user_for_reviews                                                       320
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+07
title_year                                                                2001
actor_2_facebook_likes                                                     363
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2838, dtype: object
color                                                                    Color
director_name                                                     Renny Harlin
num_critic_for_reviews                                                     102
duration                                                                    99
director_facebook_likes                                                    212
actor_3_facebook_likes                                                      54
actor_2_name                                                    Rodney Eastman
actor_1_facebook_likes                                                     130
gross                                                              4.93699e+07
genres                                                 Fantasy|Horror|Thriller
actor_1_name                                                    Tuesday Knight
movie_title                     A Nightmare on Elm Street 4: The Dream Master 
num_voted_users                                                          36108
cast_total_facebook_likes                                                  450
actor_3_name                                                      Brooke Bundy
facenumber_in_poster                                                         0
plot_keywords                  demon|dream|elm street|freddy krueger|nightmare
movie_imdb_link              http://www.imdb.com/title/tt0095742/?ref_=fn_t...
num_user_for_reviews                                                       260
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                1988
actor_2_facebook_likes                                                     125
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2839, dtype: object
color                                                                    Color
director_name                                                  Patricia Riggen
num_critic_for_reviews                                                      63
duration                                                                   109
director_facebook_likes                                                     36
actor_3_facebook_likes                                                     579
actor_2_name                                                 Brighton Sharbino
actor_1_facebook_likes                                                    3000
gross                                                              6.16935e+07
genres                                                                   Drama
actor_1_name                                                   Jennifer Garner
movie_title                                              Miracles from Heaven 
num_voted_users                                                           6276
cast_total_facebook_likes                                                 7833
actor_3_name                                                  Martin Henderson
facenumber_in_poster                                                         0
plot_keywords                child cancer|christian film|christianity|falli...
movie_imdb_link              http://www.imdb.com/title/tt4257926/?ref_=fn_t...
num_user_for_reviews                                                        55
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.3e+07
title_year                                                                2016
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     16000
Name: 2840, dtype: object
color                                                                    Color
director_name                                                     Danny Leiner
num_critic_for_reviews                                                     106
duration                                                                    83
director_facebook_likes                                                      8
actor_3_facebook_likes                                                     612
actor_2_name                                                 Mary Lynn Rajskub
actor_1_facebook_likes                                                    3000
gross                                                              4.67294e+07
genres                                                          Comedy|Mystery
actor_1_name                                                   Jennifer Garner
movie_title                                             Dude, Where's My Car? 
num_voted_users                                                         116625
cast_total_facebook_likes                                                 6454
actor_3_name                                                    Marla Sokoloff
facenumber_in_poster                                                         2
plot_keywords                bare chested male|gay kiss|homoeroticism|lesbi...
movie_imdb_link              http://www.imdb.com/title/tt0242423/?ref_=fn_t...
num_user_for_reviews                                                       469
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+07
title_year                                                                2000
actor_2_facebook_likes                                                     934
imdb_score                                                                 5.5
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 2841, dtype: object
color                                                                    Color
director_name                                                 Christopher Cain
num_critic_for_reviews                                                      50
duration                                                                   107
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     316
actor_2_name                                                     Patrick Wayne
actor_1_facebook_likes                                                     549
gross                                                              4.47266e+07
genres                                     Action|Crime|Drama|Thriller|Western
actor_1_name                                                      Jack Palance
movie_title                                                        Young Guns 
num_voted_users                                                          42614
cast_total_facebook_likes                                                 1747
actor_3_name                                                       Brian Keith
facenumber_in_poster                                                         5
plot_keywords                            army|cattle|deputy|new mexico|rancher
movie_imdb_link              http://www.imdb.com/title/tt0096487/?ref_=fn_t...
num_user_for_reviews                                                       120
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1988
actor_2_facebook_likes                                                     439
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2842, dtype: object
color                                                                    Color
director_name                                                   Theodore Melfi
num_critic_for_reviews                                                     275
duration                                                                   102
director_facebook_likes                                                     51
actor_3_facebook_likes                                                     360
actor_2_name                                                       Naomi Watts
actor_1_facebook_likes                                                   13000
gross                                                              4.41349e+07
genres                                                            Comedy|Drama
actor_1_name                                                       Bill Murray
movie_title                                                       St. Vincent 
num_voted_users                                                          72803
cast_total_facebook_likes                                                20330
actor_3_name                                                     Reg E. Cathey
facenumber_in_poster                                                         3
plot_keywords                bullying|grumpy old man|school presentation|st...
movie_imdb_link              http://www.imdb.com/title/tt2170593/?ref_=fn_t...
num_user_for_reviews                                                       171
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+07
title_year                                                                2014
actor_2_facebook_likes                                                    6000
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     33000
Name: 2843, dtype: object
color                                                                    Color
director_name                                                       Steve Pink
num_critic_for_reviews                                                      90
duration                                                                   100
director_facebook_likes                                                     38
actor_3_facebook_likes                                                     460
actor_2_name                                                       Regina Hall
actor_1_facebook_likes                                                     833
gross                                                              4.86377e+07
genres                                                          Comedy|Romance
actor_1_name                                                    Joe Lo Truglio
movie_title                                                  About Last Night 
num_voted_users                                                          16979
cast_total_facebook_likes                                                 2800
actor_3_name                                                      Bryan Callen
facenumber_in_poster                                                         4
plot_keywords                bedroom|boyfriend girlfriend relationship|hug|...
movie_imdb_link              http://www.imdb.com/title/tt1826590/?ref_=fn_t...
num_user_for_reviews                                                        42
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.25e+07
title_year                                                                2014
actor_2_facebook_likes                                                     807
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2844, dtype: object
color                                                                    Color
director_name                                                       Gil Junger
num_critic_for_reviews                                                     133
duration                                                                    97
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     835
actor_2_name                                                      Heath Ledger
actor_1_facebook_likes                                                   23000
gross                                                              3.81761e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                              Joseph Gordon-Levitt
movie_title                                        10 Things I Hate About You 
num_voted_users                                                         222099
cast_total_facebook_likes                                                37907
actor_3_name                                                     Andrew Keegan
facenumber_in_poster                                                         6
plot_keywords                 dating|protective father|school|shrew|teen movie
movie_imdb_link              http://www.imdb.com/title/tt0147800/?ref_=fn_t...
num_user_for_reviews                                                       549
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.6e+07
title_year                                                                1999
actor_2_facebook_likes                                                   13000
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 2845, dtype: object
color                                                                    Color
director_name                                                        Ed Decter
num_critic_for_reviews                                                      49
duration                                                                    92
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     301
actor_2_name                                                     Eddie Griffin
actor_1_facebook_likes                                                   11000
gross                                                              2.89722e+07
genres                                                                  Comedy
actor_1_name                                                   Zooey Deschanel
movie_title                                                       The New Guy 
num_voted_users                                                          28805
cast_total_facebook_likes                                                12687
actor_3_name                                                      Gene Simmons
facenumber_in_poster                                                         1
plot_keywords                cheerleader|geek|high school|prison|reference ...
movie_imdb_link              http://www.imdb.com/title/tt0241760/?ref_=fn_t...
num_user_for_reviews                                                       159
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+07
title_year                                                                2002
actor_2_facebook_likes                                                     489
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 2846, dtype: object
color                                                                    Color
director_name                                                    Gene Quintano
num_critic_for_reviews                                                      19
duration                                                                    84
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     182
actor_2_name                                                         Lin Shaye
actor_1_facebook_likes                                                   11000
gross                                                              2.79794e+07
genres                                                     Action|Comedy|Crime
actor_1_name                                                        Jon Lovitz
movie_title                                                   Loaded Weapon 1 
num_voted_users                                                          37611
cast_total_facebook_likes                                                12322
actor_3_name                                                         Bill Nunn
facenumber_in_poster                                                         2
plot_keywords                       cookie|detective|microfilm|parody|sergeant
movie_imdb_link              http://www.imdb.com/title/tt0107659/?ref_=fn_t...
num_user_for_reviews                                                        72
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.2e+06
title_year                                                                1993
actor_2_facebook_likes                                                     852
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2847, dtype: object
color                                                                    Color
director_name                                               Jaume Collet-Serra
num_critic_for_reviews                                                     186
duration                                                                    86
director_facebook_likes                                                    174
actor_3_facebook_likes                                                       2
actor_2_name                                                      Brett Cullen
actor_1_facebook_likes                                                     619
gross                                                              5.42574e+07
genres                                                   Drama|Horror|Thriller
actor_1_name                                                     Óscar Jaenada
movie_title                                                      The Shallows 
num_voted_users                                                          12983
cast_total_facebook_likes                                                  971
actor_3_name                                                      Sedona Legge
facenumber_in_poster                                                         0
plot_keywords                                 beach|island|mexico|prey|trapped
movie_imdb_link              http://www.imdb.com/title/tt4052882/?ref_=fn_t...
num_user_for_reviews                                                       139
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+07
title_year                                                                2016
actor_2_facebook_likes                                                     350
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2848, dtype: object
color                                                                    Color
director_name                                                       Eric Bress
num_critic_for_reviews                                                     185
duration                                                                   120
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     829
actor_2_name                                                       Eric Stoltz
actor_1_facebook_likes                                                    8000
gross                                                                    23947
genres                                                         Sci-Fi|Thriller
actor_1_name                                                      Logan Lerman
movie_title                                              The Butterfly Effect 
num_voted_users                                                         357579
cast_total_facebook_likes                                                12755
actor_3_name                                                    Cameron Bright
facenumber_in_poster                                                         0
plot_keywords                blackout|child pornography|memory|surprise end...
movie_imdb_link              http://www.imdb.com/title/tt0289879/?ref_=fn_t...
num_user_for_reviews                                                      1100
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2004
actor_2_facebook_likes                                                     902
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     15000
Name: 2849, dtype: object
color                                                                    Color
director_name                                                       Chris Koch
num_critic_for_reviews                                                      42
duration                                                                    89
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     329
actor_2_name                                                       Mark Webber
actor_1_facebook_likes                                                     571
gross                                                              6.00083e+07
genres                                                 Adventure|Comedy|Family
actor_1_name                                                     Chris Elliott
movie_title                                                          Snow Day 
num_voted_users                                                           9285
cast_total_facebook_likes                                                 2241
actor_3_name                                                        Jean Smart
facenumber_in_poster                                                         1
plot_keywords                    meteorologist|snow|snowed in|snowplow|weather
movie_imdb_link              http://www.imdb.com/title/tt0184907/?ref_=fn_t...
num_user_for_reviews                                                        91
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.3e+07
title_year                                                                2000
actor_2_facebook_likes                                                     442
imdb_score                                                                 4.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2850, dtype: object
color                                                                    Color
director_name                                           Preston A. Whitmore II
num_critic_for_reviews                                                      37
duration                                                                   117
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     912
actor_2_name                                                       Chris Brown
actor_1_facebook_likes                                                    1000
gross                                                              4.91219e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Mekhi Phifer
movie_title                                                    This Christmas 
num_voted_users                                                           6528
cast_total_facebook_likes                                                 6554
actor_3_name                                                    Loretta Devine
facenumber_in_poster                                                         9
plot_keywords                      christmas|family home|musician|piano|secret
movie_imdb_link              http://www.imdb.com/title/tt0937375/?ref_=fn_t...
num_user_for_reviews                                                        32
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+07
title_year                                                                2007
actor_2_facebook_likes                                                     997
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2851, dtype: object
color                                                                    Color
director_name                                                        Bob Clark
num_critic_for_reviews                                                      45
duration                                                                    97
director_facebook_likes                                                     84
actor_3_facebook_likes                                                     782
actor_2_name                                                       Dom DeLuise
actor_1_facebook_likes                                                     899
gross                                                               2.7142e+07
genres                                              Comedy|Crime|Family|Sci-Fi
actor_1_name                                                   Kathleen Turner
movie_title                                                     Baby Geniuses 
num_voted_users                                                          19547
cast_total_facebook_likes                                                 2936
actor_3_name                                                          Ruby Dee
facenumber_in_poster                                                         2
plot_keywords                               baby|boy|science|scientist|toddler
movie_imdb_link              http://www.imdb.com/title/tt0118665/?ref_=fn_t...
num_user_for_reviews                                                       168
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.8e+07
title_year                                                                1999
actor_2_facebook_likes                                                     842
imdb_score                                                                 2.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2852, dtype: object
color                                                                    Color
director_name                                                        Kirk Wong
num_critic_for_reviews                                                      57
duration                                                                    91
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     459
actor_2_name                                                     Elliott Gould
actor_1_facebook_likes                                                     904
gross                                                              2.70522e+07
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                                   Bokeem Woodbine
movie_title                                                       The Big Hit 
num_voted_users                                                          24834
cast_total_facebook_likes                                                 3353
actor_3_name                                                Antonio Sabato Jr.
facenumber_in_poster                                                         5
plot_keywords                         hitman|kidnapping|kosher|vhs|video store
movie_imdb_link              http://www.imdb.com/title/tt0120609/?ref_=fn_t...
num_user_for_reviews                                                       168
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1998
actor_2_facebook_likes                                                     471
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       934
Name: 2853, dtype: object
color                                                                    Color
director_name                                                   Bronwen Hughes
num_critic_for_reviews                                                      25
duration                                                                   100
director_facebook_likes                                                     15
actor_3_facebook_likes                                                     388
actor_2_name                                                       Eartha Kitt
actor_1_facebook_likes                                                     694
gross                                                              2.65393e+07
genres                                                     Comedy|Drama|Family
actor_1_name                                                     Gregory Smith
movie_title                                                   Harriet the Spy 
num_voted_users                                                           7984
cast_total_facebook_likes                                                 2486
actor_3_name                                                Charlotte Sullivan
facenumber_in_poster                                                         1
plot_keywords                         binoculars|child spy|notebook|secret|spy
movie_imdb_link              http://www.imdb.com/title/tt0116493/?ref_=fn_t...
num_user_for_reviews                                                        42
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.3e+07
title_year                                                                1996
actor_2_facebook_likes                                                     558
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       833
Name: 2854, dtype: object
color                                                                    Color
director_name                                                       John Lafia
num_critic_for_reviews                                                      59
duration                                                                    72
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     435
actor_2_name                                                        Beth Grant
actor_1_facebook_likes                                                     659
gross                                                              2.85016e+07
genres                                                          Fantasy|Horror
actor_1_name                                                     Jenny Agutter
movie_title                                                    Child's Play 2 
num_voted_users                                                          31371
cast_total_facebook_likes                                                 2646
actor_3_name                                                      Greg Germann
facenumber_in_poster                                                         0
plot_keywords                   boy|doll|foster home|killer doll|serial killer
movie_imdb_link              http://www.imdb.com/title/tt0099253/?ref_=fn_t...
num_user_for_reviews                                                       166
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1990
actor_2_facebook_likes                                                     628
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2855, dtype: object
color                                                                    Color
director_name                                                       Sam Miller
num_critic_for_reviews                                                      58
duration                                                                    84
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     334
actor_2_name                                                 Kate del Castillo
actor_1_facebook_likes                                                    1000
gross                                                              5.25436e+07
genres                                                          Crime|Thriller
actor_1_name                                                       Leslie Bibb
movie_title                                                      No Good Deed 
num_voted_users                                                          12676
cast_total_facebook_likes                                                 2297
actor_3_name                                                     Henry Simmons
facenumber_in_poster                                                         2
plot_keywords                home invasion|police officer shot|police offic...
movie_imdb_link              http://www.imdb.com/title/tt2011159/?ref_=fn_t...
num_user_for_reviews                                                        84
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.32e+07
title_year                                                                2014
actor_2_facebook_likes                                                     345
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2856, dtype: object
color                                                                    Color
director_name                                                   Frank Darabont
num_critic_for_reviews                                                     330
duration                                                                   126
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     745
actor_2_name                                                     Alexa Davalos
actor_1_facebook_likes                                                    2000
gross                                                              2.55926e+07
genres                                                                  Horror
actor_1_name                                                        Toby Jones
movie_title                                                          The Mist 
num_voted_users                                                         220475
cast_total_facebook_likes                                                 5371
actor_3_name                                                    Jeffrey DeMunn
facenumber_in_poster                                                         0
plot_keywords                desperation|fog|giant insect|survival|survival...
movie_imdb_link              http://www.imdb.com/title/tt0884328/?ref_=fn_t...
num_user_for_reviews                                                      1066
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.8e+07
title_year                                                                2007
actor_2_facebook_likes                                                     850
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     20000
Name: 2857, dtype: object
color                                                          Black and White
director_name                                                     Alex Garland
num_critic_for_reviews                                                     489
duration                                                                   108
director_facebook_likes                                                    232
actor_3_facebook_likes                                                     123
actor_2_name                                                     Sonoya Mizuno
actor_1_facebook_likes                                                     149
gross                                                               2.5441e+07
genres                                           Drama|Mystery|Sci-Fi|Thriller
actor_1_name                                                     Elina Alminas
movie_title                                                        Ex Machina 
num_voted_users                                                         289508
cast_total_facebook_likes                                                  430
actor_3_name                                                     Corey Johnson
facenumber_in_poster                                                         0
plot_keywords                artificial intelligence|robot|robot human rela...
movie_imdb_link              http://www.imdb.com/title/tt0470752/?ref_=fn_t...
num_user_for_reviews                                                       611
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2015
actor_2_facebook_likes                                                     145
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                    109000
Name: 2858, dtype: object
color                                                                    Color
director_name                                                      Spike Jonze
num_critic_for_reviews                                                     242
duration                                                                   112
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     213
actor_2_name                                                        Orson Bean
actor_1_facebook_likes                                                     512
gross                                                              2.28589e+07
genres                                                    Comedy|Drama|Fantasy
actor_1_name                                                     Willie Garson
movie_title                                              Being John Malkovich 
num_voted_users                                                         254404
cast_total_facebook_likes                                                 1171
actor_3_name                                                    Mary Kay Place
facenumber_in_poster                                                         2
plot_keywords                body swap|magical realism|portal|puppeteer|sur...
movie_imdb_link              http://www.imdb.com/title/tt0120601/?ref_=fn_t...
num_user_for_reviews                                                       840
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1999
actor_2_facebook_likes                                                     216
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2859, dtype: object
color                                                                    Color
director_name                                                       Mark Brown
num_critic_for_reviews                                                      40
duration                                                                    90
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     405
actor_2_name                                                     Vivica A. Fox
actor_1_facebook_likes                                                     939
gross                                                              2.22359e+07
genres                                                          Comedy|Romance
actor_1_name                                                          Mo'Nique
movie_title                                            Two Can Play That Game 
num_voted_users                                                           4339
cast_total_facebook_likes                                                 2815
actor_3_name                                                      Tamala Jones
facenumber_in_poster                                                         2
plot_keywords                advice|battle of the sexes|lingerie|romantic r...
movie_imdb_link              http://www.imdb.com/title/tt0269341/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2001
actor_2_facebook_likes                                                     890
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       593
Name: 2860, dtype: object
color                                                                    Color
director_name                                                       Dave Green
num_critic_for_reviews                                                     112
duration                                                                    91
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     140
actor_2_name                                                   Ella Wahlestedt
actor_1_facebook_likes                                                     803
gross                                                              3.89169e+07
genres                                                 Adventure|Family|Sci-Fi
actor_1_name                                                          Teo Halm
movie_title                                                     Earth to Echo 
num_voted_users                                                          15664
cast_total_facebook_likes                                                 1921
actor_3_name                                               Jason Gray-Stanford
facenumber_in_poster                                                         0
plot_keywords                alien|bar|construction worker|no opening credi...
movie_imdb_link              http://www.imdb.com/title/tt2183034/?ref_=fn_t...
num_user_for_reviews                                                       149
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.3e+07
title_year                                                                2014
actor_2_facebook_likes                                                     587
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2861, dtype: object
color                                                                    Color
director_name                                                   John Stockwell
num_critic_for_reviews                                                      84
duration                                                                   135
director_facebook_likes                                                    134
actor_3_facebook_likes                                                     525
actor_2_name                                                     Jay Hernandez
actor_1_facebook_likes                                                    4000
gross                                                              1.69291e+07
genres                                                           Drama|Romance
actor_1_name                                                     Kirsten Dunst
movie_title                                                   Crazy/Beautiful 
num_voted_users                                                          21406
cast_total_facebook_likes                                                 6214
actor_3_name                                                    Rolando Molina
facenumber_in_poster                                                         2
plot_keywords                congressman|high school|latino|pacific palisad...
movie_imdb_link              http://www.imdb.com/title/tt0250224/?ref_=fn_t...
num_user_for_reviews                                                       169
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                2001
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2862, dtype: object
color                                                                    Color
director_name                                                   Clint Eastwood
num_critic_for_reviews                                                     251
duration                                                                   141
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                      78
actor_2_name                                                 Kazunari Ninomiya
actor_1_facebook_likes                                                     378
gross                                                              1.37539e+07
genres                                                       Drama|History|War
actor_1_name                                                    Yuki Matsuzaki
movie_title                                             Letters from Iwo Jima 
num_voted_users                                                         132149
cast_total_facebook_likes                                                  751
actor_3_name                                                    Shidô Nakamura
facenumber_in_poster                                                         0
plot_keywords                blood splatter|general|island|japan|world war two
movie_imdb_link              http://www.imdb.com/title/tt0498380/?ref_=fn_t...
num_user_for_reviews                                                       316
language                                                              Japanese
country                                                                    USA
content_rating                                                               R
budget                                                                 1.9e+07
title_year                                                                2006
actor_2_facebook_likes                                                      85
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                      5000
Name: 2863, dtype: object
color                                                                    Color
director_name                                                   Michael Polish
num_critic_for_reviews                                                     113
duration                                                                   104
director_facebook_likes                                                     35
actor_3_facebook_likes                                                     844
actor_2_name                                                   Virginia Madsen
actor_1_facebook_likes                                                   24000
gross                                                              1.09964e+07
genres                                                  Adventure|Drama|Sci-Fi
actor_1_name                                                      J.K. Simmons
movie_title                                              The Astronaut Farmer 
num_voted_users                                                          19707
cast_total_facebook_likes                                                27806
actor_3_name                                                        Bruce Dern
facenumber_in_poster                                                         0
plot_keywords                                bank|fbi|fuel|rocket|space travel
movie_imdb_link              http://www.imdb.com/title/tt0469263/?ref_=fn_t...
num_user_for_reviews                                                       128
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.3e+07
title_year                                                                2006
actor_2_facebook_likes                                                     912
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       862
Name: 2864, dtype: object
color                                                                    Color
director_name                                         Daisy von Scherler Mayer
num_critic_for_reviews                                                      23
duration                                                                    84
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     744
actor_2_name                                                Jada Pinkett Smith
actor_1_facebook_likes                                                    1000
gross                                                              8.02697e+06
genres                                                          Comedy|Romance
actor_1_name                                                         LL Cool J
movie_title                                                               Woo 
num_voted_users                                                           1520
cast_total_facebook_likes                                                 3352
actor_3_name                                                    Dave Chappelle
facenumber_in_poster                                                         0
plot_keywords                blind date|law clerk|love|manhattan new york c...
movie_imdb_link              http://www.imdb.com/title/tt0120531/?ref_=fn_t...
num_user_for_reviews                                                        20
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1998
actor_2_facebook_likes                                                     851
imdb_score                                                                 3.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                       204
Name: 2865, dtype: object
color                                                                    Color
director_name                                                 Lenny Abrahamson
num_critic_for_reviews                                                     421
duration                                                                   118
director_facebook_likes                                                    412
actor_3_facebook_likes                                                     491
actor_2_name                                                    Jacob Tremblay
actor_1_facebook_likes                                                     805
gross                                                              1.46777e+07
genres                                                                   Drama
actor_1_name                                                        Joan Allen
movie_title                                                              Room 
num_voted_users                                                         161288
cast_total_facebook_likes                                                 2499
actor_3_name                                                         Cas Anvar
facenumber_in_poster                                                         0
plot_keywords                based on novel|escape|imprisonment|kidnapping|...
movie_imdb_link              http://www.imdb.com/title/tt3170832/?ref_=fn_t...
num_user_for_reviews                                                       351
language                                                               English
country                                                                Ireland
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2015
actor_2_facebook_likes                                                     681
imdb_score                                                                 8.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     72000
Name: 2866, dtype: object
color                                                                    Color
director_name                                                        Bob Saget
num_critic_for_reviews                                                      32
duration                                                                    82
director_facebook_likes                                                    799
actor_3_facebook_likes                                                     294
actor_2_name                                                       Jack Warden
actor_1_facebook_likes                                                     721
gross                                                              9.97568e+06
genres                                                                  Comedy
actor_1_name                                                       Don Rickles
movie_title                                                        Dirty Work 
num_voted_users                                                          20033
cast_total_facebook_likes                                                 1805
actor_3_name                                                    Traylor Howard
facenumber_in_poster                                                         0
plot_keywords                cult film|gambling debt|job|off screen murder|...
movie_imdb_link              http://www.imdb.com/title/tt0120654/?ref_=fn_t...
num_user_for_reviews                                                       117
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                 1.3e+07
title_year                                                                1998
actor_2_facebook_likes                                                     359
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       679
Name: 2867, dtype: object
color                                                                    Color
director_name                                                      John Waters
num_critic_for_reviews                                                      52
duration                                                                    95
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     650
actor_2_name                                                     Sam Waterston
actor_1_facebook_likes                                                     899
gross                                                              7.88134e+06
genres                                                   Comedy|Crime|Thriller
actor_1_name                                                   Kathleen Turner
movie_title                                                        Serial Mom 
num_voted_users                                                          21212
cast_total_facebook_likes                                                 3092
actor_3_name                                                       Traci Lords
facenumber_in_poster                                                         4
plot_keywords                 dentist|housewife|howie scream|murder|perfection
movie_imdb_link              http://www.imdb.com/title/tt0111127/?ref_=fn_t...
num_user_for_reviews                                                       107
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1994
actor_2_facebook_likes                                                     849
imdb_score                                                                 6.7
aspect_ratio                                                              1.66
movie_facebook_likes                                                      3000
Name: 2868, dtype: object
color                                                                    Color
director_name                                                   Andrew Fleming
num_critic_for_reviews                                                      81
duration                                                                    94
director_facebook_likes                                                     26
actor_3_facebook_likes                                                    4000
actor_2_name                                                      Will Ferrell
actor_1_facebook_likes                                                   16000
gross                                                               6.2417e+06
genres                                                                  Comedy
actor_1_name                                                     Ryan Reynolds
movie_title                                                              Dick 
num_voted_users                                                          16059
cast_total_facebook_likes                                                31005
actor_3_name                                                     Kirsten Dunst
facenumber_in_poster                                                         2
plot_keywords                political cover up|political satire|teenage gi...
movie_imdb_link              http://www.imdb.com/title/tt0144168/?ref_=fn_t...
num_user_for_reviews                                                       210
language                                                               English
country                                                                 France
content_rating                                                           PG-13
budget                                                                 1.3e+07
title_year                                                                1999
actor_2_facebook_likes                                                    8000
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2869, dtype: object
color                                                                    Color
director_name                                                Niels Arden Oplev
num_critic_for_reviews                                                     NaN
duration                                                                    88
director_facebook_likes                                                     76
actor_3_facebook_likes                                                      75
actor_2_name                                                      David Dencik
actor_1_facebook_likes                                                     690
gross                                                                      NaN
genres                                           Action|Crime|Mystery|Thriller
actor_1_name                                                   Michael Nyqvist
movie_title                         Del 1 - Män som hatar kvinnor             
num_voted_users                                                            335
cast_total_facebook_likes                                                  998
actor_3_name                                                        Lena Endre
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1639008/?ref_=fn_t...
num_user_for_reviews                                                       NaN
language                                                               Swedish
country                                                                 Sweden
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                      94
imdb_score                                                                 8.1
aspect_ratio                                                               NaN
movie_facebook_likes                                                        22
Name: 2870, dtype: object
color                                                                    Color
director_name                                                    Craig Bolotin
num_critic_for_reviews                                                      39
duration                                                                    99
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     730
actor_2_name                                                  Vanessa Williams
actor_1_facebook_likes                                                    3000
gross                                                               5.8716e+06
genres                                                          Drama|Thriller
actor_1_name                                                    Rosario Dawson
movie_title                                                       Light It Up 
num_voted_users                                                           3116
cast_total_facebook_likes                                                 6485
actor_3_name                                                   Robert Ri'chard
facenumber_in_poster                                                         3
plot_keywords                black cop|die hard scenario|hostage negotiator...
movie_imdb_link              http://www.imdb.com/title/tt0172726/?ref_=fn_t...
num_user_for_reviews                                                        39
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1999
actor_2_facebook_likes                                                    1000
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       251
Name: 2871, dtype: object
color                                                                    Color
director_name                                                 Mark Christopher
num_critic_for_reviews                                                      63
duration                                                                   121
director_facebook_likes                                                     15
actor_3_facebook_likes                                                     812
actor_2_name                                               Ellen Albertini Dow
actor_1_facebook_likes                                                    4000
gross                                                              1.65747e+07
genres                                                             Drama|Music
actor_1_name                                                       Salma Hayek
movie_title                                                                54 
num_voted_users                                                          27675
cast_total_facebook_likes                                                 6910
actor_3_name                                                         Sela Ward
facenumber_in_poster                                                         4
plot_keywords                angel dust the drug|disco|new york city|quaalu...
movie_imdb_link              http://www.imdb.com/title/tt0120577/?ref_=fn_t...
num_user_for_reviews                                                       181
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1998
actor_2_facebook_likes                                                     957
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2872, dtype: object
color                                                                    Color
director_name                                                      Blair Hayes
num_critic_for_reviews                                                      47
duration                                                                    84
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     690
actor_2_name                                                    Geoffrey Arend
actor_1_facebook_likes                                                   15000
gross                                                              5.00231e+06
genres                                         Adventure|Comedy|Romance|Sci-Fi
actor_1_name                                                   Jake Gyllenhaal
movie_title                                                        Bubble Boy 
num_voted_users                                                          25541
cast_total_facebook_likes                                                18864
actor_3_name                                                    Marley Shelton
facenumber_in_poster                                                         0
plot_keywords                cigarette smoking|hand on butt|niagara falls|p...
movie_imdb_link              http://www.imdb.com/title/tt0258470/?ref_=fn_t...
num_user_for_reviews                                                       181
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+07
title_year                                                                2001
actor_2_facebook_likes                                                     816
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2873, dtype: object
color                                                                    Color
director_name                                                  Jez Butterworth
num_critic_for_reviews                                                     111
duration                                                                    93
director_facebook_likes                                                     16
actor_3_facebook_likes                                                     258
actor_2_name                                                 Mathieu Kassovitz
actor_1_facebook_likes                                                     567
gross                                                               4.9199e+06
genres                                                   Comedy|Crime|Thriller
actor_1_name                                                       Mark Gatiss
movie_title                                                     Birthday Girl 
num_voted_users                                                          21530
cast_total_facebook_likes                                                 1775
actor_3_name                                                       Ben Chaplin
facenumber_in_poster                                                         1
plot_keywords                bank|bank clerk|birthday|mail order bride|russian
movie_imdb_link              http://www.imdb.com/title/tt0188453/?ref_=fn_t...
num_user_for_reviews                                                       159
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2001
actor_2_facebook_likes                                                     326
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       618
Name: 2874, dtype: object
color                                                                    Color
director_name                                                        Jon Lucas
num_critic_for_reviews                                                     168
duration                                                                    93
director_facebook_likes                                                     24
actor_3_facebook_likes                                                     499
actor_2_name                                                       Josie Loren
actor_1_facebook_likes                                                     552
gross                                                              2.56758e+07
genres                                                                  Comedy
actor_1_name                                                       Justin Chon
movie_title                                                         21 & Over 
num_voted_users                                                          60407
cast_total_facebook_likes                                                 2730
actor_3_name                                                      Sarah Wright
facenumber_in_poster                                                         0
plot_keywords                21st birthday|college student|drunken man|pubi...
movie_imdb_link              http://www.imdb.com/title/tt1711425/?ref_=fn_t...
num_user_for_reviews                                                        84
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2013
actor_2_facebook_likes                                                     528
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 2875, dtype: object
color                                                                    Color
director_name                                                  Olivier Assayas
num_critic_for_reviews                                                     165
duration                                                                   120
director_facebook_likes                                                    107
actor_3_facebook_likes                                                     280
actor_2_name                                                Miranda Richardson
actor_1_facebook_likes                                                   12000
gross                                                              4.85738e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Steve Buscemi
movie_title                                                  Paris, je t'aime 
num_voted_users                                                          63084
cast_total_facebook_likes                                                13208
actor_3_name                                           Catalina Sandino Moreno
facenumber_in_poster                                                         0
plot_keywords                         baby|divorce|oscar wilde|pigalle|tourist
movie_imdb_link              http://www.imdb.com/title/tt0401711/?ref_=fn_t...
num_user_for_reviews                                                       123
language                                                                French
country                                                                 France
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2006
actor_2_facebook_likes                                                     530
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2876, dtype: object
color                                                                    Color
director_name                                                        Rod Lurie
num_critic_for_reviews                                                     104
duration                                                                   112
director_facebook_likes                                                     37
actor_3_facebook_likes                                                     548
actor_2_name                                                    Kathryn Morris
actor_1_facebook_likes                                                     748
gross                                                              3.16942e+06
genres                                                             Drama|Sport
actor_1_name                                                      Harry Lennix
movie_title                                            Resurrecting the Champ 
num_voted_users                                                          18442
cast_total_facebook_likes                                                 2417
actor_3_name                                                      Peter Coyote
facenumber_in_poster                                                         1
plot_keywords                    boxing|colosseum|homeless man|reporter|writer
movie_imdb_link              http://www.imdb.com/title/tt0416185/?ref_=fn_t...
num_user_for_reviews                                                        59
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+07
title_year                                                                2007
actor_2_facebook_likes                                                     573
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                       689
Name: 2877, dtype: object
color                                                                    Color
director_name                                                       Paul Weitz
num_critic_for_reviews                                                     150
duration                                                                   107
director_facebook_likes                                                     80
actor_3_facebook_likes                                                     252
actor_2_name                                                  Sarita Choudhury
actor_1_facebook_likes                                                    2000
gross                                                              1.80042e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                          Tina Fey
movie_title                                                         Admission 
num_voted_users                                                          28573
cast_total_facebook_likes                                                 3004
actor_3_name                                            Christopher Evan Welch
facenumber_in_poster                                                         2
plot_keywords                adoption|female protagonist|princeton universi...
movie_imdb_link              http://www.imdb.com/title/tt1814621/?ref_=fn_t...
num_user_for_reviews                                                        87
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+07
title_year                                                                2013
actor_2_facebook_likes                                                     257
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      5000
Name: 2878, dtype: object
color                                                                    Color
director_name                                                  Patrice Leconte
num_critic_for_reviews                                                      61
duration                                                                   112
director_facebook_likes                                                     83
actor_3_facebook_likes                                                       8
actor_2_name                                                    Daniel Auteuil
actor_1_facebook_likes                                                    2000
gross                                                              3.05838e+06
genres                                                           Drama|Romance
actor_1_name                                                    Emir Kusturica
movie_title                                         The Widow of Saint-Pierre 
num_voted_users                                                           4767
cast_total_facebook_likes                                                 2389
actor_3_name                                                      Yves Jacques
facenumber_in_poster                                                         1
plot_keywords                  archipelago|guillotine|island|prison|redemption
movie_imdb_link              http://www.imdb.com/title/tt0191636/?ref_=fn_t...
num_user_for_reviews                                                        69
language                                                                French
country                                                                 France
content_rating                                                               R
budget                                                                   1e+08
title_year                                                                2000
actor_2_facebook_likes                                                     370
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       186
Name: 2879, dtype: object
color                                                                    Color
director_name                                                      Atom Egoyan
num_critic_for_reviews                                                     226
duration                                                                    96
director_facebook_likes                                                    460
actor_3_facebook_likes                                                      73
actor_2_name                                                    Meghan Heffern
actor_1_facebook_likes                                                   14000
gross                                                              3.07484e+06
genres                                          Drama|Mystery|Romance|Thriller
actor_1_name                                                       Liam Neeson
movie_title                                                             Chloe 
num_voted_users                                                          56264
cast_total_facebook_likes                                                14372
actor_3_name                                                  Natalie Lisinska
facenumber_in_poster                                                         2
plot_keywords                bare chested boy|doctor|escort|infidelity|pros...
movie_imdb_link              http://www.imdb.com/title/tt1352824/?ref_=fn_t...
num_user_for_reviews                                                       166
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2009
actor_2_facebook_likes                                                     153
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2880, dtype: object
color                                                                    Color
director_name                                                    Paul Mazursky
num_critic_for_reviews                                                      21
duration                                                                    91
director_facebook_likes                                                    150
actor_3_facebook_likes                                                     150
actor_2_name                                                       Ryan O'Neal
actor_1_facebook_likes                                                     979
gross                                                                2.104e+06
genres                                                      Comedy|Crime|Drama
actor_1_name                                                  Chazz Palminteri
movie_title                                                          Faithful 
num_voted_users                                                           1595
cast_total_facebook_likes                                                 1679
actor_3_name                                                     Paul Mazursky
facenumber_in_poster                                                         3
plot_keywords                bathroom|bathtub|female protagonist|flashback|...
movie_imdb_link              http://www.imdb.com/title/tt0116269/?ref_=fn_t...
num_user_for_reviews                                                        19
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1996
actor_2_facebook_likes                                                     385
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                        69
Name: 2881, dtype: object
color                                                                    Color
director_name                                                     Jim Sheridan
num_critic_for_reviews                                                     217
duration                                                                   105
director_facebook_likes                                                    260
actor_3_facebook_likes                                                    1000
actor_2_name                                                   Jake Gyllenhaal
actor_1_facebook_likes                                                   20000
gross                                                              2.85017e+07
genres                                                          Drama|Thriller
actor_1_name                                                   Natalie Portman
movie_title                                                          Brothers 
num_voted_users                                                          88037
cast_total_facebook_likes                                                39473
actor_3_name                                                      Ethan Suplee
facenumber_in_poster                                                         0
plot_keywords                afghanistan|death of soldier|presumed dead|pri...
movie_imdb_link              http://www.imdb.com/title/tt0765010/?ref_=fn_t...
num_user_for_reviews                                                       201
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 2.6e+07
title_year                                                                2009
actor_2_facebook_likes                                                   15000
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 2882, dtype: object
color                                                                    Color
director_name                                                     Sidney Lumet
num_critic_for_reviews                                                      94
duration                                                                   125
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     968
actor_2_name                                                        Vin Diesel
actor_1_facebook_likes                                                   22000
gross                                                              1.17277e+06
genres                                            Biography|Comedy|Crime|Drama
actor_1_name                                                    Peter Dinklage
movie_title                                                    Find Me Guilty 
num_voted_users                                                          28068
cast_total_facebook_likes                                                37606
actor_3_name                                                        Alex Rocco
facenumber_in_poster                                                         2
plot_keywords                                  court|drugs|judge|mafia|mobster
movie_imdb_link              http://www.imdb.com/title/tt0419749/?ref_=fn_t...
num_user_for_reviews                                                       108
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2006
actor_2_facebook_likes                                                   14000
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2883, dtype: object
color                                                                    Color
director_name                                                  Stephen Chbosky
num_critic_for_reviews                                                     364
duration                                                                   102
director_facebook_likes                                                    139
actor_3_facebook_likes                                                     850
actor_2_name                                                       Ezra Miller
actor_1_facebook_likes                                                    8000
gross                                                              1.77386e+07
genres                                                           Drama|Romance
actor_1_name                                                      Logan Lerman
movie_title                                   The Perks of Being a Wallflower 
num_voted_users                                                         351274
cast_total_facebook_likes                                                13631
actor_3_name                                                        Kate Walsh
facenumber_in_poster                                                         2
plot_keywords                coming of age|depression|gay|high school|menta...
movie_imdb_link              http://www.imdb.com/title/tt1659337/?ref_=fn_t...
num_user_for_reviews                                                       457
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+07
title_year                                                                2012
actor_2_facebook_likes                                                    3000
imdb_score                                                                   8
aspect_ratio                                                              1.85
movie_facebook_likes                                                    131000
Name: 2884, dtype: object
color                                                                    Color
director_name                                                         Jon Hess
num_critic_for_reviews                                                      19
duration                                                                    87
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     147
actor_2_name                                                         Ian Gomez
actor_1_facebook_likes                                                     683
gross                                                                  1.2e+06
genres                                                                  Action
actor_1_name                                                        Burt Young
movie_title                                                   Excessive Force 
num_voted_users                                                            922
cast_total_facebook_likes                                                 1139
actor_3_name                                               Thomas Ian Griffith
facenumber_in_poster                                                         1
plot_keywords                exercise bicycle|face in food|police|police br...
movie_imdb_link              http://www.imdb.com/title/tt0104215/?ref_=fn_t...
num_user_for_reviews                                                        23
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   3e+06
title_year                                                                1993
actor_2_facebook_likes                                                     155
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       107
Name: 2885, dtype: object
color                                                                    Color
director_name                                                  Douglas McGrath
num_critic_for_reviews                                                     129
duration                                                                   118
director_facebook_likes                                                     41
actor_3_facebook_likes                                                     442
actor_2_name                                               Isabella Rossellini
actor_1_facebook_likes                                                    2000
gross                                                               1.1504e+06
genres                                                   Biography|Crime|Drama
actor_1_name                                                        Toby Jones
movie_title                                                          Infamous 
num_voted_users                                                          14143
cast_total_facebook_likes                                                 3474
actor_3_name                                                        Hope Davis
facenumber_in_poster                                                         4
plot_keywords                        blood|book|cold calculation|murder|writer
movie_imdb_link              http://www.imdb.com/title/tt0420609/?ref_=fn_t...
num_user_for_reviews                                                       102
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2006
actor_2_facebook_likes                                                     812
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2886, dtype: object
color                                                                    Color
director_name                                             Michael Winterbottom
num_critic_for_reviews                                                      71
duration                                                                   115
director_facebook_likes                                                    187
actor_3_facebook_likes                                                     887
actor_2_name                                                      Sarah Polley
actor_1_facebook_likes                                                   14000
gross                                                                   403932
genres                                                   Drama|Romance|Western
actor_1_name                                                    Milla Jovovich
movie_title                                                         The Claim 
num_voted_users                                                           5254
cast_total_facebook_likes                                                17104
actor_3_name                                                 Shirley Henderson
facenumber_in_poster                                                         4
plot_keywords                           gold|gold mine|miner|railroad|surveyor
movie_imdb_link              http://www.imdb.com/title/tt0218378/?ref_=fn_t...
num_user_for_reviews                                                        92
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   2e+07
title_year                                                                2000
actor_2_facebook_likes                                                     900
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       141
Name: 2887, dtype: object
color                                                                    Color
director_name                                                   Mark Neveldine
num_critic_for_reviews                                                      93
duration                                                                    91
director_facebook_likes                                                     83
actor_3_facebook_likes                                                     794
actor_2_name                                                     Alison Lohman
actor_1_facebook_likes                                                    3000
gross                                                              1.71211e+06
genres                                                         Horror|Thriller
actor_1_name                                                    Djimon Hounsou
movie_title                                                 The Vatican Tapes 
num_voted_users                                                           7199
cast_total_facebook_likes                                                 7875
actor_3_name                                                     Dougray Scott
facenumber_in_poster                                                         0
plot_keywords                            evil|injury|possession|priest|vatican
movie_imdb_link              http://www.imdb.com/title/tt1524575/?ref_=fn_t...
num_user_for_reviews                                                        53
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                               8.495e+06
title_year                                                                2015
actor_2_facebook_likes                                                    1000
imdb_score                                                                 4.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2888, dtype: object
color                                                                    Color
director_name                                                      Joe Cornish
num_critic_for_reviews                                                     399
duration                                                                    88
director_facebook_likes                                                    115
actor_3_facebook_likes                                                     304
actor_2_name                                                    Luke Treadaway
actor_1_facebook_likes                                                    1000
gross                                                              1.02418e+06
genres                                           Action|Comedy|Sci-Fi|Thriller
actor_1_name                                                       John Boyega
movie_title                                                  Attack the Block 
num_voted_users                                                          82331
cast_total_facebook_likes                                                 2011
actor_3_name                                                   Jodie Whittaker
facenumber_in_poster                                                         6
plot_keywords                     alien|alien invasion|apartment|creature|gang
movie_imdb_link              http://www.imdb.com/title/tt1478964/?ref_=fn_t...
num_user_for_reviews                                                       297
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2011
actor_2_facebook_likes                                                     305
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 2889, dtype: object
color                                                                    Color
director_name                                              Angelina Jolie Pitt
num_critic_for_reviews                                                     110
duration                                                                   127
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     116
actor_2_name                                                   Nikola Djuricko
actor_1_facebook_likes                                                     306
gross                                                                   301305
genres                                                       Drama|Romance|War
actor_1_name                                                   Jelena Jovanova
movie_title                                    In the Land of Blood and Honey 
num_voted_users                                                          31414
cast_total_facebook_likes                                                  796
actor_3_name                                                     Branko Djuric
facenumber_in_poster                                                         0
plot_keywords                   bosnian war|church|emaciation|soldier|violence
movie_imdb_link              http://www.imdb.com/title/tt1714209/?ref_=fn_t...
num_user_for_reviews                                                       180
language                                                               Bosnian
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2011
actor_2_facebook_likes                                                     164
imdb_score                                                                 4.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2890, dtype: object
color                                                                    Color
director_name                                                    Brad Anderson
num_critic_for_reviews                                                     285
duration                                                                    94
director_facebook_likes                                                    122
actor_3_facebook_likes                                                     383
actor_2_name                                                        Tara Platt
actor_1_facebook_likes                                                     873
gross                                                              5.18724e+07
genres                                                          Crime|Thriller
actor_1_name                                                 Michael Imperioli
movie_title                                                          The Call 
num_voted_users                                                          88241
cast_total_facebook_likes                                                 2812
actor_3_name                                                       Roma Maffia
facenumber_in_poster                                                         0
plot_keywords                911 operator|calling 911|die hard scenario|hea...
movie_imdb_link              http://www.imdb.com/title/tt1911644/?ref_=fn_t...
num_user_for_reviews                                                       266
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2013
actor_2_facebook_likes                                                     461
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     23000
Name: 2891, dtype: object
color                                                                    Color
director_name                                                      John H. Lee
num_critic_for_reviews                                                       2
duration                                                                   115
director_facebook_likes                                                     32
actor_3_facebook_likes                                                      29
actor_2_name                                                       Dean Dawson
actor_1_facebook_likes                                                   14000
gross                                                                    31662
genres                                                Action|Drama|History|War
actor_1_name                                                       Liam Neeson
movie_title                                                Operation Chromite 
num_voted_users                                                             90
cast_total_facebook_likes                                                14133
actor_3_name                                                      Jung-jae Lee
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt4939066/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                            South Korea
content_rating                                                             NaN
budget                                                               1.262e+07
title_year                                                                2016
actor_2_facebook_likes                                                      81
imdb_score                                                                 6.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                       139
Name: 2892, dtype: object
color                                                                    Color
director_name                                                    John Stainton
num_critic_for_reviews                                                      61
duration                                                                    90
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     234
actor_2_name                                                        Aden Young
actor_1_facebook_likes                                                     477
gross                                                              2.83992e+07
genres                                          Action|Adventure|Comedy|Family
actor_1_name                                                       Steve Irwin
movie_title                            The Crocodile Hunter: Collision Course 
num_voted_users                                                           5663
cast_total_facebook_likes                                                 1483
actor_3_name                                                     Steve Bastoni
facenumber_in_poster                                                         0
plot_keywords                             cia|crocodile|satellite|snake|spider
movie_imdb_link              http://www.imdb.com/title/tt0305396/?ref_=fn_t...
num_user_for_reviews                                                       106
language                                                               English
country                                                              Australia
content_rating                                                              PG
budget                                                                 1.3e+07
title_year                                                                2002
actor_2_facebook_likes                                                     238
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       332
Name: 2893, dtype: object
color                                                                    Color
director_name                                                    Glenn Ficarra
num_critic_for_reviews                                                     242
duration                                                                   102
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     113
actor_2_name                                                     Louis Herthum
actor_1_facebook_likes                                                     170
gross                                                              2.03557e+06
genres                                    Biography|Comedy|Crime|Drama|Romance
actor_1_name                                                     Dameon Clarke
movie_title                                         I Love You Phillip Morris 
num_voted_users                                                          77305
cast_total_facebook_likes                                                  931
actor_3_name                                                      Annie Golden
facenumber_in_poster                                                         0
plot_keywords                character name in title|con artist|fraud|gay|p...
movie_imdb_link              http://www.imdb.com/title/tt1045772/?ref_=fn_t...
num_user_for_reviews                                                       162
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2009
actor_2_facebook_likes                                                     157
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 2894, dtype: object
color                                                                    Color
director_name                                              Jean-Jacques Annaud
num_critic_for_reviews                                                      62
duration                                                                   100
director_facebook_likes                                                    218
actor_3_facebook_likes                                                      91
actor_2_name                                                    Everett McGill
actor_1_facebook_likes                                                     581
gross                                                                      NaN
genres                                                 Adventure|Drama|History
actor_1_name                                                    Rae Dawn Chong
movie_title                                                    Quest for Fire 
num_voted_users                                                          16281
cast_total_facebook_likes                                                  931
actor_3_name                                                     Gary Schwartz
facenumber_in_poster                                                         0
plot_keywords                      fire|prehistoric times|primitive|tribe|trio
movie_imdb_link              http://www.imdb.com/title/tt0082484/?ref_=fn_t...
num_user_for_reviews                                                        96
language                                                                  None
country                                                                 Canada
content_rating                                                               R
budget                                                                1.25e+07
title_year                                                                1981
actor_2_facebook_likes                                                     201
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2895, dtype: object
color                                                                    Color
director_name                                                Denzel Washington
num_critic_for_reviews                                                     121
duration                                                                   117
director_facebook_likes                                                  18000
actor_3_facebook_likes                                                     543
actor_2_name                                                    Kevin Connolly
actor_1_facebook_likes                                                   18000
gross                                                              2.10781e+07
genres                                                         Biography|Drama
actor_1_name                                                 Denzel Washington
movie_title                                                    Antwone Fisher 
num_voted_users                                                          26493
cast_total_facebook_likes                                                20456
actor_3_name                                                        Derek Luke
facenumber_in_poster                                                         0
plot_keywords                black american|extortion|navy|psychiatrist|sailor
movie_imdb_link              http://www.imdb.com/title/tt0168786/?ref_=fn_t...
num_user_for_reviews                                                       159
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+07
title_year                                                                2002
actor_2_facebook_likes                                                     638
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2896, dtype: object
color                                                                    Color
director_name                                                  Michael Hoffman
num_critic_for_reviews                                                      83
duration                                                                   109
director_facebook_likes                                                     97
actor_3_facebook_likes                                                     355
actor_2_name                                                    Embeth Davidtz
actor_1_facebook_likes                                                   13000
gross                                                               1.4061e+07
genres                                                                   Drama
actor_1_name                                                   Gabriel Millman
movie_title                                                The Emperor's Club 
num_voted_users                                                          14354
cast_total_facebook_likes                                                14347
actor_3_name                                                        Rob Morrow
facenumber_in_poster                                                         1
plot_keywords                  classroom|fund raising|headmaster|reunion|roman
movie_imdb_link              http://www.imdb.com/title/tt0283530/?ref_=fn_t...
num_user_for_reviews                                                       139
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.25e+07
title_year                                                                2002
actor_2_facebook_likes                                                     795
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2897, dtype: object
color                                                                    Color
director_name                                                       Tony Scott
num_critic_for_reviews                                                     122
duration                                                                   121
director_facebook_likes                                                  12000
actor_3_facebook_likes                                                     975
actor_2_name                                                       Gary Oldman
actor_1_facebook_likes                                                   11000
gross                                                              1.22815e+07
genres                                     Action|Crime|Drama|Romance|Thriller
actor_1_name                                                         Brad Pitt
movie_title                                                      True Romance 
num_voted_users                                                         163492
cast_total_facebook_likes                                                23602
actor_3_name                                                  Michael Rapaport
facenumber_in_poster                                                         3
plot_keywords                aspiring actor|cocaine|drugs|pimp|suitcase ful...
movie_imdb_link              http://www.imdb.com/title/tt0108399/?ref_=fn_t...
num_user_for_reviews                                                       460
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1993
actor_2_facebook_likes                                                   10000
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 2898, dtype: object
color                                                                    Color
director_name                                                 Benedek Fliegauf
num_critic_for_reviews                                                      88
duration                                                                   111
director_facebook_likes                                                     28
actor_3_facebook_likes                                                    1000
actor_2_name                                                        Matt Smith
actor_1_facebook_likes                                                    6000
gross                                                                      NaN
genres                                                    Drama|Romance|Sci-Fi
actor_1_name                                                         Eva Green
movie_title                                                              Womb 
num_voted_users                                                           9957
cast_total_facebook_likes                                                 9244
actor_3_name                                                     Hannah Murray
facenumber_in_poster                                                         1
plot_keywords                  clone|love|male nudity|medical ethics|virginity
movie_imdb_link              http://www.imdb.com/title/tt1216520/?ref_=fn_t...
num_user_for_reviews                                                        35
language                                                               English
country                                                                Germany
content_rating                                                         Unrated
budget                                                                3.66e+06
title_year                                                                2010
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2899, dtype: object
color                                                                    Color
director_name                                                      James Foley
num_critic_for_reviews                                                     120
duration                                                                   100
director_facebook_likes                                                    164
actor_3_facebook_likes                                                      99
actor_2_name                                                         Al Pacino
actor_1_facebook_likes                                                   18000
gross                                                              1.07252e+07
genres                                                     Crime|Drama|Mystery
actor_1_name                                                      Kevin Spacey
movie_title                                               Glengarry Glen Ross 
num_voted_users                                                          75675
cast_total_facebook_likes                                                32288
actor_3_name                                                   Jude Ciccolella
facenumber_in_poster                                                         1
plot_keywords                        office|pressure|real estate|robbery|sales
movie_imdb_link              http://www.imdb.com/title/tt0104348/?ref_=fn_t...
num_user_for_reviews                                                       365
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.25e+07
title_year                                                                1992
actor_2_facebook_likes                                                   14000
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2900, dtype: object
color                                                                    Color
director_name                                             Michael Winterbottom
num_critic_for_reviews                                                     225
duration                                                                   109
director_facebook_likes                                                    187
actor_3_facebook_likes                                                     204
actor_2_name                                                        Ned Beatty
actor_1_facebook_likes                                                     818
gross                                                                   214966
genres                                                    Crime|Drama|Thriller
actor_1_name                                                        Liam Aiken
movie_title                                              The Killer Inside Me 
num_voted_users                                                          28483
cast_total_facebook_likes                                                 1813
actor_3_name                                                   Jay R. Ferguson
facenumber_in_poster                                                         0
plot_keywords                              deputy|murder|revenge|sheriff|texas
movie_imdb_link              http://www.imdb.com/title/tt0954947/?ref_=fn_t...
num_user_for_reviews                                                       176
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2010
actor_2_facebook_likes                                                     467
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2901, dtype: object
color                                                                    Color
director_name                                                    Paul Schrader
num_critic_for_reviews                                                     130
duration                                                                    93
director_facebook_likes                                                    261
actor_3_facebook_likes                                                     697
actor_2_name                                                          Ruby Dee
actor_1_facebook_likes                                                     783
gross                                                                      NaN
genres                                                 Fantasy|Horror|Thriller
actor_1_name                                                     Ed Begley Jr.
movie_title                                                        Cat People 
num_voted_users                                                          14193
cast_total_facebook_likes                                                 3700
actor_3_name                                                        John Heard
facenumber_in_poster                                                         1
plot_keywords                cat|cat people|leopard|love|slip the undergarment
movie_imdb_link              http://www.imdb.com/title/tt0083722/?ref_=fn_t...
num_user_for_reviews                                                       106
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.8e+07
title_year                                                                1982
actor_2_facebook_likes                                                     782
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2902, dtype: object
color                                                                    Color
director_name                                                  Stewart Hendler
num_critic_for_reviews                                                     167
duration                                                                   101
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     472
actor_2_name                                                    Margo Harshman
actor_1_facebook_likes                                                    1000
gross                                                              1.19562e+07
genres                                                          Horror|Mystery
actor_1_name                                                     Julian Morris
movie_title                                                      Sorority Row 
num_voted_users                                                          24012
cast_total_facebook_likes                                                 3142
actor_3_name                                                      Rumer Willis
facenumber_in_poster                                                         2
plot_keywords                prank gone wrong|scantily clad female|shotgun|...
movie_imdb_link              http://www.imdb.com/title/tt1232783/?ref_=fn_t...
num_user_for_reviews                                                       126
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                2009
actor_2_facebook_likes                                                     668
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2903, dtype: object
color                                                          Black and White
director_name                                                    John Cromwell
num_critic_for_reviews                                                       7
duration                                                                   101
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     135
actor_2_name                                                        Mary Astor
actor_1_facebook_likes                                                     490
gross                                                                      NaN
genres                                                 Adventure|Drama|Romance
actor_1_name                                                       David Niven
movie_title                                             The Prisoner of Zenda 
num_voted_users                                                           3256
cast_total_facebook_likes                                                 1166
actor_3_name                                                     Ronald Colman
facenumber_in_poster                                                         2
plot_keywords                coronation|fictitious country|king|princess|sw...
movie_imdb_link              http://www.imdb.com/title/tt0029442/?ref_=fn_t...
num_user_for_reviews                                                        44
language                                                               English
country                                                                    USA
content_rating                                                        Approved
budget                                                                     NaN
title_year                                                                1937
actor_2_facebook_likes                                                     185
imdb_score                                                                 7.8
aspect_ratio                                                              1.37
movie_facebook_likes                                                       337
Name: 2904, dtype: object
color                                                                    Color
director_name                                                  Craig Gillespie
num_critic_for_reviews                                                     226
duration                                                                   106
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     552
actor_2_name                                                      Kelli Garner
actor_1_facebook_likes                                                   33000
gross                                                              5.94969e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Ryan Gosling
movie_title                                            Lars and the Real Girl 
num_voted_users                                                         114762
cast_total_facebook_likes                                                34351
actor_3_name                                                    Paul Schneider
facenumber_in_poster                                                         1
plot_keywords                in love with an inanimate object|internet|intr...
movie_imdb_link              http://www.imdb.com/title/tt0805564/?ref_=fn_t...
num_user_for_reviews                                                       299
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2007
actor_2_facebook_likes                                                     730
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     19000
Name: 2905, dtype: object
color                                                                    Color
director_name                                                      Mark Herman
num_critic_for_reviews                                                     185
duration                                                                    94
director_facebook_likes                                                     39
actor_3_facebook_likes                                                      18
actor_2_name                                                    Sheila Hancock
actor_1_facebook_likes                                                      77
gross                                                              9.03058e+06
genres                                                               Drama|War
actor_1_name                                                   Richard Johnson
movie_title                                    The Boy in the Striped Pajamas 
num_voted_users                                                         132386
cast_total_facebook_likes                                                  156
actor_3_name                                                       Cara Horgan
facenumber_in_poster                                                         0
plot_keywords                                   boy|fence|jew|nazis|poison gas
movie_imdb_link              http://www.imdb.com/title/tt0914798/?ref_=fn_t...
num_user_for_reviews                                                       398
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                1.25e+07
title_year                                                                2008
actor_2_facebook_likes                                                      32
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     38000
Name: 2906, dtype: object
color                                                                    Color
director_name                                                   Lars von Trier
num_critic_for_reviews                                                     177
duration                                                                   140
director_facebook_likes                                                   3000
actor_3_facebook_likes                                                     322
actor_2_name                                                          Udo Kier
actor_1_facebook_likes                                                     963
gross                                                              4.15749e+06
genres                                                     Crime|Drama|Musical
actor_1_name                                                 Catherine Deneuve
movie_title                                                Dancer in the Dark 
num_voted_users                                                          79330
cast_total_facebook_likes                                                 2894
actor_3_name                                                             Björk
facenumber_in_poster                                                         0
plot_keywords                ends with quotation|execution|factory|women's ...
movie_imdb_link              http://www.imdb.com/title/tt0168629/?ref_=fn_t...
num_user_for_reviews                                                       690
language                                                               English
country                                                                Denmark
content_rating                                                               R
budget                                                                1.28e+07
title_year                                                                2000
actor_2_facebook_likes                                                     595
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2907, dtype: object
color                                                                    Color
director_name                                                Gillian Armstrong
num_critic_for_reviews                                                      28
duration                                                                   132
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     241
actor_2_name                                                  Richard Roxburgh
actor_1_facebook_likes                                                    1000
gross                                                              1.50869e+06
genres                                                           Drama|Romance
actor_1_name                                                     Tom Wilkinson
movie_title                                                 Oscar and Lucinda 
num_voted_users                                                           5648
cast_total_facebook_likes                                                 2004
actor_3_name                                                     Clive Russell
facenumber_in_poster                                                         2
plot_keywords                         australia|church|glass|inheritance|wager
movie_imdb_link              http://www.imdb.com/title/tt0119843/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.6e+07
title_year                                                                1997
actor_2_facebook_likes                                                     653
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       329
Name: 2908, dtype: object
color                                                                    Color
director_name                                                     Abel Ferrara
num_critic_for_reviews                                                      48
duration                                                                    99
director_facebook_likes                                                    220
actor_3_facebook_likes                                                     599
actor_2_name                                                     Vincent Gallo
actor_1_facebook_likes                                                     812
gross                                                              1.22732e+06
genres                                                             Crime|Drama
actor_1_name                                               Isabella Rossellini
movie_title                                                       The Funeral 
num_voted_users                                                           6921
cast_total_facebook_likes                                                 3337
actor_3_name                                                      Gretchen Mol
facenumber_in_poster                                                         3
plot_keywords                      1930s|madness|murder|new york city|violence
movie_imdb_link              http://www.imdb.com/title/tt0116378/?ref_=fn_t...
num_user_for_reviews                                                        48
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.25e+07
title_year                                                                1996
actor_2_facebook_likes                                                     787
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       344
Name: 2909, dtype: object
color                                                                    Color
director_name                                                  Brian Koppelman
num_critic_for_reviews                                                     116
duration                                                                    90
director_facebook_likes                                                     34
actor_3_facebook_likes                                                     506
actor_2_name                                                   David Costabile
actor_1_facebook_likes                                                     966
gross                                                              4.36055e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Jenna Fischer
movie_title                                                      Solitary Man 
num_voted_users                                                          13371
cast_total_facebook_likes                                                 2661
actor_3_name                                                    Richard Schiff
facenumber_in_poster                                                         7
plot_keywords                aging|hdtv|high definition television|love|mar...
movie_imdb_link              http://www.imdb.com/title/tt1294213/?ref_=fn_t...
num_user_for_reviews                                                        60
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     681
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2910, dtype: object
color                                                                    Color
director_name                                                   Ethan Maniquis
num_critic_for_reviews                                                     391
duration                                                                   105
director_facebook_likes                                                     20
actor_3_facebook_likes                                                     844
actor_2_name                                                       Don Johnson
actor_1_facebook_likes                                                   22000
gross                                                                2.659e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                    Robert De Niro
movie_title                                                           Machete 
num_voted_users                                                         165792
cast_total_facebook_likes                                                26233
actor_3_name                                                      Cheech Marin
facenumber_in_poster                                                         1
plot_keywords                              machete|mexican|mexico|priest|texas
movie_imdb_link              http://www.imdb.com/title/tt0985694/?ref_=fn_t...
num_user_for_reviews                                                       392
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.05e+07
title_year                                                                2010
actor_2_facebook_likes                                                     982
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     44000
Name: 2911, dtype: object
color                                                                    Color
director_name                                              George Hickenlooper
num_critic_for_reviews                                                     117
duration                                                                   108
director_facebook_likes                                                     60
actor_3_facebook_likes                                                     168
actor_2_name                                                      Eric Schweig
actor_1_facebook_likes                                                   18000
gross                                                              1.03987e+06
genres                                            Biography|Comedy|Crime|Drama
actor_1_name                                                      Kevin Spacey
movie_title                                                       Casino Jack 
num_voted_users                                                          14757
cast_total_facebook_likes                                                18739
actor_3_name                                                Christian Campbell
facenumber_in_poster                                                         5
plot_keywords                corruption|lobbyist|murder|washington d.c.|was...
movie_imdb_link              http://www.imdb.com/title/tt1194417/?ref_=fn_t...
num_user_for_reviews                                                        51
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                     322
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2912, dtype: object
color                                                                    Color
director_name                                                        Don Bluth
num_critic_for_reviews                                                      24
duration                                                                    69
director_facebook_likes                                                    383
actor_3_facebook_likes                                                     191
actor_2_name                                                     Gabriel Damon
actor_1_facebook_likes                                                     912
gross                                                              4.80928e+07
genres                                              Adventure|Animation|Family
actor_1_name                                                      Judith Barsi
movie_title                                              The Land Before Time 
num_voted_users                                                          61753
cast_total_facebook_likes                                                 1833
actor_3_name                                                        Bill Erwin
facenumber_in_poster                                                         0
plot_keywords                brontosaurus|classical music|dinosaur|dinosaur...
movie_imdb_link              http://www.imdb.com/title/tt0095489/?ref_=fn_t...
num_user_for_reviews                                                       133
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                1.25e+07
title_year                                                                1988
actor_2_facebook_likes                                                     320
imdb_score                                                                 7.3
aspect_ratio                                                              1.33
movie_facebook_likes                                                      5000
Name: 2913, dtype: object
color                                                                    Color
director_name                                                      Je-kyu Kang
num_critic_for_reviews                                                      86
duration                                                                   148
director_facebook_likes                                                     16
actor_3_facebook_likes                                                     489
actor_2_name                                                           Bin Won
actor_1_facebook_likes                                                     717
gross                                                              1.11019e+06
genres                                                        Action|Drama|War
actor_1_name                                                      Min-sik Choi
movie_title                                Tae Guk Gi: The Brotherhood of War 
num_voted_users                                                          31943
cast_total_facebook_likes                                                 1730
actor_3_name                                                     Dong-gun Jang
facenumber_in_poster                                                         2
plot_keywords                      1950s|archeologist|korea|korean war|soldier
movie_imdb_link              http://www.imdb.com/title/tt0386064/?ref_=fn_t...
num_user_for_reviews                                                       224
language                                                                Korean
country                                                            South Korea
content_rating                                                               R
budget                                                                1.28e+07
title_year                                                                2004
actor_2_facebook_likes                                                     517
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2914, dtype: object
color                                                          Black and White
director_name                                                     William Dear
num_critic_for_reviews                                                      41
duration                                                                   118
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     655
actor_2_name                                                      Cheech Marin
actor_1_facebook_likes                                                     968
gross                                                              1.08944e+06
genres                                               Comedy|Drama|Family|Sport
actor_1_name                                               Clifton Collins Jr.
movie_title                                                  The Perfect Game 
num_voted_users                                                           2676
cast_total_facebook_likes                                                 4270
actor_3_name                                                      Bruce McGill
facenumber_in_poster                                                         0
plot_keywords                baseball movie|little league|little league bas...
movie_imdb_link              http://www.imdb.com/title/tt0473102/?ref_=fn_t...
num_user_for_reviews                                                        33
language                                                               English
country                                                                 Canada
content_rating                                                              PG
budget                                                                1.25e+07
title_year                                                                2009
actor_2_facebook_likes                                                     844
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2915, dtype: object
color                                                                    Color
director_name                                                 William Friedkin
num_critic_for_reviews                                                     304
duration                                                                   132
director_facebook_likes                                                    607
actor_3_facebook_likes                                                     259
actor_2_name                                                       Linda Blair
actor_1_facebook_likes                                                    1000
gross                                                              2.04565e+08
genres                                                                  Horror
actor_1_name                                                     Ellen Burstyn
movie_title                                                      The Exorcist 
num_voted_users                                                         284252
cast_total_facebook_likes                                                 2466
actor_3_name                                                       Lee J. Cobb
facenumber_in_poster                                                         0
plot_keywords                demonic possession|exorcism|exorcist|loss of i...
movie_imdb_link              http://www.imdb.com/title/tt0070047/?ref_=fn_t...
num_user_for_reviews                                                      1058
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1973
actor_2_facebook_likes                                                     931
imdb_score                                                                   8
aspect_ratio                                                              1.37
movie_facebook_likes                                                     18000
Name: 2916, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     385
duration                                                                   130
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     366
actor_2_name                                                       Robert Shaw
actor_1_facebook_likes                                                     813
gross                                                                  2.6e+08
genres                                                Adventure|Drama|Thriller
actor_1_name                                                      Roy Scheider
movie_title                                                              Jaws 
num_voted_users                                                         412454
cast_total_facebook_likes                                                 2047
actor_3_name                                                   Murray Hamilton
facenumber_in_poster                                                         0
plot_keywords                beach|blockbuster|fishing|great white shark|shark
movie_imdb_link              http://www.imdb.com/title/tt0073195/?ref_=fn_t...
num_user_for_reviews                                                       962
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+06
title_year                                                                1975
actor_2_facebook_likes                                                     559
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     21000
Name: 2917, dtype: object
color                                                                    Color
director_name                                                       Paul Weitz
num_critic_for_reviews                                                     145
duration                                                                    95
director_facebook_likes                                                     80
actor_3_facebook_likes                                                    1000
actor_2_name                                                 Shannon Elizabeth
actor_1_facebook_likes                                                    3000
gross                                                              1.01736e+08
genres                                                                  Comedy
actor_1_name                                                   Alyson Hannigan
movie_title                                                      American Pie 
num_voted_users                                                         315549
cast_total_facebook_likes                                                 8134
actor_3_name                                                    Natasha Lyonne
facenumber_in_poster                                                         6
plot_keywords                             1990s|first love|milf|prom|virginity
movie_imdb_link              http://www.imdb.com/title/tt0163651/?ref_=fn_t...
num_user_for_reviews                                                       789
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                1999
actor_2_facebook_likes                                                    1000
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2918, dtype: object
color                                                                    Color
director_name                                                  Stéphane Aubier
num_critic_for_reviews                                                      99
duration                                                                    80
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     186
actor_2_name                                                    Megan Mullally
actor_1_facebook_likes                                                    6000
gross                                                                    71442
genres                                     Animation|Comedy|Crime|Drama|Family
actor_1_name                                                     Mackenzie Foy
movie_title                                                Ernest & Celestine 
num_voted_users                                                          12029
cast_total_facebook_likes                                                 6829
actor_3_name                                                    Lambert Wilson
facenumber_in_poster                                                         0
plot_keywords                          bear|dentist|friendship|mouse|prejudice
movie_imdb_link              http://www.imdb.com/title/tt1816518/?ref_=fn_t...
num_user_for_reviews                                                        32
language                                                                French
country                                                                 France
content_rating                                                              PG
budget                                                                 9.6e+06
title_year                                                                2012
actor_2_facebook_likes                                                     637
imdb_score                                                                 7.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2919, dtype: object
color                                                                    Color
director_name                                                  Michael Ritchie
num_critic_for_reviews                                                      29
duration                                                                    94
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     148
actor_2_name                                                Randall 'Tex' Cobb
actor_1_facebook_likes                                                     400
gross                                                              7.98179e+07
genres                                 Action|Adventure|Comedy|Fantasy|Mystery
actor_1_name                                                       Victor Wong
movie_title                                                  The Golden Child 
num_voted_users                                                          39798
cast_total_facebook_likes                                                 1044
actor_3_name                                                   Charlotte Lewis
facenumber_in_poster                                                         1
plot_keywords                             boy|child|chosen one|demon|detective
movie_imdb_link              http://www.imdb.com/title/tt0091129/?ref_=fn_t...
num_user_for_reviews                                                        69
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.5e+07
title_year                                                                1986
actor_2_facebook_likes                                                     255
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2920, dtype: object
color                                                                    Color
director_name                                                        Tim Story
num_critic_for_reviews                                                      77
duration                                                                   122
director_facebook_likes                                                    167
actor_3_facebook_likes                                                     807
actor_2_name                                                      Romany Malco
actor_1_facebook_likes                                                     997
gross                                                              9.15472e+07
genres                                                          Comedy|Romance
actor_1_name                                                       Chris Brown
movie_title                                                  Think Like a Man 
num_voted_users                                                          34579
cast_total_facebook_likes                                                 5165
actor_3_name                                                       Regina Hall
facenumber_in_poster                                                         8
plot_keywords                advice|black romance|hip hop|reading a book|se...
movie_imdb_link              http://www.imdb.com/title/tt1621045/?ref_=fn_t...
num_user_for_reviews                                                        62
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2012
actor_2_facebook_likes                                                     966
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2921, dtype: object
color                                                                    Color
director_name                                                        Tim Story
num_critic_for_reviews                                                      91
duration                                                                   102
director_facebook_likes                                                    167
actor_3_facebook_likes                                                     436
actor_2_name                                                      Jason George
actor_1_facebook_likes                                                     656
gross                                                               7.5075e+07
genres                                                            Comedy|Drama
actor_1_name                                               Sean Patrick Thomas
movie_title                                                        Barbershop 
num_voted_users                                                          22147
cast_total_facebook_likes                                                 2754
actor_3_name                                            Cedric the Entertainer
facenumber_in_poster                                                         0
plot_keywords                barber|barbershop|blaxploitation|loan shark|theft
movie_imdb_link              http://www.imdb.com/title/tt0303714/?ref_=fn_t...
num_user_for_reviews                                                       156
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2002
actor_2_facebook_likes                                                     528
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       770
Name: 2922, dtype: object
color                                                                    Color
director_name                                                   Nicholas Meyer
num_critic_for_reviews                                                     148
duration                                                                   116
director_facebook_likes                                                    120
actor_3_facebook_likes                                                     664
actor_2_name                                                     Kirstie Alley
actor_1_facebook_likes                                                   12000
gross                                                                 7.89e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                     Leonard Nimoy
movie_title                                   Star Trek II: The Wrath of Khan 
num_voted_users                                                          91414
cast_total_facebook_likes                                                16539
actor_3_name                                                  Nichelle Nichols
facenumber_in_poster                                                         2
plot_keywords                jamming communications|planet|space station|ta...
movie_imdb_link              http://www.imdb.com/title/tt0084726/?ref_=fn_t...
num_user_for_reviews                                                       359
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.1e+07
title_year                                                                1982
actor_2_facebook_likes                                                     980
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2923, dtype: object
color                                                                    Color
director_name                                                      Tom Shadyac
num_critic_for_reviews                                                      61
duration                                                                    78
director_facebook_likes                                                    293
actor_3_facebook_likes                                                     567
actor_2_name                                                          Udo Kier
actor_1_facebook_likes                                                     759
gross                                                               7.2217e+07
genres                                                                  Comedy
actor_1_name                                                        Sean Young
movie_title                                        Ace Ventura: Pet Detective 
num_voted_users                                                         216486
cast_total_facebook_likes                                                 2462
actor_3_name                                                   David Margulies
facenumber_in_poster                                                         1
plot_keywords                        detective|dolphin|mascot|nudity|stupidity
movie_imdb_link              http://www.imdb.com/title/tt0109040/?ref_=fn_t...
num_user_for_reviews                                                       242
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                1994
actor_2_facebook_likes                                                     595
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2924, dtype: object
color                                                                    Color
director_name                                                      John Badham
num_critic_for_reviews                                                      84
duration                                                                   114
director_facebook_likes                                                    139
actor_3_facebook_likes                                                     793
actor_2_name                                                      Barry Corbin
actor_1_facebook_likes                                                    2000
gross                                                               7.9568e+07
genres                                                         Sci-Fi|Thriller
actor_1_name                                                 Matthew Broderick
movie_title                                                          WarGames 
num_voted_users                                                          71842
cast_total_facebook_likes                                                 4537
actor_3_name                                                       Ally Sheedy
facenumber_in_poster                                                         0
plot_keywords                         computer|game|high school|norad|teenager
movie_imdb_link              http://www.imdb.com/title/tt0086567/?ref_=fn_t...
num_user_for_reviews                                                       152
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+07
title_year                                                                1983
actor_2_facebook_likes                                                     883
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2925, dtype: object
color                                                                    Color
director_name                                                       Peter Weir
num_critic_for_reviews                                                      83
duration                                                                   112
director_facebook_likes                                                    608
actor_3_facebook_likes                                                     733
actor_2_name                                                   Viggo Mortensen
actor_1_facebook_likes                                                   11000
gross                                                                 6.55e+07
genres                                            Crime|Drama|Romance|Thriller
actor_1_name                                                     Harrison Ford
movie_title                                                           Witness 
num_voted_users                                                          66966
cast_total_facebook_likes                                                22479
actor_3_name                                                        Lukas Haas
facenumber_in_poster                                                         1
plot_keywords                                   amish|love|murder|police|train
movie_imdb_link              http://www.imdb.com/title/tt0090329/?ref_=fn_t...
num_user_for_reviews                                                       175
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                1985
actor_2_facebook_likes                                                   10000
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2926, dtype: object
color                                                                    Color
director_name                                                       Mike McCoy
num_critic_for_reviews                                                     216
duration                                                                   110
director_facebook_likes                                                     16
actor_3_facebook_likes                                                      11
actor_2_name                                                      Jason Cottle
actor_1_facebook_likes                                                      93
gross                                                              7.00111e+07
genres                                     Action|Adventure|Drama|Thriller|War
actor_1_name                                                       Alex Veadov
movie_title                                                      Act of Valor 
num_voted_users                                                          57996
cast_total_facebook_likes                                                  146
actor_3_name                                                      Rorke Denver
facenumber_in_poster                                                         0
plot_keywords                        mission|navy seal|terrorist|torture|valor
movie_imdb_link              http://www.imdb.com/title/tt1591479/?ref_=fn_t...
num_user_for_reviews                                                       349
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2012
actor_2_facebook_likes                                                      17
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 2927, dtype: object
color                                                                    Color
director_name                                                    Anne Fletcher
num_critic_for_reviews                                                     107
duration                                                                   104
director_facebook_likes                                                     98
actor_3_facebook_likes                                                     920
actor_2_name                                                     Alyson Stoner
actor_1_facebook_likes                                                   17000
gross                                                               6.5269e+07
genres                                               Crime|Drama|Music|Romance
actor_1_name                                                    Channing Tatum
movie_title                                                           Step Up 
num_voted_users                                                          90938
cast_total_facebook_likes                                                21380
actor_3_name                                                    Josh Henderson
facenumber_in_poster                                                         0
plot_keywords                             dance|dancer|school|showcase|student
movie_imdb_link              http://www.imdb.com/title/tt0462590/?ref_=fn_t...
num_user_for_reviews                                                       271
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2006
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2928, dtype: object
color                                                                    Color
director_name                                                       Mike Judge
num_critic_for_reviews                                                      63
duration                                                                    81
director_facebook_likes                                                    406
actor_3_facebook_likes                                                     616
actor_2_name                                                        Demi Moore
actor_1_facebook_likes                                                   13000
gross                                                              6.30711e+07
genres                                        Adventure|Animation|Comedy|Crime
actor_1_name                                                      Bruce Willis
movie_title                                   Beavis and Butt-Head Do America 
num_voted_users                                                          42892
cast_total_facebook_likes                                                17035
actor_3_name                                                        John Doman
facenumber_in_poster                                                         0
plot_keywords                beavis and butt head|fbi|score|television|tele...
movie_imdb_link              http://www.imdb.com/title/tt0115641/?ref_=fn_t...
num_user_for_reviews                                                       154
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                1996
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2929, dtype: object
color                                                                    Color
director_name                                                Quentin Tarantino
num_critic_for_reviews                                                     140
duration                                                                   154
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     889
actor_2_name                                                          Sid Haig
actor_1_facebook_likes                                                   22000
gross                                                              3.96476e+07
genres                                                          Crime|Thriller
actor_1_name                                                    Robert De Niro
movie_title                                                      Jackie Brown 
num_voted_users                                                         239540
cast_total_facebook_likes                                                25522
actor_3_name                                                    Robert Forster
facenumber_in_poster                                                         5
plot_keywords                 arms dealer|atf|bail|money|multiple perspectives
movie_imdb_link              http://www.imdb.com/title/tt0119396/?ref_=fn_t...
num_user_for_reviews                                                       462
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                1997
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2930, dtype: object
color                                                                    Color
director_name                                                      Jon Hurwitz
num_critic_for_reviews                                                     153
duration                                                                   102
director_facebook_likes                                                     22
actor_3_facebook_likes                                                     816
actor_2_name                                                       Eric Winter
actor_1_facebook_likes                                                    1000
gross                                                              3.80874e+07
genres                                                        Adventure|Comedy
actor_1_name                                                    Danneel Ackles
movie_title                         Harold & Kumar Escape from Guantanamo Bay 
num_voted_users                                                         113918
cast_total_facebook_likes                                                 4065
actor_3_name                                                  Beverly D'Angelo
facenumber_in_poster                                                         2
plot_keywords                   bong|escape|ex girlfriend|guantanamo bay|texas
movie_imdb_link              http://www.imdb.com/title/tt0481536/?ref_=fn_t...
num_user_for_reviews                                                       165
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2008
actor_2_facebook_likes                                                     954
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2931, dtype: object
color                                                                    Color
director_name                                                       Josh Trank
num_critic_for_reviews                                                     414
duration                                                                    89
director_facebook_likes                                                    128
actor_3_facebook_likes                                                     371
actor_2_name                                                      Alex Russell
actor_1_facebook_likes                                                     963
gross                                                              6.45725e+07
genres                                                   Drama|Sci-Fi|Thriller
actor_1_name                                                     Michael Kelly
movie_title                                                         Chronicle 
num_voted_users                                                         204327
cast_total_facebook_likes                                                 2054
actor_3_name                                                    Ashley Hinshaw
facenumber_in_poster                                                         0
plot_keywords                found footage|high school|subjective camera|te...
movie_imdb_link              http://www.imdb.com/title/tt1706593/?ref_=fn_t...
num_user_for_reviews                                                       471
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2012
actor_2_facebook_likes                                                     465
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     32000
Name: 2932, dtype: object
color                                                                    Color
director_name                                                 Barbra Streisand
num_critic_for_reviews                                                      16
duration                                                                   132
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     122
actor_2_name                                                        Amy Irving
actor_1_facebook_likes                                                     405
gross                                                                 3.04e+07
genres                                                   Drama|Musical|Romance
actor_1_name                                                  Miriam Margolyes
movie_title                                                             Yentl 
num_voted_users                                                           9503
cast_total_facebook_likes                                                  914
actor_3_name                                                       Steven Hill
facenumber_in_poster                                                         1
plot_keywords                                love|study|talmud|wedding|yeshiva
movie_imdb_link              http://www.imdb.com/title/tt0086619/?ref_=fn_t...
num_user_for_reviews                                                        68
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 1.2e+07
title_year                                                                1983
actor_2_facebook_likes                                                     194
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2933, dtype: object
color                                                                    Color
director_name                                                    Terry Gilliam
num_critic_for_reviews                                                     139
duration                                                                   103
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     504
actor_2_name                                                     Michael Palin
actor_1_facebook_likes                                                     629
gross                                                              4.23656e+07
genres                                         Adventure|Comedy|Fantasy|Sci-Fi
actor_1_name                                                    Shelley Duvall
movie_title                                                      Time Bandits 
num_voted_users                                                          45890
cast_total_facebook_likes                                                 2730
actor_3_name                                                       Kenny Baker
facenumber_in_poster                                                         0
plot_keywords                   cult director|dwarf|robin hood|satire|treasure
movie_imdb_link              http://www.imdb.com/title/tt0081633/?ref_=fn_t...
num_user_for_reviews                                                       177
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                   5e+06
title_year                                                                1981
actor_2_facebook_likes                                                     561
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2934, dtype: object
color                                                                    Color
director_name                                                      Tamra Davis
num_critic_for_reviews                                                     111
duration                                                                    93
director_facebook_likes                                                     33
actor_3_facebook_likes                                                     135
actor_2_name                                                 Katherine Boecher
actor_1_facebook_likes                                                    1000
gross                                                              3.71887e+07
genres                                                            Comedy|Drama
actor_1_name                                                    Britney Spears
movie_title                                                        Crossroads 
num_voted_users                                                          34219
cast_total_facebook_likes                                                 1531
actor_3_name                                                        Dave Allen
facenumber_in_poster                                                         1
plot_keywords                audition|friendship|graduation|high school gra...
movie_imdb_link              http://www.imdb.com/title/tt0275022/?ref_=fn_t...
num_user_for_reviews                                                       578
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2002
actor_2_facebook_likes                                                     188
imdb_score                                                                 3.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2935, dtype: object
color                                                                    Color
director_name                                                  Nima Nourizadeh
num_critic_for_reviews                                                     229
duration                                                                    93
director_facebook_likes                                                    166
actor_3_facebook_likes                                                     281
actor_2_name                                               Kirby Bliss Blanton
actor_1_facebook_likes                                                     971
gross                                                              5.47243e+07
genres                                                            Comedy|Crime
actor_1_name                                                         Dax Flame
movie_title                                                         Project X 
num_voted_users                                                         157051
cast_total_facebook_likes                                                 2043
actor_3_name                                                     Oliver Cooper
facenumber_in_poster                                                         0
plot_keywords                birthday party|high school|high school senior|...
movie_imdb_link              http://www.imdb.com/title/tt1636826/?ref_=fn_t...
num_user_for_reviews                                                       261
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2012
actor_2_facebook_likes                                                     329
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     29000
Name: 2936, dtype: object
color                                                                    Color
director_name                                            Franklin J. Schaffner
num_critic_for_reviews                                                     112
duration                                                                   172
director_facebook_likes                                                     76
actor_3_facebook_likes                                                      78
actor_2_name                                                       Karl Malden
actor_1_facebook_likes                                                     654
gross                                                                      NaN
genres                                                     Biography|Drama|War
actor_1_name                                                   George C. Scott
movie_title                                                            Patton 
num_voted_users                                                          76398
cast_total_facebook_likes                                                 1306
actor_3_name                                                      Bill Hickman
facenumber_in_poster                                                         0
plot_keywords                         allies|dead soldier|destiny|general|tank
movie_imdb_link              http://www.imdb.com/title/tt0066206/?ref_=fn_t...
num_user_for_reviews                                                       258
language                                                               English
country                                                                    USA
content_rating                                                              GP
budget                                                                 1.2e+07
title_year                                                                1970
actor_2_facebook_likes                                                     416
imdb_score                                                                   8
aspect_ratio                                                               2.2
movie_facebook_likes                                                         0
Name: 2937, dtype: object
color                                                                    Color
director_name                                                     Mark Romanek
num_critic_for_reviews                                                     207
duration                                                                    96
director_facebook_likes                                                    132
actor_3_facebook_likes                                                     933
actor_2_name                                                         Gary Cole
actor_1_facebook_likes                                                   49000
gross                                                              3.15971e+07
genres                                                          Drama|Thriller
actor_1_name                                                    Robin Williams
movie_title                                                    One Hour Photo 
num_voted_users                                                          97938
cast_total_facebook_likes                                                52138
actor_3_name                                                    Connie Nielsen
facenumber_in_poster                                                         0
plot_keywords                 insanity|photo lab|photo shop|photography|voyeur
movie_imdb_link              http://www.imdb.com/title/tt0265459/?ref_=fn_t...
num_user_for_reviews                                                       605
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2002
actor_2_facebook_likes                                                     989
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2938, dtype: object
color                                                                    Color
director_name                                                John Erick Dowdle
num_critic_for_reviews                                                     198
duration                                                                    89
director_facebook_likes                                                     66
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Jay Hernandez
actor_1_facebook_likes                                                  137000
gross                                                              3.16918e+07
genres                                                  Horror|Sci-Fi|Thriller
actor_1_name                                                   Andrew Fiscella
movie_title                                                        Quarantine 
num_voted_users                                                          57446
cast_total_facebook_likes                                               140268
actor_3_name                                                     Dania Ramirez
facenumber_in_poster                                                         0
plot_keywords                apartment building|found footage|television|tr...
movie_imdb_link              http://www.imdb.com/title/tt1082868/?ref_=fn_t...
num_user_for_reviews                                                       369
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2008
actor_2_facebook_likes                                                    1000
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2939, dtype: object
color                                                                    Color
director_name                                                     David Moreau
num_critic_for_reviews                                                     172
duration                                                                    92
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     451
actor_2_name                                                 Alessandro Nivola
actor_1_facebook_likes                                                   17000
gross                                                              3.13975e+07
genres                                                          Horror|Mystery
actor_1_name                                                Chloë Grace Moretz
movie_title                                                           The Eye 
num_voted_users                                                          44130
cast_total_facebook_likes                                                18765
actor_3_name                                                    Obba Babatundé
facenumber_in_poster                                                         1
plot_keywords                cellular memory|eye|eye transplant|seeing dead...
movie_imdb_link              http://www.imdb.com/title/tt0406759/?ref_=fn_t...
num_user_for_reviews                                                       156
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2008
actor_2_facebook_likes                                                     527
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2940, dtype: object
color                                                                    Color
director_name                                               Christopher Erskin
num_critic_for_reviews                                                      45
duration                                                                    97
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     826
actor_2_name                                                 Shannon Elizabeth
actor_1_facebook_likes                                                    1000
gross                                                              3.11795e+07
genres                                                                  Comedy
actor_1_name                                                  Vanessa Williams
movie_title                                           Johnson Family Vacation 
num_voted_users                                                           5928
cast_total_facebook_likes                                                 5006
actor_3_name                                                         Shad Moss
facenumber_in_poster                                                         5
plot_keywords                cross country|cross country trip|highway trave...
movie_imdb_link              http://www.imdb.com/title/tt0359517/?ref_=fn_t...
num_user_for_reviews                                                        49
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2004
actor_2_facebook_likes                                                    1000
imdb_score                                                                 4.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       243
Name: 2941, dtype: object
color                                                                    Color
director_name                                                      Jesse Dylan
num_critic_for_reviews                                                      34
duration                                                                    93
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     722
actor_2_name                                                      Fred Willard
actor_1_facebook_likes                                                     995
gross                                                              3.11554e+07
genres                                                          Comedy|Fantasy
actor_1_name                                                   Hector Elizondo
movie_title                                                          How High 
num_voted_users                                                          42644
cast_total_facebook_likes                                                 6105
actor_3_name                                                        T.J. Thyne
facenumber_in_poster                                                         2
plot_keywords                                  college|drugs|harvard|pot|smoke
movie_imdb_link              http://www.imdb.com/title/tt0278488/?ref_=fn_t...
num_user_for_reviews                                                       102
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2001
actor_2_facebook_likes                                                     729
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2942, dtype: object
color                                                                    Color
director_name                                                     Brian Henson
num_critic_for_reviews                                                      75
duration                                                                    89
director_facebook_likes                                                     53
actor_3_facebook_likes                                                      84
actor_2_name                                                      Jerry Nelson
actor_1_facebook_likes                                                     227
gross                                                              2.72815e+07
genres                                     Comedy|Drama|Family|Fantasy|Musical
actor_1_name                                                 Steven Mackintosh
movie_title                                        The Muppet Christmas Carol 
num_voted_users                                                          33850
cast_total_facebook_likes                                                  534
actor_3_name                                                    Steve Whitmire
facenumber_in_poster                                                         0
plot_keywords                     christmas|christmas eve|miser|muppet|scrooge
movie_imdb_link              http://www.imdb.com/title/tt0104940/?ref_=fn_t...
num_user_for_reviews                                                       147
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 1.2e+07
title_year                                                                1992
actor_2_facebook_likes                                                      94
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2943, dtype: object
color                                                          Black and White
director_name                                                  Martin Campbell
num_critic_for_reviews                                                     400
duration                                                                   144
director_facebook_likes                                                    258
actor_3_facebook_likes                                                     834
actor_2_name                                                    Tobias Menzies
actor_1_facebook_likes                                                    6000
gross                                                              1.67007e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                         Eva Green
movie_title                                                     Casino Royale 
num_voted_users                                                         470501
cast_total_facebook_likes                                                 9125
actor_3_name                                                   Ivana Milicevic
facenumber_in_poster                                                         1
plot_keywords                casino|espionage|free running|james bond|terro...
movie_imdb_link              http://www.imdb.com/title/tt0381061/?ref_=fn_t...
num_user_for_reviews                                                      2301
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.5e+08
title_year                                                                2006
actor_2_facebook_likes                                                    1000
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2944, dtype: object
color                                                          Black and White
director_name                                                     Julie Taymor
num_critic_for_reviews                                                     128
duration                                                                   123
director_facebook_likes                                                    278
actor_3_facebook_likes                                                     898
actor_2_name                                                        Roger Rees
actor_1_facebook_likes                                                    4000
gross                                                              2.57761e+07
genres                                                 Biography|Drama|Romance
actor_1_name                                                       Salma Hayek
movie_title                                                             Frida 
num_voted_users                                                          61651
cast_total_facebook_likes                                                 7072
actor_3_name                                                    Valeria Golino
facenumber_in_poster                                                         0
plot_keywords                         art|bisexual|marriage|pain|revolutionary
movie_imdb_link              http://www.imdb.com/title/tt0120679/?ref_=fn_t...
num_user_for_reviews                                                       271
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2002
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2945, dtype: object
color                                                                    Color
director_name                                                     Dan Cutforth
num_critic_for_reviews                                                      68
duration                                                                    93
director_facebook_likes                                                      4
actor_3_facebook_likes                                                       8
actor_2_name                                               Ashley Ashida Dixon
actor_1_facebook_likes                                                      28
gross                                                               2.5241e+07
genres                                                       Documentary|Music
actor_1_name                                                    Lexie Contursi
movie_title                                            Katy Perry: Part of Me 
num_voted_users                                                          12383
cast_total_facebook_likes                                                   52
actor_3_name                                                   Anthony Burrell
facenumber_in_poster                                                         0
plot_keywords                female protagonist|reference to britney spears...
movie_imdb_link              http://www.imdb.com/title/tt2215719/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+07
title_year                                                                2012
actor_2_facebook_likes                                                       9
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2946, dtype: object
color                                                                    Color
director_name                                                       Josh Boone
num_critic_for_reviews                                                     326
duration                                                                   133
director_facebook_likes                                                    131
actor_3_facebook_likes                                                     733
actor_2_name                                                      Sam Trammell
actor_1_facebook_likes                                                    8000
gross                                                              1.24869e+08
genres                                                           Drama|Romance
actor_1_name                                                  Shailene Woodley
movie_title                                            The Fault in Our Stars 
num_voted_users                                                         249688
cast_total_facebook_likes                                                10565
actor_3_name                                                         Nat Wolff
facenumber_in_poster                                                         0
plot_keywords                 cancer|falling in love|friendship|novel|teenager
movie_imdb_link              http://www.imdb.com/title/tt2582846/?ref_=fn_t...
num_user_for_reviews                                                       548
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2014
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     93000
Name: 2947, dtype: object
color                                                                    Color
director_name                                                        John Dahl
num_critic_for_reviews                                                     128
duration                                                                   121
director_facebook_likes                                                    131
actor_3_facebook_likes                                                     599
actor_2_name                                                     Martin Landau
actor_1_facebook_likes                                                   13000
gross                                                              2.29057e+07
genres                                                             Crime|Drama
actor_1_name                                                        Matt Damon
movie_title                                                          Rounders 
num_voted_users                                                         121676
cast_total_facebook_likes                                                14890
actor_3_name                                                      Gretchen Mol
facenumber_in_poster                                                         2
plot_keywords                breasts|cult film|loan shark|poker|reference t...
movie_imdb_link              http://www.imdb.com/title/tt0128442/?ref_=fn_t...
num_user_for_reviews                                                       290
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                1998
actor_2_facebook_likes                                                     940
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2948, dtype: object
color                                                                    Color
director_name                                                       Chris Rock
num_critic_for_reviews                                                     161
duration                                                                   102
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     555
actor_2_name                                                      Romany Malco
actor_1_facebook_likes                                                    3000
gross                                                              2.52776e+07
genres                                                          Comedy|Romance
actor_1_name                                                    Rosario Dawson
movie_title                                                          Top Five 
num_voted_users                                                          21672
cast_total_facebook_likes                                                 5592
actor_3_name                                                       J.B. Smoove
facenumber_in_poster                                                        10
plot_keywords                bare breasts|celebrity|in medias res|reference...
movie_imdb_link              http://www.imdb.com/title/tt2784678/?ref_=fn_t...
num_user_for_reviews                                                        93
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2014
actor_2_facebook_likes                                                     966
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2949, dtype: object
color                                                                    Color
director_name                                               John Frankenheimer
num_critic_for_reviews                                                      70
duration                                                                   102
director_facebook_likes                                                    287
actor_3_facebook_likes                                                      79
actor_2_name                                                    Richard Dysart
actor_1_facebook_likes                                                     452
gross                                                                      NaN
genres                                                           Horror|Sci-Fi
actor_1_name                                                       Talia Shire
movie_title                                                          Prophecy 
num_voted_users                                                           3000
cast_total_facebook_likes                                                  729
actor_3_name                                                   Robert Foxworth
facenumber_in_poster                                                         1
plot_keywords                 cabin|monster|monster movie|paper mill|pollution
movie_imdb_link              http://www.imdb.com/title/tt0079758/?ref_=fn_t...
num_user_for_reviews                                                        75
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+07
title_year                                                                1979
actor_2_facebook_likes                                                     122
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       902
Name: 2950, dtype: object
color                                                                    Color
director_name                                                      David Koepp
num_critic_for_reviews                                                     164
duration                                                                    99
director_facebook_likes                                                    192
actor_3_facebook_likes                                                     282
actor_2_name                                                      Kathryn Erbe
actor_1_facebook_likes                                                     347
gross                                                              2.11331e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                   Illeana Douglas
movie_title                                                    Stir of Echoes 
num_voted_users                                                          62468
cast_total_facebook_likes                                                 1254
actor_3_name                                                       Lusia Strus
facenumber_in_poster                                                         0
plot_keywords                disappearance|hearing voices|hypnosis|post hyp...
movie_imdb_link              http://www.imdb.com/title/tt0164181/?ref_=fn_t...
num_user_for_reviews                                                       374
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                1999
actor_2_facebook_likes                                                     301
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2951, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      68
duration                                                                    55
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     898
actor_2_name                                                     Kelvin Taylor
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                Action|Adventure|Biography|Drama|History
actor_1_name                                                      Peter Mensah
movie_title                          Spartacus: War of the Damned             
num_voted_users                                                         173172
cast_total_facebook_likes                                                 6091
actor_3_name                                                       Viva Bianca
facenumber_in_poster                                                         2
plot_keywords                female frontal nudity|female full frontal nudi...
movie_imdb_link              http://www.imdb.com/title/tt1442449/?ref_=fn_t...
num_user_for_reviews                                                       302
language                                                               English
country                                                                    USA
content_rating                                                           TV-MA
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     939
imdb_score                                                                 8.6
aspect_ratio                                                                16
movie_facebook_likes                                                     31000
Name: 2952, dtype: object
color                                                                    Color
director_name                                                   Stephen Frears
num_critic_for_reviews                                                     354
duration                                                                    98
director_facebook_likes                                                    350
actor_3_facebook_likes                                                     322
actor_2_name                                                   Mare Winningham
actor_1_facebook_likes                                                    1000
gross                                                              3.77077e+07
genres                                                         Biography|Drama
actor_1_name                                                      Steve Coogan
movie_title                                                         Philomena 
num_voted_users                                                          76094
cast_total_facebook_likes                                                 2376
actor_3_name                                                     Peter Hermann
facenumber_in_poster                                                         2
plot_keywords                catholic|convent|gay love|gay relationship|iri...
movie_imdb_link              http://www.imdb.com/title/tt2431286/?ref_=fn_t...
num_user_for_reviews                                                       233
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2013
actor_2_facebook_likes                                                     482
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     37000
Name: 2953, dtype: object
color                                                                    Color
director_name                                                      Mike Binder
num_critic_for_reviews                                                     125
duration                                                                   118
director_facebook_likes                                                     57
actor_3_facebook_likes                                                     805
actor_2_name                                                 Erika Christensen
actor_1_facebook_likes                                                     975
gross                                                               1.8762e+07
genres                                                            Comedy|Drama
actor_1_name                                                       Alicia Witt
movie_title                                               The Upside of Anger 
num_voted_users                                                          19007
cast_total_facebook_likes                                                 2944
actor_3_name                                                        Joan Allen
facenumber_in_poster                                                         1
plot_keywords                          anger|baseball|drinking|radio|secretary
movie_imdb_link              http://www.imdb.com/title/tt0365885/?ref_=fn_t...
num_user_for_reviews                                                       219
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2005
actor_2_facebook_likes                                                     931
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       549
Name: 2954, dtype: object
color                                                                    Color
director_name                                            Franklin J. Schaffner
num_critic_for_reviews                                                      55
duration                                                                   125
director_facebook_likes                                                     76
actor_3_facebook_likes                                                     801
actor_2_name                                                        Anne Meara
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                          Drama|Thriller
actor_1_name                                                  Laurence Olivier
movie_title                                              The Boys from Brazil 
num_voted_users                                                          20660
cast_total_facebook_likes                                                 4659
actor_3_name                                                  Steve Guttenberg
facenumber_in_poster                                                         3
plot_keywords                              1970s|jew|nazi|nazi hunter|paraguay
movie_imdb_link              http://www.imdb.com/title/tt0077269/?ref_=fn_t...
num_user_for_reviews                                                       123
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                1978
actor_2_facebook_likes                                                     837
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2955, dtype: object
color                                                                    Color
director_name                                        Elizabeth Allen Rosenbaum
num_critic_for_reviews                                                      66
duration                                                                   104
director_facebook_likes                                                     20
actor_3_facebook_likes                                                     717
actor_2_name                                            Joanna 'JoJo' Levesque
actor_1_facebook_likes                                                     836
gross                                                              1.85957e+07
genres                                           Comedy|Family|Fantasy|Romance
actor_1_name                                                     Tammin Sursok
movie_title                                                        Aquamarine 
num_voted_users                                                          30462
cast_total_facebook_likes                                                 3963
actor_3_name                                                    Dichen Lachman
facenumber_in_poster                                                         3
plot_keywords                                beach|love|mermaid|storm|swimming
movie_imdb_link              http://www.imdb.com/title/tt0429591/?ref_=fn_t...
num_user_for_reviews                                                       150
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+07
title_year                                                                2006
actor_2_facebook_likes                                                     826
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2956, dtype: object
color                                                                    Color
director_name                                                    Jake Schreier
num_critic_for_reviews                                                     191
duration                                                                   109
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     376
actor_2_name                                                   Cara Delevingne
actor_1_facebook_likes                                                     733
gross                                                              3.19901e+07
genres                                                   Drama|Mystery|Romance
actor_1_name                                                         Nat Wolff
movie_title                                                       Paper Towns 
num_voted_users                                                          63390
cast_total_facebook_likes                                                 2753
actor_3_name                                                       Meg Crosbie
facenumber_in_poster                                                         2
plot_keywords                based on novel|female neighbor|friendship|trav...
movie_imdb_link              http://www.imdb.com/title/tt3622592/?ref_=fn_t...
num_user_for_reviews                                                       160
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2015
actor_2_facebook_likes                                                     558
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2957, dtype: object
color                                                                    Color
director_name                                                     Cheryl Dunye
num_critic_for_reviews                                                      33
duration                                                                    86
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     581
actor_2_name                                                   Marsha Thomason
actor_1_facebook_likes                                                     873
gross                                                              1.73216e+07
genres                                                                  Comedy
actor_1_name                                                 Michael Imperioli
movie_title                                                   My Baby's Daddy 
num_voted_users                                                           3119
cast_total_facebook_likes                                                 3646
actor_3_name                                                          Bai Ling
facenumber_in_poster                                                         5
plot_keywords                animal costume|break up|fatherhood|rapper|talk...
movie_imdb_link              http://www.imdb.com/title/tt0332712/?ref_=fn_t...
num_user_for_reviews                                                        18
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2004
actor_2_facebook_likes                                                     691
imdb_score                                                                 4.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       151
Name: 2958, dtype: object
color                                                          Black and White
director_name                                                  Alexander Payne
num_critic_for_reviews                                                     433
duration                                                                   115
director_facebook_likes                                                    729
actor_3_facebook_likes                                                     622
actor_2_name                                                        Bruce Dern
actor_1_facebook_likes                                                    1000
gross                                                              1.76135e+07
genres                                                  Adventure|Comedy|Drama
actor_1_name                                                      Devin Ratray
movie_title                                                          Nebraska 
num_voted_users                                                          91082
cast_total_facebook_likes                                                 3798
actor_3_name                                                        Will Forte
facenumber_in_poster                                                         0
plot_keywords                aging|billings montana|lincoln nebraska|nebras...
movie_imdb_link              http://www.imdb.com/title/tt1821549/?ref_=fn_t...
num_user_for_reviews                                                       274
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2013
actor_2_facebook_likes                                                     844
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     28000
Name: 2959, dtype: object
color                                                                    Color
director_name                                              Ernest R. Dickerson
num_critic_for_reviews                                                      66
duration                                                                    92
director_facebook_likes                                                    226
actor_3_facebook_likes                                                     580
actor_2_name                                                Jada Pinkett Smith
actor_1_facebook_likes                                                    1000
gross                                                              2.10886e+07
genres                                          Action|Fantasy|Horror|Thriller
actor_1_name                                                       CCH Pounder
movie_title                                Tales from the Crypt: Demon Knight 
num_voted_users                                                          16646
cast_total_facebook_likes                                                 3931
actor_3_name                                                       Gary Farmer
facenumber_in_poster                                                         1
plot_keywords                         blood|blood of christ|demon|key|loud sex
movie_imdb_link              http://www.imdb.com/title/tt0114608/?ref_=fn_t...
num_user_for_reviews                                                       104
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1995
actor_2_facebook_likes                                                     851
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2960, dtype: object
color                                                                    Color
director_name                                                         Tim Hill
num_critic_for_reviews                                                      37
duration                                                                    91
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     611
actor_2_name                                                    Amber Valletta
actor_1_facebook_likes                                                     833
gross                                                              1.72924e+07
genres                                                     Comedy|Crime|Family
actor_1_name                                                       Noel Fisher
movie_title                                             Max Keeble's Big Move 
num_voted_users                                                           5794
cast_total_facebook_likes                                                 4551
actor_3_name                                                      Larry Miller
facenumber_in_poster                                                         0
plot_keywords                            bully|moving|principal|revenge|school
movie_imdb_link              http://www.imdb.com/title/tt0273799/?ref_=fn_t...
num_user_for_reviews                                                        69
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+07
title_year                                                                2001
actor_2_facebook_likes                                                     626
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       371
Name: 2961, dtype: object
color                                                                    Color
director_name                                                    Jason Reitman
num_critic_for_reviews                                                     325
duration                                                                    94
director_facebook_likes                                                    655
actor_3_facebook_likes                                                     390
actor_2_name                                                     Patton Oswalt
actor_1_facebook_likes                                                    9000
gross                                                              1.63003e+07
genres                                                            Comedy|Drama
actor_1_name                                                   Charlize Theron
movie_title                                                       Young Adult 
num_voted_users                                                          64682
cast_total_facebook_likes                                                10575
actor_3_name                                                    Collette Wolfe
facenumber_in_poster                                                         1
plot_keywords                car damage|computer printer|female band|finger...
movie_imdb_link              http://www.imdb.com/title/tt1625346/?ref_=fn_t...
num_user_for_reviews                                                       203
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2011
actor_2_facebook_likes                                                     786
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2962, dtype: object
color                                                                    Color
director_name                                                   Mark Neveldine
num_critic_for_reviews                                                     170
duration                                                                    93
director_facebook_likes                                                     83
actor_3_facebook_likes                                                     501
actor_2_name                                                       Edi Gathegi
actor_1_facebook_likes                                                   26000
gross                                                              2.78299e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                     Jason Statham
movie_title                                                             Crank 
num_voted_users                                                         196422
cast_total_facebook_likes                                                28767
actor_3_name                                               Jose Pablo Cantillo
facenumber_in_poster                                                         1
plot_keywords                           assassin|cult film|doctor|heart|poison
movie_imdb_link              http://www.imdb.com/title/tt0479884/?ref_=fn_t...
num_user_for_reviews                                                       444
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2006
actor_2_facebook_likes                                                     725
imdb_score                                                                   7
aspect_ratio                                                              1.78
movie_facebook_likes                                                         0
Name: 2963, dtype: object
color                                                                    Color
director_name                                                 Lionel C. Martin
num_critic_for_reviews                                                      11
duration                                                                    93
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     324
actor_2_name                                                 Gilbert Gottfried
actor_1_facebook_likes                                                    1000
gross                                                              1.39602e+07
genres                                                                  Comedy
actor_1_name                                                        Bernie Mac
movie_title                                                How to Be a Player 
num_voted_users                                                           2301
cast_total_facebook_likes                                                 2939
actor_3_name                                                     Lark Voorhies
facenumber_in_poster                                                         2
plot_keywords                breaking the fourth wall|doorman|friend|party|sex
movie_imdb_link              http://www.imdb.com/title/tt0119326/?ref_=fn_t...
num_user_for_reviews                                                        15
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1997
actor_2_facebook_likes                                                     560
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       439
Name: 2964, dtype: object
color                                                                    Color
director_name                                              Richard LaGravenese
num_critic_for_reviews                                                      24
duration                                                                   100
director_facebook_likes                                                     98
actor_3_facebook_likes                                                     604
actor_2_name                                                     Eddie Cibrian
actor_1_facebook_likes                                                    1000
gross                                                              1.29028e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Holly Hunter
movie_title                                                   Living Out Loud 
num_voted_users                                                           4052
cast_total_facebook_likes                                                 3250
actor_3_name                                                 Jenette Goldstein
facenumber_in_poster                                                         1
plot_keywords                brooklyn bridge|divorce|female protagonist|fem...
movie_imdb_link              http://www.imdb.com/title/tt0120722/?ref_=fn_t...
num_user_for_reviews                                                        88
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                1998
actor_2_facebook_likes                                                     849
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       242
Name: 2965, dtype: object
color                                                                    Color
director_name                                                      Sanaa Hamri
num_critic_for_reviews                                                      70
duration                                                                   100
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     696
actor_2_name                                                        Laz Alonso
actor_1_facebook_likes                                                     988
gross                                                              2.15207e+07
genres                                                    Comedy|Romance|Sport
actor_1_name                                                            Common
movie_title                                                       Just Wright 
num_voted_users                                                          10103
cast_total_facebook_likes                                                 3906
actor_3_name                                                     Mehcad Brooks
facenumber_in_poster                                                         1
plot_keywords                basketball|basketball player|nba|physical ther...
movie_imdb_link              http://www.imdb.com/title/tt1407061/?ref_=fn_t...
num_user_for_reviews                                                        36
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                     826
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2966, dtype: object
color                                                                    Color
director_name                                                   Jonathan Demme
num_critic_for_reviews                                                     232
duration                                                                   113
director_facebook_likes                                                    438
actor_3_facebook_likes                                                     471
actor_2_name                                                  Rosemarie DeWitt
actor_1_facebook_likes                                                   11000
gross                                                              1.27963e+07
genres                                                           Drama|Romance
actor_1_name                                                     Anne Hathaway
movie_title                                            Rachel Getting Married 
num_voted_users                                                          41226
cast_total_facebook_likes                                                12274
actor_3_name                                                        Bill Irwin
facenumber_in_poster                                                         1
plot_keywords                12 step program|friend|maid of honor|tears|wed...
movie_imdb_link              http://www.imdb.com/title/tt1084950/?ref_=fn_t...
num_user_for_reviews                                                       281
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2008
actor_2_facebook_likes                                                     536
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2967, dtype: object
color                                                                    Color
director_name                                                     Bob Rafelson
num_critic_for_reviews                                                      34
duration                                                                   122
director_facebook_likes                                                     30
actor_3_facebook_likes                                                      85
actor_2_name                                                    Michael Lerner
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                            Crime|Drama|Romance|Thriller
actor_1_name                                                   Anjelica Huston
movie_title                                    The Postman Always Rings Twice 
num_voted_users                                                          16764
cast_total_facebook_likes                                                 1456
actor_3_name                                                      John Colicos
facenumber_in_poster                                                         0
plot_keywords                     adultery|drifter|lunch wagon|murder|neo noir
movie_imdb_link              http://www.imdb.com/title/tt0082934/?ref_=fn_t...
num_user_for_reviews                                                        48
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                1981
actor_2_facebook_likes                                                     230
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 2968, dtype: object
color                                                                    Color
director_name                                                     Peter Webber
num_critic_for_reviews                                                     160
duration                                                                   100
director_facebook_likes                                                     73
actor_3_facebook_likes                                                    1000
actor_2_name                                                       Colin Firth
actor_1_facebook_likes                                                   19000
gross                                                              1.16344e+07
genres                                                 Biography|Drama|Romance
actor_1_name                                                Scarlett Johansson
movie_title                                         Girl with a Pearl Earring 
num_voted_users                                                          60171
cast_total_facebook_likes                                                34700
actor_3_name                                                     Tom Wilkinson
facenumber_in_poster                                                         0
plot_keywords                          17th century|girl|maid|painter|painting
movie_imdb_link              http://www.imdb.com/title/tt0335119/?ref_=fn_t...
num_user_for_reviews                                                       296
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2003
actor_2_facebook_likes                                                   14000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2969, dtype: object
color                                                                    Color
director_name                                                Wolfgang Petersen
num_critic_for_reviews                                                      96
duration                                                                   293
director_facebook_likes                                                    249
actor_3_facebook_likes                                                      18
actor_2_name                                                Martin Semmelrogge
actor_1_facebook_likes                                                     362
gross                                                              1.14331e+07
genres                                            Adventure|Drama|Thriller|War
actor_1_name                                                   Jürgen Prochnow
movie_title                                                          Das Boot 
num_voted_users                                                         168203
cast_total_facebook_likes                                                  469
actor_3_name                                                Herbert Grönemeyer
facenumber_in_poster                                                         0
plot_keywords                    duty|submarine|submarine movie|tension|u boat
movie_imdb_link              http://www.imdb.com/title/tt0082096/?ref_=fn_t...
num_user_for_reviews                                                       426
language                                                                German
country                                                           West Germany
content_rating                                                               R
budget                                                                 1.4e+07
title_year                                                                1981
actor_2_facebook_likes                                                      21
imdb_score                                                                 8.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 2970, dtype: object
color                                                                    Color
director_name                                                 John Lee Hancock
num_critic_for_reviews                                                     106
duration                                                                   137
director_facebook_likes                                                    102
actor_3_facebook_likes                                                     877
actor_2_name                                                       Marc Blucas
actor_1_facebook_likes                                                    2000
gross                                                              2.24064e+07
genres                                               Drama|History|War|Western
actor_1_name                                                      Dennis Quaid
movie_title                                                         The Alamo 
num_voted_users                                                          16832
cast_total_facebook_likes                                                 5780
actor_3_name                                                       Jordi Mollà
facenumber_in_poster                                                         0
plot_keywords                                army|dictator|general|texan|texas
movie_imdb_link              http://www.imdb.com/title/tt0318974/?ref_=fn_t...
num_user_for_reviews                                                       267
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.07e+08
title_year                                                                2004
actor_2_facebook_likes                                                     973
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       701
Name: 2971, dtype: object
color                                                                    Color
director_name                                               Wallace Wolodarsky
num_critic_for_reviews                                                      53
duration                                                                    93
director_facebook_likes                                                     32
actor_3_facebook_likes                                                     503
actor_2_name                                                      Barry Watson
actor_1_facebook_likes                                                     529
gross                                                              1.01988e+07
genres                                                                  Comedy
actor_1_name                                                 Heather Matarazzo
movie_title                                                     Sorority Boys 
num_voted_users                                                          12007
cast_total_facebook_likes                                                 2393
actor_3_name                                                  Harland Williams
facenumber_in_poster                                                         3
plot_keywords                  college|cruise|drag|female armpit hair|sorority
movie_imdb_link              http://www.imdb.com/title/tt0279781/?ref_=fn_t...
num_user_for_reviews                                                       105
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2002
actor_2_facebook_likes                                                     526
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       507
Name: 2972, dtype: object
color                                                                    Color
director_name                                                   Richard Curtis
num_critic_for_reviews                                                     274
duration                                                                   123
director_facebook_likes                                                    628
actor_3_facebook_likes                                                     171
actor_2_name                                                     Tom Hollander
actor_1_facebook_likes                                                     565
gross                                                              1.52946e+07
genres                                                   Drama|Fantasy|Romance
actor_1_name                                                        Tom Hughes
movie_title                                                        About Time 
num_voted_users                                                         202341
cast_total_facebook_likes                                                 1595
actor_3_name                                                    Lindsay Duncan
facenumber_in_poster                                                         1
plot_keywords                boyfriend girlfriend relationship|lingerie sli...
movie_imdb_link              http://www.imdb.com/title/tt2194499/?ref_=fn_t...
num_user_for_reviews                                                       391
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2013
actor_2_facebook_likes                                                     555
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                    105000
Name: 2973, dtype: object
color                                                                    Color
director_name                                                      Yimou Zhang
num_critic_for_reviews                                                     248
duration                                                                   119
director_facebook_likes                                                    611
actor_3_facebook_likes                                                       4
actor_2_name                                                          Andy Lau
actor_1_facebook_likes                                                     755
gross                                                              1.10412e+07
genres                                          Action|Adventure|Drama|Romance
actor_1_name                                                 Takeshi Kaneshiro
movie_title                                           House of Flying Daggers 
num_voted_users                                                          92295
cast_total_facebook_likes                                                 1244
actor_3_name                                                   Zhengyong Zhang
facenumber_in_poster                                                         3
plot_keywords                    flying|flying dagger|government|police|secret
movie_imdb_link              http://www.imdb.com/title/tt0385004/?ref_=fn_t...
num_user_for_reviews                                                       420
language                                                              Mandarin
country                                                                  China
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2004
actor_2_facebook_likes                                                     483
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2974, dtype: object
color                                                                    Color
director_name                                                 Nicholas Jarecki
num_critic_for_reviews                                                     288
duration                                                                   107
director_facebook_likes                                                     27
actor_3_facebook_likes                                                     360
actor_2_name                                                      Curtiss Cook
actor_1_facebook_likes                                                     664
gross                                                              7.91828e+06
genres                                                          Drama|Thriller
actor_1_name                                                       Nate Parker
movie_title                                                         Arbitrage 
num_voted_users                                                          41574
cast_total_facebook_likes                                                 2440
actor_3_name                                                     Reg E. Cathey
facenumber_in_poster                                                         1
plot_keywords                accidental death|dead woman|dead woman with ey...
movie_imdb_link              http://www.imdb.com/title/tt1764183/?ref_=fn_t...
num_user_for_reviews                                                       145
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2012
actor_2_facebook_likes                                                     591
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2975, dtype: object
color                                                                    Color
director_name                                                   Dean Israelite
num_critic_for_reviews                                                     177
duration                                                                   106
director_facebook_likes                                                     16
actor_3_facebook_likes                                                     265
actor_2_name                                                      Jonny Weston
actor_1_facebook_likes                                                     452
gross                                                               2.2331e+07
genres                                                         Sci-Fi|Thriller
actor_1_name                                                        Gary Weeks
movie_title                                                   Project Almanac 
num_voted_users                                                          57349
cast_total_facebook_likes                                                 1819
actor_3_name                                                Sofia Black-D'Elia
facenumber_in_poster                                                         0
plot_keywords                found footage|teenager|time machine|time trave...
movie_imdb_link              http://www.imdb.com/title/tt2436386/?ref_=fn_t...
num_user_for_reviews                                                       177
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2015
actor_2_facebook_likes                                                     328
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2976, dtype: object
color                                                                    Color
director_name                                                   Darnell Martin
num_critic_for_reviews                                                      81
duration                                                                   109
director_facebook_likes                                                     67
actor_3_facebook_likes                                                     192
actor_2_name                                                     Veronika Dash
actor_1_facebook_likes                                                     436
gross                                                              8.13422e+06
genres                                                   Biography|Drama|Music
actor_1_name                                            Cedric the Entertainer
movie_title                                                  Cadillac Records 
num_voted_users                                                          15412
cast_total_facebook_likes                                                 1141
actor_3_name                                                   Tammy Blanchard
facenumber_in_poster                                                         3
plot_keywords                1950s|jazz|jazz music|sex|title directed by fe...
movie_imdb_link              http://www.imdb.com/title/tt1042877/?ref_=fn_t...
num_user_for_reviews                                                        90
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2008
actor_2_facebook_likes                                                     223
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2977, dtype: object
color                                                                    Color
director_name                                                  Scott Alexander
num_critic_for_reviews                                                      29
duration                                                                    81
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     654
actor_2_name                                                    Dave Chappelle
actor_1_facebook_likes                                                     931
gross                                                              6.98268e+06
genres                                                            Comedy|Crime
actor_1_name                                                   Sarah Silverman
movie_title                                                           Screwed 
num_voted_users                                                           6965
cast_total_facebook_likes                                                 3848
actor_3_name                                                   Sherman Hemsley
facenumber_in_poster                                                         0
plot_keywords                chauffeur|disorganized crime|dog|ransom|slapstick
movie_imdb_link              http://www.imdb.com/title/tt0156323/?ref_=fn_t...
num_user_for_reviews                                                        69
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2000
actor_2_facebook_likes                                                     744
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       262
Name: 2978, dtype: object
color                                                                    Color
director_name                                                    Stuart Gordon
num_critic_for_reviews                                                      58
duration                                                                    95
director_facebook_likes                                                    216
actor_3_facebook_likes                                                     968
actor_2_name                                                    Kurtwood Smith
actor_1_facebook_likes                                                    1000
gross                                                              6.73914e+06
genres                                            Action|Crime|Sci-Fi|Thriller
actor_1_name                                               Christopher Lambert
movie_title                                                          Fortress 
num_voted_users                                                          23383
cast_total_facebook_likes                                                 4755
actor_3_name                                               Clifton Collins Jr.
facenumber_in_poster                                                         0
plot_keywords                 escape|future|population control|prison|prisoner
movie_imdb_link              http://www.imdb.com/title/tt0106950/?ref_=fn_t...
num_user_for_reviews                                                        68
language                                                               English
country                                                              Australia
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1992
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 2979, dtype: object
color                                                                    Color
director_name                                                Christopher Guest
num_critic_for_reviews                                                     144
duration                                                                    86
director_facebook_likes                                                    378
actor_3_facebook_likes                                                     783
actor_2_name                                                  Catherine O'Hara
actor_1_facebook_likes                                                     957
gross                                                              5.54202e+06
genres                                                                  Comedy
actor_1_name                                              John Michael Higgins
movie_title                                            For Your Consideration 
num_voted_users                                                          12197
cast_total_facebook_likes                                                 3535
actor_3_name                                                     Ed Begley Jr.
facenumber_in_poster                                                         0
plot_keywords                           actor|internet|make up|publicist|purim
movie_imdb_link              http://www.imdb.com/title/tt0470765/?ref_=fn_t...
num_user_for_reviews                                                       150
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2006
actor_2_facebook_likes                                                     925
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       650
Name: 2980, dtype: object
color                                                          Black and White
director_name                                                      Woody Allen
num_critic_for_reviews                                                     114
duration                                                                   113
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                      99
actor_2_name                                                  Aleksa Palladino
actor_1_facebook_likes                                                     537
gross                                                               5.0325e+06
genres                                                            Comedy|Drama
actor_1_name                                                  Melanie Griffith
movie_title                                                         Celebrity 
num_voted_users                                                          20576
cast_total_facebook_likes                                                  943
actor_3_name                                                      Greg Mottola
facenumber_in_poster                                                         0
plot_keywords                celebrity|journalist|lesbian kiss|strong femal...
movie_imdb_link              http://www.imdb.com/title/tt0120533/?ref_=fn_t...
num_user_for_reviews                                                       161
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                1998
actor_2_facebook_likes                                                     255
imdb_score                                                                 6.3
aspect_ratio                                                              1.66
movie_facebook_likes                                                       652
Name: 2981, dtype: object
color                                                                    Color
director_name                                                      Ryan Murphy
num_critic_for_reviews                                                     132
duration                                                                   122
director_facebook_likes                                                    708
actor_3_facebook_likes                                                     316
actor_2_name                                                      Joseph Cross
actor_1_facebook_likes                                                     433
gross                                                               6.7549e+06
genres                                                            Comedy|Drama
actor_1_name                                                    Jill Clayburgh
movie_title                                             Running with Scissors 
num_voted_users                                                          20000
cast_total_facebook_likes                                                 1291
actor_3_name                                                 Dagmara Dominczyk
facenumber_in_poster                                                         0
plot_keywords                          alcoholic|fame|therapist|writer|writing
movie_imdb_link              http://www.imdb.com/title/tt0439289/?ref_=fn_t...
num_user_for_reviews                                                       188
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2006
actor_2_facebook_likes                                                     398
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2982, dtype: object
color                                                                    Color
director_name                                                    Robert Iscove
num_critic_for_reviews                                                      60
duration                                                                    90
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     251
actor_2_name                                                    Kelly Clarkson
actor_1_facebook_likes                                                     525
gross                                                              4.92217e+06
genres                                                  Comedy|Musical|Romance
actor_1_name                                                   Anika Noni Rose
movie_title                                              From Justin to Kelly 
num_voted_users                                                          23606
cast_total_facebook_likes                                                 1445
actor_3_name                                                     Brian Dietzen
facenumber_in_poster                                                         2
plot_keywords                           bar|florida|love|spring break|waitress
movie_imdb_link              http://www.imdb.com/title/tt0339034/?ref_=fn_t...
num_user_for_reviews                                                       304
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+07
title_year                                                                2003
actor_2_facebook_likes                                                     281
imdb_score                                                                 2.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2983, dtype: object
color                                                                    Color
director_name                                                        Spike Lee
num_critic_for_reviews                                                      30
duration                                                                   108
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     599
actor_2_name                                                        Debi Mazar
actor_1_facebook_likes                                                     873
gross                                                                4.903e+06
genres                                                            Comedy|Drama
actor_1_name                                                 Michael Imperioli
movie_title                                                            Girl 6 
num_voted_users                                                           4961
cast_total_facebook_likes                                                 4497
actor_3_name                                                      Gretchen Mol
facenumber_in_poster                                                         3
plot_keywords                actress|neighbor|phone sex|queens new york cit...
movie_imdb_link              http://www.imdb.com/title/tt0116414/?ref_=fn_t...
num_user_for_reviews                                                        33
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                1996
actor_2_facebook_likes                                                     680
imdb_score                                                                   5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       251
Name: 2984, dtype: object
color                                                                    Color
director_name                                                     Jane Campion
num_critic_for_reviews                                                     138
duration                                                                   113
director_facebook_likes                                                    319
actor_3_facebook_likes                                                      48
actor_2_name                                                       Nick Damici
actor_1_facebook_likes                                                    1000
gross                                                              4.71746e+06
genres                                                        Mystery|Thriller
actor_1_name                                              Jennifer Jason Leigh
movie_title                                                        In the Cut 
num_voted_users                                                          18632
cast_total_facebook_likes                                                 1171
actor_3_name                                                     Susan Gardner
facenumber_in_poster                                                         0
plot_keywords                blow job|female rear nudity|female removes her...
movie_imdb_link              http://www.imdb.com/title/tt0199626/?ref_=fn_t...
num_user_for_reviews                                                       354
language                                                               English
country                                                              Australia
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2003
actor_2_facebook_likes                                                      65
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       656
Name: 2985, dtype: object
color                                                                    Color
director_name                                                       James Gray
num_critic_for_reviews                                                     190
duration                                                                   110
director_facebook_likes                                                    115
actor_3_facebook_likes                                                     103
actor_2_name                                                      Vinessa Shaw
actor_1_facebook_likes                                                     812
gross                                                              3.14848e+06
genres                                                           Drama|Romance
actor_1_name                                               Isabella Rossellini
movie_title                                                        Two Lovers 
num_voted_users                                                          29613
cast_total_facebook_likes                                                 1540
actor_3_name                                                    Samantha Ivers
facenumber_in_poster                                                         0
plot_keywords                      jewish|love|married man|neighbor|photograph
movie_imdb_link              http://www.imdb.com/title/tt1103275/?ref_=fn_t...
num_user_for_reviews                                                        98
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2008
actor_2_facebook_likes                                                     580
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2986, dtype: object
color                                                                    Color
director_name                                                    Fred Schepisi
num_critic_for_reviews                                                      61
duration                                                                   109
director_facebook_likes                                                     40
actor_3_facebook_likes                                                     794
actor_2_name                                                      Ray Winstone
actor_1_facebook_likes                                                    5000
gross                                                              2.32641e+06
genres                                                                   Drama
actor_1_name                                                       Bob Hoskins
movie_title                                                       Last Orders 
num_voted_users                                                           5016
cast_total_facebook_likes                                                 7166
actor_3_name                                                          JJ Feild
facenumber_in_poster                                                         5
plot_keywords                           ashes|butcher|friend|friendship|memory
movie_imdb_link              http://www.imdb.com/title/tt0253200/?ref_=fn_t...
num_user_for_reviews                                                        99
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2001
actor_2_facebook_likes                                                    1000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       305
Name: 2987, dtype: object
color                                                                    Color
director_name                                                     Joon-ho Bong
num_critic_for_reviews                                                     363
duration                                                                   110
director_facebook_likes                                                    584
actor_3_facebook_likes                                                      74
actor_2_name                                                      Kang-ho Song
actor_1_facebook_likes                                                     629
gross                                                              2.20141e+06
genres                                              Comedy|Drama|Horror|Sci-Fi
actor_1_name                                                         Doona Bae
movie_title                                                          The Host 
num_voted_users                                                          68883
cast_total_facebook_likes                                                 1173
actor_3_name                                                        Ah-sung Ko
facenumber_in_poster                                                         0
plot_keywords                           daughter|han river|monster|river|seoul
movie_imdb_link              http://www.imdb.com/title/tt0468492/?ref_=fn_t...
num_user_for_reviews                                                       279
language                                                                Korean
country                                                            South Korea
content_rating                                                               R
budget                                                             1.22155e+10
title_year                                                                2006
actor_2_facebook_likes                                                     398
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                      7000
Name: 2988, dtype: object
color                                                                    Color
director_name                                               Roger Spottiswoode
num_critic_for_reviews                                                       2
duration                                                                   100
director_facebook_likes                                                     55
actor_3_facebook_likes                                                     212
actor_2_name                                                    Treat Williams
actor_1_facebook_likes                                                    3000
gross                                                                      NaN
genres                                                Adventure|Crime|Thriller
actor_1_name                                                     Robert Duvall
movie_title                                        The Pursuit of D.B. Cooper 
num_voted_users                                                            763
cast_total_facebook_likes                                                 4277
actor_3_name                                                      Paul Gleason
facenumber_in_poster                                                         0
plot_keywords                escape|jumping from an airplane|money|parachut...
movie_imdb_link              http://www.imdb.com/title/tt0082958/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+07
title_year                                                                1981
actor_2_facebook_likes                                                     642
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       135
Name: 2989, dtype: object
color                                                                    Color
director_name                                                     Antonia Bird
num_critic_for_reviews                                                     131
duration                                                                   101
director_facebook_likes                                                     61
actor_3_facebook_likes                                                     611
actor_2_name                                                     Jeffrey Jones
actor_1_facebook_likes                                                     769
gross                                                              2.06095e+06
genres                                                 Fantasy|Horror|Thriller
actor_1_name                                                     Jeremy Davies
movie_title                                                          Ravenous 
num_voted_users                                                          29990
cast_total_facebook_likes                                                 2543
actor_3_name                                                    David Arquette
facenumber_in_poster                                                         0
plot_keywords                based on true story|cannibalism|captain|mexica...
movie_imdb_link              http://www.imdb.com/title/tt0129332/?ref_=fn_t...
num_user_for_reviews                                                       316
language                                                               English
country                                                         Czech Republic
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                1999
actor_2_facebook_likes                                                     692
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2990, dtype: object
color                                                                    Color
director_name                                                         Jon Poll
num_critic_for_reviews                                                     146
duration                                                                    97
director_facebook_likes                                                     20
actor_3_facebook_likes                                                     442
actor_2_name                                                        Megan Park
actor_1_facebook_likes                                                   21000
gross                                                              3.95029e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                 Robert Downey Jr.
movie_title                                                  Charlie Bartlett 
num_voted_users                                                          56654
cast_total_facebook_likes                                                22577
actor_3_name                                                        Hope Davis
facenumber_in_poster                                                         5
plot_keywords                drugs|high school|prescription drugs|private s...
movie_imdb_link              http://www.imdb.com/title/tt0423977/?ref_=fn_t...
num_user_for_reviews                                                       124
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2007
actor_2_facebook_likes                                                     569
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2991, dtype: object
color                                                                    Color
director_name                                                 Paolo Sorrentino
num_critic_for_reviews                                                     280
duration                                                                   172
director_facebook_likes                                                    667
actor_3_facebook_likes                                                      70
actor_2_name                                                   Sabrina Ferilli
actor_1_facebook_likes                                                     211
gross                                                              2.83589e+06
genres                                                                   Drama
actor_1_name                                                     Toni Servillo
movie_title                                                  The Great Beauty 
num_voted_users                                                          55516
cast_total_facebook_likes                                                  456
actor_3_name                                                     Serena Grandi
facenumber_in_poster                                                         2
plot_keywords                genitalia|male frontal nudity|male nudity|old ...
movie_imdb_link              http://www.imdb.com/title/tt2358891/?ref_=fn_t...
num_user_for_reviews                                                       124
language                                                               Italian
country                                                                  Italy
content_rating                                                       Not Rated
budget                                                                 9.2e+06
title_year                                                                2013
actor_2_facebook_likes                                                      98
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     29000
Name: 2992, dtype: object
color                                                                    Color
director_name                                                       Peter Care
num_critic_for_reviews                                                      78
duration                                                                   104
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      77
actor_2_name                                                   Michael Harding
actor_1_facebook_likes                                                    1000
gross                                                              1.77928e+06
genres                                                            Comedy|Drama
actor_1_name                                                     Kieran Culkin
movie_title                                 The Dangerous Lives of Altar Boys 
num_voted_users                                                          12047
cast_total_facebook_likes                                                 1292
actor_3_name                                                   Jake Richardson
facenumber_in_poster                                                         4
plot_keywords                              book|boy|catholic|comic book|friend
movie_imdb_link              http://www.imdb.com/title/tt0238924/?ref_=fn_t...
num_user_for_reviews                                                       122
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2002
actor_2_facebook_likes                                                     165
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       677
Name: 2993, dtype: object
color                                                                    Color
director_name                                                   Chan-wook Park
num_critic_for_reviews                                                     469
duration                                                                    99
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     520
actor_2_name                                                  Alden Ehrenreich
actor_1_facebook_likes                                                    3000
gross                                                              1.70228e+06
genres                                                          Drama|Thriller
actor_1_name                                                    Mia Wasikowska
movie_title                                                            Stoker 
num_voted_users                                                          84620
cast_total_facebook_likes                                                 5074
actor_3_name                                                    Harmony Korine
facenumber_in_poster                                                         4
plot_keywords                 death|hitchcockian|psychopath|sociopath|vomiting
movie_imdb_link              http://www.imdb.com/title/tt1682180/?ref_=fn_t...
num_user_for_reviews                                                       235
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2013
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     27000
Name: 2994, dtype: object
color                                                          Black and White
director_name                                                     Kar-Wai Wong
num_critic_for_reviews                                                     194
duration                                                                   129
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     576
actor_2_name                                               Tony Chiu Wai Leung
actor_1_facebook_likes                                                     878
gross                                                                   261481
genres                                                    Drama|Romance|Sci-Fi
actor_1_name                                                           Li Gong
movie_title                                                              2046 
num_voted_users                                                          41496
cast_total_facebook_likes                                                 2378
actor_3_name                                                     Maggie Cheung
facenumber_in_poster                                                         0
plot_keywords                number in title|train|woman slaps a man|woman ...
movie_imdb_link              http://www.imdb.com/title/tt0212712/?ref_=fn_t...
num_user_for_reviews                                                       210
language                                                             Cantonese
country                                                              Hong Kong
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2004
actor_2_facebook_likes                                                     643
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 2995, dtype: object
color                                                                    Color
director_name                                                        Ira Sachs
num_critic_for_reviews                                                     121
duration                                                                    91
director_facebook_likes                                                     60
actor_3_facebook_likes                                                      18
actor_2_name                                                        Erin Boyes
actor_1_facebook_likes                                                      60
gross                                                                1.507e+06
genres                                                     Crime|Drama|Romance
actor_1_name                                               David Richmond-Peck
movie_title                                                      Married Life 
num_voted_users                                                           8014
cast_total_facebook_likes                                                  141
actor_3_name                                                    Timothy Webber
facenumber_in_poster                                                         4
plot_keywords                        bachelor|best friend|divorce|poison|widow
movie_imdb_link              http://www.imdb.com/title/tt0804505/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2007
actor_2_facebook_likes                                                      46
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       314
Name: 2996, dtype: object
color                                                                    Color
director_name                                                  Carroll Ballard
num_critic_for_reviews                                                      38
duration                                                                   100
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     393
actor_2_name                                                        Hope Davis
actor_1_facebook_likes                                                     706
gross                                                                   860002
genres                                                  Adventure|Drama|Family
actor_1_name                                                     Eamonn Walker
movie_title                                                              Duma 
num_voted_users                                                           6454
cast_total_facebook_likes                                                 1579
actor_3_name                                                    Campbell Scott
facenumber_in_poster                                                         0
plot_keywords                              africa|bed|boy|cheetah|south africa
movie_imdb_link              http://www.imdb.com/title/tt0361715/?ref_=fn_t...
num_user_for_reviews                                                        43
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+07
title_year                                                                2005
actor_2_facebook_likes                                                     442
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2997, dtype: object
color                                                                    Color
director_name                                                      Neil Jordan
num_critic_for_reviews                                                     123
duration                                                                   111
director_facebook_likes                                                    277
actor_3_facebook_likes                                                     289
actor_2_name                                                       Stephen Rea
actor_1_facebook_likes                                                     845
gross                                                                   548934
genres                                                   Drama|Mystery|Romance
actor_1_name                                                       Tony Curran
movie_title                                                            Ondine 
num_voted_users                                                          16863
cast_total_facebook_likes                                                 1554
actor_3_name                                                   Alicja Bachleda
facenumber_in_poster                                                         2
plot_keywords                  celtic mythology|cottage|fisherman|irish|selkie
movie_imdb_link              http://www.imdb.com/title/tt1235796/?ref_=fn_t...
num_user_for_reviews                                                        57
language                                                               English
country                                                                Ireland
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2009
actor_2_facebook_likes                                                     327
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2998, dtype: object
color                                                                    Color
director_name                                                   Takeshi Kitano
num_critic_for_reviews                                                      81
duration                                                                   114
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     403
actor_2_name                                                       Tatyana Ali
actor_1_facebook_likes                                                     865
gross                                                                   447750
genres                                                    Crime|Drama|Thriller
actor_1_name                                                         Omar Epps
movie_title                                                           Brother 
num_voted_users                                                          18520
cast_total_facebook_likes                                                 2126
actor_3_name                                                     James Shigeta
facenumber_in_poster                                                         0
plot_keywords                gang|gangster|subjective camera|written and di...
movie_imdb_link              http://www.imdb.com/title/tt0222851/?ref_=fn_t...
num_user_for_reviews                                                       133
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2000
actor_2_facebook_likes                                                     685
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 2999, dtype: object
color                                                                    Color
director_name                                                    Anthony Russo
num_critic_for_reviews                                                      72
duration                                                                    86
director_facebook_likes                                                     94
actor_3_facebook_likes                                                     146
actor_2_name                                                 Isaiah Washington
actor_1_facebook_likes                                                     693
gross                                                                   333976
genres                                                            Comedy|Crime
actor_1_name                                                     Michael Jeter
movie_title                                             Welcome to Collinwood 
num_voted_users                                                          12559
cast_total_facebook_likes                                                 1373
actor_3_name                                                       Andy Davoli
facenumber_in_poster                                                         0
plot_keywords                    boxing knockout|heist|implied sex|keys|prison
movie_imdb_link              http://www.imdb.com/title/tt0271259/?ref_=fn_t...
num_user_for_reviews                                                        90
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2002
actor_2_facebook_likes                                                     534
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       423
Name: 3000, dtype: object
color                                                                    Color
director_name                                                     Sidney Lumet
num_critic_for_reviews                                                      25
duration                                                                   107
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     745
actor_2_name                                                     Anne Bancroft
actor_1_facebook_likes                                                     941
gross                                                                   141853
genres                                                            Comedy|Drama
actor_1_name                                                     Kyra Sedgwick
movie_title                                                     Critical Care 
num_voted_users                                                           1427
cast_total_facebook_likes                                                 3099
actor_3_name                                                     Albert Brooks
facenumber_in_poster                                                         2
plot_keywords                   half sister|hospital|latex gloves|medicine|nun
movie_imdb_link              http://www.imdb.com/title/tt0118901/?ref_=fn_t...
num_user_for_reviews                                                        12
language                                                               English
country                                                              Australia
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                1997
actor_2_facebook_likes                                                     754
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                        88
Name: 3001, dtype: object
color                                                                    Color
director_name                                                   Vadim Perelman
num_critic_for_reviews                                                      78
duration                                                                    90
director_facebook_likes                                                     26
actor_3_facebook_likes                                                     350
actor_2_name                                                        Lynn Cohen
actor_1_facebook_likes                                                     797
gross                                                                   303439
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                Eva Amurri Martino
movie_title                                          The Life Before Her Eyes 
num_voted_users                                                          12125
cast_total_facebook_likes                                                 2073
actor_3_name                                                      Brett Cullen
facenumber_in_poster                                                         2
plot_keywords                best friend|nonlinear timeline|school shooting...
movie_imdb_link              http://www.imdb.com/title/tt0815178/?ref_=fn_t...
num_user_for_reviews                                                        78
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2007
actor_2_facebook_likes                                                     474
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 3002, dtype: object
color                                                                    Color
director_name                                                  Lawrence Kasdan
num_critic_for_reviews                                                      57
duration                                                                   103
director_facebook_likes                                                    759
actor_3_facebook_likes                                                     820
actor_2_name                                                      Mark Duplass
actor_1_facebook_likes                                                     967
gross                                                                   793352
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Dianne Wiest
movie_title                                                 Darling Companion 
num_voted_users                                                           2551
cast_total_facebook_likes                                                 3878
actor_3_name                                                       Sam Shepard
facenumber_in_poster                                                         1
plot_keywords                                dog|marriage|search|wedding|woods
movie_imdb_link              http://www.imdb.com/title/tt1730687/?ref_=fn_t...
num_user_for_reviews                                                        25
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2012
actor_2_facebook_likes                                                     830
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3003, dtype: object
color                                                                    Color
director_name                                              Marco Kreuzpaintner
num_critic_for_reviews                                                      69
duration                                                                   120
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     289
actor_2_name                                                 Kate del Castillo
actor_1_facebook_likes                                                     662
gross                                                                   214202
genres                                                    Crime|Drama|Thriller
actor_1_name                                                         Zack Ward
movie_title                                                             Trade 
num_voted_users                                                          14831
cast_total_facebook_likes                                                 1952
actor_3_name                                                   Alicja Bachleda
facenumber_in_poster                                                         0
plot_keywords                           friend|girl|mexico city|new jersey|sex
movie_imdb_link              http://www.imdb.com/title/tt0399095/?ref_=fn_t...
num_user_for_reviews                                                        75
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2007
actor_2_facebook_likes                                                     345
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3004, dtype: object
color                                                                    Color
director_name                                                     Lajos Koltai
num_critic_for_reviews                                                      73
duration                                                                   134
director_facebook_likes                                                     45
actor_3_facebook_likes                                                       0
actor_2_name                                                   Péter Fancsikai
actor_1_facebook_likes                                                       9
gross                                                                   195888
genres                                                       Drama|Romance|War
actor_1_name                                                      Marcell Nagy
movie_title                                                          Fateless 
num_voted_users                                                           5603
cast_total_facebook_likes                                                   11
actor_3_name                                                     Bálint Péntek
facenumber_in_poster                                                         0
plot_keywords                                 bus|death|gay slur|hatred|jewish
movie_imdb_link              http://www.imdb.com/title/tt0367082/?ref_=fn_t...
num_user_for_reviews                                                        45
language                                                             Hungarian
country                                                                Hungary
content_rating                                                               R
budget                                                                 2.5e+09
title_year                                                                2005
actor_2_facebook_likes                                                       2
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       607
Name: 3005, dtype: object
color                                                                    Color
director_name                                                     Alan Rudolph
num_critic_for_reviews                                                      42
duration                                                                   110
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     865
actor_2_name                                                     Albert Finney
actor_1_facebook_likes                                                   13000
gross                                                                   175370
genres                                                                  Comedy
actor_1_name                                                      Bruce Willis
movie_title                                            Breakfast of Champions 
num_voted_users                                                           6884
cast_total_facebook_likes                                                17417
actor_3_name                                                         Omar Epps
facenumber_in_poster                                                         1
plot_keywords                breakfast|manitoba|science fiction writer|suic...
movie_imdb_link              http://www.imdb.com/title/tt0120618/?ref_=fn_t...
num_user_for_reviews                                                       133
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                1999
actor_2_facebook_likes                                                     883
imdb_score                                                                 4.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       458
Name: 3006, dtype: object
color                                                                    Color
director_name                                                      Yimou Zhang
num_critic_for_reviews                                                     101
duration                                                                    95
director_facebook_likes                                                    611
actor_3_facebook_likes                                                       3
actor_2_name                                                            Ni Yan
actor_1_facebook_likes                                                       9
gross                                                                   190666
genres                                                            Comedy|Drama
actor_1_name                                                       Honglei Sun
movie_title                                  A Woman, a Gun and a Noodle Shop 
num_voted_users                                                           2410
cast_total_facebook_likes                                                   18
actor_3_name                                                         Dahong Ni
facenumber_in_poster                                                         1
plot_keywords                betrayal|husband wife relationship|murder|nood...
movie_imdb_link              http://www.imdb.com/title/tt1428556/?ref_=fn_t...
num_user_for_reviews                                                        20
language                                                              Mandarin
country                                                                  China
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                       4
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       784
Name: 3007, dtype: object
color                                                                    Color
director_name                                                  Vincenzo Natali
num_critic_for_reviews                                                      82
duration                                                                    95
director_facebook_likes                                                    165
actor_3_facebook_likes                                                     280
actor_2_name                                                    Jeremy Northam
actor_1_facebook_likes                                                     686
gross                                                                      NaN
genres                                         Mystery|Romance|Sci-Fi|Thriller
actor_1_name                                                     David Hewlett
movie_title                                                            Cypher 
num_voted_users                                                          27052
cast_total_facebook_likes                                                 1501
actor_3_name                                                     Kari Matchett
facenumber_in_poster                                                         2
plot_keywords                brainwashing|corporate espionage|spy|suburb|su...
movie_imdb_link              http://www.imdb.com/title/tt0284978/?ref_=fn_t...
num_user_for_reviews                                                       124
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+06
title_year                                                                2002
actor_2_facebook_likes                                                     327
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3008, dtype: object
color                                                          Black and White
director_name                                                         Chuan Lu
num_critic_for_reviews                                                     149
duration                                                                   132
director_facebook_likes                                                     14
actor_3_facebook_likes                                                       3
actor_2_name                                                      Yuanyuan Gao
actor_1_facebook_likes                                                      52
gross                                                                   119922
genres                                                       Drama|History|War
actor_1_name                                                            Ye Liu
movie_title                                            City of Life and Death 
num_voted_users                                                           8429
cast_total_facebook_likes                                                   91
actor_3_name                                                        Ryu Kohata
facenumber_in_poster                                                         0
plot_keywords                atrocity|battle|chinese|horseback riding|marti...
movie_imdb_link              http://www.imdb.com/title/tt1124052/?ref_=fn_t...
num_user_for_reviews                                                        62
language                                                              Mandarin
country                                                                  China
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2009
actor_2_facebook_likes                                                      32
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3009, dtype: object
color                                                                    Color
director_name                                                      Tim Johnson
num_critic_for_reviews                                                     165
duration                                                                    94
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     183
actor_2_name                                                        Matt Jones
actor_1_facebook_likes                                                   17000
gross                                                              1.77344e+08
genres                        Adventure|Animation|Comedy|Family|Fantasy|Sci-Fi
actor_1_name                                                       Jim Parsons
movie_title                                                              Home 
num_voted_users                                                          70133
cast_total_facebook_likes                                                17883
actor_3_name                                                    April Winchell
facenumber_in_poster                                                         0
plot_keywords                alien friendship|alien invasion|australia|flyi...
movie_imdb_link              http://www.imdb.com/title/tt2224026/?ref_=fn_t...
num_user_for_reviews                                                       214
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.35e+08
title_year                                                                2015
actor_2_facebook_likes                                                     523
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     26000
Name: 3010, dtype: object
color                                                                    Color
director_name                                                        Lijun Sun
num_critic_for_reviews                                                       5
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     188
actor_2_name                                                        Tom Arnold
actor_1_facebook_likes                                                     970
gross                                                                      NaN
genres                                Action|Adventure|Animation|Comedy|Family
actor_1_name                                                         Jon Heder
movie_title                                          Legend of Kung Fu Rabbit 
num_voted_users                                                            408
cast_total_facebook_likes                                                 1854
actor_3_name                                                     Rebecca Black
facenumber_in_poster                                                         0
plot_keywords                        anthropomorphic animal|china|furry|rabbit
movie_imdb_link              http://www.imdb.com/title/tt1876517/?ref_=fn_t...
num_user_for_reviews                                                        12
language                                                              Mandarin
country                                                                  China
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2011
actor_2_facebook_likes                                                     618
imdb_score                                                                 3.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                       211
Name: 3011, dtype: object
color                                                                    Color
director_name                                                 Takashi Yamazaki
num_critic_for_reviews                                                      44
duration                                                                   138
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      16
actor_2_name                                                      Meisa Kuroki
actor_1_facebook_likes                                                      84
gross                                                                      NaN
genres                                           Action|Adventure|Drama|Sci-Fi
actor_1_name                                                     Takuya Kimura
movie_title                                           Space Battleship Yamato 
num_voted_users                                                           4899
cast_total_facebook_likes                                                  164
actor_3_name                                                  Hiroyuki Ikeuchi
facenumber_in_poster                                                         0
plot_keywords                        alien|battleship|message|radiation|yamato
movie_imdb_link              http://www.imdb.com/title/tt1477109/?ref_=fn_t...
num_user_for_reviews                                                        49
language                                                              Japanese
country                                                                  Japan
content_rating                                                           TV-14
budget                                                                 1.2e+07
title_year                                                                2010
actor_2_facebook_likes                                                      33
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3012, dtype: object
color                                                                    Color
director_name                                                     Renny Harlin
num_critic_for_reviews                                                      74
duration                                                                   113
director_facebook_likes                                                    212
actor_3_facebook_likes                                                      18
actor_2_name                                                   Kenneth Cranham
actor_1_facebook_likes                                                     567
gross                                                                    17149
genres                                                        Action|Drama|War
actor_1_name                                                     Richard Coyle
movie_title                                                     5 Days of War 
num_voted_users                                                          12128
cast_total_facebook_likes                                                  708
actor_3_name                                                       Ana Imnadze
facenumber_in_poster                                                         9
plot_keywords                cameraman|epic battle|journalist|south ossetia...
movie_imdb_link              http://www.imdb.com/title/tt1486193/?ref_=fn_t...
num_user_for_reviews                                                        61
language                                                               English
country                                                                Georgia
content_rating                                                               R
budget                                                                   2e+07
title_year                                                                2011
actor_2_facebook_likes                                                     111
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3013, dtype: object
color                                                                    Color
director_name                                                Christopher Smith
num_critic_for_reviews                                                     156
duration                                                                    99
director_facebook_likes                                                     76
actor_3_facebook_likes                                                      42
actor_2_name                                                    Michael Dorman
actor_1_facebook_likes                                                     181
gross                                                                      NaN
genres                                                Fantasy|Mystery|Thriller
actor_1_name                                                   Rachael Carpani
movie_title                                                          Triangle 
num_voted_users                                                          64423
cast_total_facebook_likes                                                  433
actor_3_name                                                         Emma Lung
facenumber_in_poster                                                         1
plot_keywords                deja vu|lost at sea|ship|time loop|trapped in ...
movie_imdb_link              http://www.imdb.com/title/tt1187064/?ref_=fn_t...
num_user_for_reviews                                                       293
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2009
actor_2_facebook_likes                                                     168
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 3014, dtype: object
color                                                                    Color
director_name                                                    Timothy Hines
num_critic_for_reviews                                                       1
duration                                                                   111
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     247
actor_2_name                                                     Kelly LeBrock
actor_1_facebook_likes                                                    1000
gross                                                                    14616
genres                                                                   Drama
actor_1_name                                               Christopher Lambert
movie_title                                             10 Days in a Madhouse 
num_voted_users                                                            314
cast_total_facebook_likes                                                 2059
actor_3_name                                                  Alexandra Callas
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3453052/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2015
actor_2_facebook_likes                                                     445
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     26000
Name: 3015, dtype: object
color                                                                    Color
director_name                                                  Randall Wallace
num_critic_for_reviews                                                      82
duration                                                                    99
director_facebook_likes                                                    130
actor_3_facebook_likes                                                      79
actor_2_name                                                      Connor Corum
actor_1_facebook_likes                                                     399
gross                                                              9.14433e+07
genres                                                         Biography|Drama
actor_1_name                                                      Jacob Vargas
movie_title                                                Heaven Is for Real 
num_voted_users                                                          21034
cast_total_facebook_likes                                                  663
actor_3_name                                                         Rob Moran
facenumber_in_poster                                                       NaN
plot_keywords                based on true story|christ|christian|near deat...
movie_imdb_link              http://www.imdb.com/title/tt1929263/?ref_=fn_t...
num_user_for_reviews                                                       153
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+07
title_year                                                                2014
actor_2_facebook_likes                                                     116
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     23000
Name: 3016, dtype: object
color                                                                    Color
director_name                                                      Guy Ritchie
num_critic_for_reviews                                                     151
duration                                                                   104
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                         Brad Pitt
actor_1_facebook_likes                                                   26000
gross                                                              3.00931e+07
genres                                                            Comedy|Crime
actor_1_name                                                     Jason Statham
movie_title                                                            Snatch 
num_voted_users                                                         600996
cast_total_facebook_likes                                                39175
actor_3_name                                                     Jason Flemyng
facenumber_in_poster                                                         6
plot_keywords                                 boxer|boxing|diamond|fight|gypsy
movie_imdb_link              http://www.imdb.com/title/tt0208092/?ref_=fn_t...
num_user_for_reviews                                                       726
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2000
actor_2_facebook_likes                                                   11000
imdb_score                                                                 8.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     27000
Name: 3017, dtype: object
color                                                                    Color
director_name                                                    David Winters
num_critic_for_reviews                                                       3
duration                                                                    89
director_facebook_likes                                                     49
actor_3_facebook_likes                                                      84
actor_2_name                                                         Matt Marr
actor_1_facebook_likes                                                     551
gross                                                                      NaN
genres                                                          Family|Musical
actor_1_name                                                      Gary Daniels
movie_title                                                   Dancin' It's On 
num_voted_users                                                            105
cast_total_facebook_likes                                                  895
actor_3_name                                                     Ginger Jensen
facenumber_in_poster                                                         6
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2598580/?ref_=fn_t...
num_user_for_reviews                                                         7
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+07
title_year                                                                2015
actor_2_facebook_likes                                                      85
imdb_score                                                                 2.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                       634
Name: 3018, dtype: object
color                                                                    Color
director_name                                                     Mary Lambert
num_critic_for_reviews                                                      98
duration                                                                   103
director_facebook_likes                                                     52
actor_3_facebook_likes                                                     426
actor_2_name                                                       Fred Gwynne
actor_1_facebook_likes                                                     969
gross                                                              5.74692e+07
genres                                                          Fantasy|Horror
actor_1_name                                                       Miko Hughes
movie_title                                                      Pet Sematary 
num_voted_users                                                          63855
cast_total_facebook_likes                                                 2987
actor_3_name                                                     Denise Crosby
facenumber_in_poster                                                         0
plot_keywords                                  cat|cemetery|maine|secret|woods
movie_imdb_link              http://www.imdb.com/title/tt0098084/?ref_=fn_t...
num_user_for_reviews                                                       248
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.15e+07
title_year                                                                1989
actor_2_facebook_likes                                                     886
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3019, dtype: object
color                                                                    Color
director_name                                                   Akira Kurosawa
num_critic_for_reviews                                                      25
duration                                                                   134
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       4
actor_2_name                                                    Tetsu Watanabe
actor_1_facebook_likes                                                      15
gross                                                                    48856
genres                                                                   Drama
actor_1_name                                                  Tatsuo Matsumura
movie_title                                                          Madadayo 
num_voted_users                                                           3466
cast_total_facebook_likes                                                   30
actor_3_name                                                       Akira Terao
facenumber_in_poster                                                         0
plot_keywords                           air raid|beer|birthday|japan|professor
movie_imdb_link              http://www.imdb.com/title/tt0107474/?ref_=fn_t...
num_user_for_reviews                                                        40
language                                                              Japanese
country                                                                  Japan
content_rating                                                             NaN
budget                                                                1.19e+07
title_year                                                                1993
actor_2_facebook_likes                                                       6
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       355
Name: 3020, dtype: object
color                                                                    Color
director_name                                                    Jamie Thraves
num_critic_for_reviews                                                      35
duration                                                                   100
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     388
actor_2_name                                                Caroline Dhavernas
actor_1_facebook_likes                                                     680
gross                                                                      NaN
genres                                                          Drama|Thriller
actor_1_name                                                   Paddy Considine
movie_title                                                The Cry of the Owl 
num_voted_users                                                           3737
cast_total_facebook_likes                                                 1780
actor_3_name                                                Charlotte Sullivan
facenumber_in_poster                                                         2
plot_keywords                isolated house|promotion|river|small town|stal...
movie_imdb_link              http://www.imdb.com/title/tt1034302/?ref_=fn_t...
num_user_for_reviews                                                        27
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                1.15e+07
title_year                                                                2009
actor_2_facebook_likes                                                     544
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       443
Name: 3021, dtype: object
color                                                                    Color
director_name                                                     Mabel Cheung
num_critic_for_reviews                                                       6
duration                                                                   130
director_facebook_likes                                                      3
actor_3_facebook_likes                                                       2
actor_2_name                                                     Ching Wan Lau
actor_1_facebook_likes                                                     215
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                          Wei Tang
movie_title                                            A Tale of Three Cities 
num_voted_users                                                            117
cast_total_facebook_likes                                                  244
actor_3_name                                                         Hailu Qin
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3682770/?ref_=fn_t...
num_user_for_reviews                                                         6
language                                                               Chinese
country                                                                  China
content_rating                                                             NaN
budget                                                                 1.2e+07
title_year                                                                2015
actor_2_facebook_likes                                                      27
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         4
Name: 3022, dtype: object
color                                                                    Color
director_name                                                        Joe Dante
num_critic_for_reviews                                                     183
duration                                                                   106
director_facebook_likes                                                    287
actor_3_facebook_likes                                                     233
actor_2_name                                                   Harry Carey Jr.
actor_1_facebook_likes                                                     767
gross                                                               1.4817e+08
genres                                                   Comedy|Fantasy|Horror
actor_1_name                                                      Phoebe Cates
movie_title                                                          Gremlins 
num_voted_users                                                         142293
cast_total_facebook_likes                                                 2053
actor_3_name                                                     Zach Galligan
facenumber_in_poster                                                         0
plot_keywords                       bright light|midnight|pet|small town|water
movie_imdb_link              http://www.imdb.com/title/tt0087363/?ref_=fn_t...
num_user_for_reviews                                                       245
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.1e+07
title_year                                                                1984
actor_2_facebook_likes                                                     281
imdb_score                                                                 7.2
aspect_ratio                                                               2.2
movie_facebook_likes                                                     14000
Name: 3023, dtype: object
color                                                                    Color
director_name                                                     George Lucas
num_critic_for_reviews                                                     282
duration                                                                   125
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     504
actor_2_name                                                     Peter Cushing
actor_1_facebook_likes                                                   11000
gross                                                              4.60936e+08
genres                                         Action|Adventure|Fantasy|Sci-Fi
actor_1_name                                                     Harrison Ford
movie_title                                Star Wars: Episode IV - A New Hope 
num_voted_users                                                         911097
cast_total_facebook_likes                                                13485
actor_3_name                                                       Kenny Baker
facenumber_in_poster                                                         1
plot_keywords                death star|empire|galactic war|princess|rebellion
movie_imdb_link              http://www.imdb.com/title/tt0076759/?ref_=fn_t...
num_user_for_reviews                                                      1470
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.1e+07
title_year                                                                1977
actor_2_facebook_likes                                                    1000
imdb_score                                                                 8.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     33000
Name: 3024, dtype: object
color                                                                    Color
director_name                                                        Dan Mazer
num_critic_for_reviews                                                     158
duration                                                                   109
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     411
actor_2_name                                                       Zoey Deutch
actor_1_facebook_likes                                                   22000
gross                                                              3.55376e+07
genres                                                                  Comedy
actor_1_name                                                    Robert De Niro
movie_title                                                     Dirty Grandpa 
num_voted_users                                                          49671
cast_total_facebook_likes                                                24063
actor_3_name                                                  Jason Mantzoukas
facenumber_in_poster                                                         1
plot_keywords                female removes her clothes|fondling|voyeur|voy...
movie_imdb_link              http://www.imdb.com/title/tt1860213/?ref_=fn_t...
num_user_for_reviews                                                       166
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.15e+07
title_year                                                                2016
actor_2_facebook_likes                                                     851
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 3025, dtype: object
color                                                                    Color
director_name                                                       David Lean
num_critic_for_reviews                                                      89
duration                                                                   200
director_facebook_likes                                                    767
actor_3_facebook_likes                                                     382
actor_2_name                                                      Klaus Kinski
actor_1_facebook_likes                                                     597
gross                                                              1.11722e+08
genres                                                       Drama|Romance|War
actor_1_name                                                    Julie Christie
movie_title                                                    Doctor Zhivago 
num_voted_users                                                          55816
cast_total_facebook_likes                                                 1966
actor_3_name                                                 Geraldine Chaplin
facenumber_in_poster                                                         2
plot_keywords                  bolshevik|poet|poetry|russia|russian revolution
movie_imdb_link              http://www.imdb.com/title/tt0059113/?ref_=fn_t...
num_user_for_reviews                                                       255
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                1965
actor_2_facebook_likes                                                     396
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                      7000
Name: 3026, dtype: object
color                                                                    Color
director_name                                                   Stephen Daldry
num_critic_for_reviews                                                     101
duration                                                                   114
director_facebook_likes                                                    335
actor_3_facebook_likes                                                      14
actor_2_name                                                      Selton Mello
actor_1_facebook_likes                                                     585
gross                                                                    10230
genres                                  Adventure|Crime|Drama|Mystery|Thriller
actor_1_name                                                      Wagner Moura
movie_title                                                             Trash 
num_voted_users                                                          14437
cast_total_facebook_likes                                                  679
actor_3_name                                                     Daniel Zettel
facenumber_in_poster                                                         0
plot_keywords                                    bible|key|poverty|slum|wallet
movie_imdb_link              http://www.imdb.com/title/tt1921149/?ref_=fn_t...
num_user_for_reviews                                                        26
language                                                            Portuguese
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2014
actor_2_facebook_likes                                                      68
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3027, dtype: object
color                                                                    Color
director_name                                                     Kenny Ortega
num_critic_for_reviews                                                     128
duration                                                                   112
director_facebook_likes                                                    197
actor_3_facebook_likes                                                     632
actor_2_name                                                       Matt Prokop
actor_1_facebook_likes                                                     755
gross                                                              9.05564e+07
genres                               Comedy|Drama|Family|Music|Musical|Romance
actor_1_name                                                     Lucas Grabeel
movie_title                                High School Musical 3: Senior Year 
num_voted_users                                                          43795
cast_total_facebook_likes                                                 3507
actor_3_name                                                       Corbin Bleu
facenumber_in_poster                                                         1
plot_keywords                basketball|curtain call|graduation|high school...
movie_imdb_link              http://www.imdb.com/title/tt0962726/?ref_=fn_t...
num_user_for_reviews                                                       171
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 1.1e+07
title_year                                                                2008
actor_2_facebook_likes                                                     734
imdb_score                                                                 4.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3028, dtype: object
color                                                                    Color
director_name                                                 David O. Russell
num_critic_for_reviews                                                     410
duration                                                                   116
director_facebook_likes                                                    737
actor_3_facebook_likes                                                     141
actor_2_name                                                        Jack McGee
actor_1_facebook_likes                                                   23000
gross                                                              9.35718e+07
genres                                                   Biography|Drama|Sport
actor_1_name                                                    Christian Bale
movie_title                                                       The Fighter 
num_voted_users                                                         275869
cast_total_facebook_likes                                                23811
actor_3_name                                                  Melissa McMeekin
facenumber_in_poster                                                         2
plot_keywords                boxer|boxing|boxing match|crack cocaine|lowell...
movie_imdb_link              http://www.imdb.com/title/tt0964517/?ref_=fn_t...
num_user_for_reviews                                                       389
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 2.5e+07
title_year                                                                2010
actor_2_facebook_likes                                                     238
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     36000
Name: 3029, dtype: object
color                                                                    Color
director_name                                                    Jeff Tremaine
num_critic_for_reviews                                                     104
duration                                                                    92
director_facebook_likes                                                     79
actor_3_facebook_likes                                                     218
actor_2_name                                                           Steve-O
actor_1_facebook_likes                                                     608
gross                                                              7.27555e+07
genres                                               Action|Comedy|Documentary
actor_1_name                                                       Bam Margera
movie_title                                                Jackass Number Two 
num_voted_users                                                          56595
cast_total_facebook_likes                                                 1853
actor_3_name                                                     Chris Pontius
facenumber_in_poster                                                         0
plot_keywords                blindfold|male frontal nudity|male rear nudity...
movie_imdb_link              http://www.imdb.com/title/tt0493430/?ref_=fn_t...
num_user_for_reviews                                                       196
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2006
actor_2_facebook_likes                                                     362
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       641
Name: 3030, dtype: object
color                                                                    Color
director_name                                                    Jonathan Lynn
num_critic_for_reviews                                                      54
duration                                                                   120
director_facebook_likes                                                     36
actor_3_facebook_likes                                                     633
actor_2_name                                                      Bruce McGill
actor_1_facebook_likes                                                     886
gross                                                              5.29292e+07
genres                                                            Comedy|Crime
actor_1_name                                                       Fred Gwynne
movie_title                                                   My Cousin Vinny 
num_voted_users                                                          82743
cast_total_facebook_likes                                                 3280
actor_3_name                                                        Lane Smith
facenumber_in_poster                                                         1
plot_keywords                        alabama|jail|judicial system|lawyer|trial
movie_imdb_link              http://www.imdb.com/title/tt0104952/?ref_=fn_t...
num_user_for_reviews                                                       201
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                1992
actor_2_facebook_likes                                                     655
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                      7000
Name: 3031, dtype: object
color                                                                    Color
director_name                                                      R.J. Cutler
num_critic_for_reviews                                                     141
duration                                                                   107
director_facebook_likes                                                     15
actor_3_facebook_likes                                                     602
actor_2_name                                                     Mireille Enos
actor_1_facebook_likes                                                   17000
gross                                                              5.04613e+07
genres                                             Drama|Fantasy|Music|Romance
actor_1_name                                                Chloë Grace Moretz
movie_title                                                         If I Stay 
num_voted_users                                                          83893
cast_total_facebook_likes                                                20466
actor_3_name                                                       Stacy Keach
facenumber_in_poster                                                         3
plot_keywords                car accident|coma|out of body experience|refer...
movie_imdb_link              http://www.imdb.com/title/tt1355630/?ref_=fn_t...
num_user_for_reviews                                                       132
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                2014
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 3032, dtype: object
color                                                                    Color
director_name                                            Brian Trenchard-Smith
num_critic_for_reviews                                                      30
duration                                                                    92
director_facebook_likes                                                     53
actor_3_facebook_likes                                                      32
actor_2_name                                                     Damien Garvey
actor_1_facebook_likes                                                      84
gross                                                                      NaN
genres                                                     Action|Comedy|Crime
actor_1_name                                                      Zoe Ventoura
movie_title                                                        Drive Hard 
num_voted_users                                                           3104
cast_total_facebook_likes                                                  179
actor_3_name                                               Christopher Sommers
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2968804/?ref_=fn_t...
num_user_for_reviews                                                        33
language                                                               English
country                                                                 Canada
content_rating                                                       Not Rated
budget                                                                 1.2e+07
title_year                                                                2014
actor_2_facebook_likes                                                      37
imdb_score                                                                 4.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                       774
Name: 3033, dtype: object
color                                                                    Color
director_name                                                    David S. Ward
num_critic_for_reviews                                                      57
duration                                                                   107
director_facebook_likes                                                     42
actor_3_facebook_likes                                                     808
actor_2_name                                                      Tom Berenger
actor_1_facebook_likes                                                    1000
gross                                                              4.97971e+07
genres                                                            Comedy|Sport
actor_1_name                                                    Corbin Bernsen
movie_title                                                      Major League 
num_voted_users                                                          49007
cast_total_facebook_likes                                                 3435
actor_3_name                                                        Rene Russo
facenumber_in_poster                                                         3
plot_keywords                      cleveland indians|league|manager|owner|team
movie_imdb_link              http://www.imdb.com/title/tt0097815/?ref_=fn_t...
num_user_for_reviews                                                        97
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                1989
actor_2_facebook_likes                                                     854
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3034, dtype: object
color                                                                    Color
director_name                                                    Oliver Parker
num_critic_for_reviews                                                      56
duration                                                                   100
director_facebook_likes                                                     32
actor_3_facebook_likes                                                     621
actor_2_name                                                    Rupert Everett
actor_1_facebook_likes                                                     785
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                         Lily Cole
movie_title                                                     St. Trinian's 
num_voted_users                                                          18220
cast_total_facebook_likes                                                 3135
actor_3_name                                                    Tamsin Egerton
facenumber_in_poster                                                         5
plot_keywords                2000s|female protagonist|reward|school|st trin...
movie_imdb_link              http://www.imdb.com/title/tt0964587/?ref_=fn_t...
num_user_for_reviews                                                       102
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                1.35e+07
title_year                                                                2007
actor_2_facebook_likes                                                     692
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3035, dtype: object
color                                                                    Color
director_name                                                  Joel Schumacher
num_critic_for_reviews                                                     216
duration                                                                    81
director_facebook_likes                                                    541
actor_3_facebook_likes                                                     328
actor_2_name                                                     John Enos III
actor_1_facebook_likes                                                     991
gross                                                              4.65632e+07
genres                                                          Crime|Thriller
actor_1_name                                                    Radha Mitchell
movie_title                                                       Phone Booth 
num_voted_users                                                         207934
cast_total_facebook_likes                                                 2562
actor_3_name                                                  Richard T. Jones
facenumber_in_poster                                                         0
plot_keywords                phone booth|publicist|single set production|sn...
movie_imdb_link              http://www.imdb.com/title/tt0183649/?ref_=fn_t...
num_user_for_reviews                                                       629
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                2002
actor_2_facebook_likes                                                     465
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3036, dtype: object
color                                                                    Color
director_name                                                    Adam Shankman
num_critic_for_reviews                                                      80
duration                                                                   101
director_facebook_likes                                                    163
actor_3_facebook_likes                                                     488
actor_2_name                                                      Peter Coyote
actor_1_facebook_likes                                                     683
gross                                                              4.12271e+07
genres                                                           Drama|Romance
actor_1_name                                                     Lauren German
movie_title                                                A Walk to Remember 
num_voted_users                                                         162701
cast_total_facebook_likes                                                 2436
actor_3_name                                                  Paz de la Huerta
facenumber_in_poster                                                         1
plot_keywords                 community service|love|punishment|school|student
movie_imdb_link              http://www.imdb.com/title/tt0281358/?ref_=fn_t...
num_user_for_reviews                                                       962
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.1e+07
title_year                                                                2002
actor_2_facebook_likes                                                     548
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     19000
Name: 3037, dtype: object
color                                                                    Color
director_name                                                      Tim Robbins
num_critic_for_reviews                                                      77
duration                                                                   122
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     191
actor_2_name                                                      Celia Weston
actor_1_facebook_likes                                                     276
gross                                                               3.9025e+07
genres                                                             Crime|Drama
actor_1_name                                                        Lois Smith
movie_title                                                  Dead Man Walking 
num_voted_users                                                          73193
cast_total_facebook_likes                                                  903
actor_3_name                                                     Robert Prosky
facenumber_in_poster                                                         0
plot_keywords                   death|execution|nun|solitary confinement|visit
movie_imdb_link              http://www.imdb.com/title/tt0112818/?ref_=fn_t...
num_user_for_reviews                                                       190
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                1995
actor_2_facebook_likes                                                     258
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3038, dtype: object
color                                                                    Color
director_name                                                     Roger Kumble
num_critic_for_reviews                                                     101
duration                                                                    97
director_facebook_likes                                                     16
actor_3_facebook_likes                                                     637
actor_2_name                                               Sean Patrick Thomas
actor_1_facebook_likes                                                    4000
gross                                                              3.82019e+07
genres                                                           Drama|Romance
actor_1_name                                             Sarah Michelle Gellar
movie_title                                                  Cruel Intentions 
num_voted_users                                                         149222
cast_total_facebook_likes                                                 6223
actor_3_name                                                       Eric Mabius
facenumber_in_poster                                                         3
plot_keywords                               bet|revenge|seduction|virgin|wager
movie_imdb_link              http://www.imdb.com/title/tt0139134/?ref_=fn_t...
num_user_for_reviews                                                       749
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.05e+07
title_year                                                                1999
actor_2_facebook_likes                                                     656
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3039, dtype: object
color                                                                    Color
director_name                                                   Kevin Greutert
num_critic_for_reviews                                                     156
duration                                                                    92
director_facebook_likes                                                     52
actor_3_facebook_likes                                                     647
actor_2_name                                                     Shawnee Smith
actor_1_facebook_likes                                                     723
gross                                                              2.76694e+07
genres                                                          Horror|Mystery
actor_1_name                                                   Costas Mandylor
movie_title                                                            Saw VI 
num_voted_users                                                          76207
cast_total_facebook_likes                                                 3101
actor_3_name                                                    George Newbern
facenumber_in_poster                                                         0
plot_keywords                deception|flash photography|game of death|jigs...
movie_imdb_link              http://www.imdb.com/title/tt1233227/?ref_=fn_t...
num_user_for_reviews                                                       194
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2009
actor_2_facebook_likes                                                     651
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3040, dtype: object
color                                                                    Color
director_name                                                       Mel Brooks
num_critic_for_reviews                                                      48
duration                                                                    92
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     842
actor_2_name                                                        Sid Caesar
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                     Madeline Kahn
movie_title                                      History of the World: Part I 
num_voted_users                                                          36559
cast_total_facebook_likes                                                 3931
actor_3_name                                                       Dom DeLuise
facenumber_in_poster                                                         0
plot_keywords                french revolution|old testament|part of an unf...
movie_imdb_link              http://www.imdb.com/title/tt0082517/?ref_=fn_t...
num_user_for_reviews                                                       131
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                1981
actor_2_facebook_likes                                                     898
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3041, dtype: object
color                                                                    Color
director_name                                            Gina Prince-Bythewood
num_critic_for_reviews                                                     109
duration                                                                   110
director_facebook_likes                                                    107
actor_3_facebook_likes                                                     549
actor_2_name                                                       Alicia Keys
actor_1_facebook_likes                                                     664
gross                                                              3.77664e+07
genres                                                                   Drama
actor_1_name                                                       Nate Parker
movie_title                                           The Secret Life of Bees 
num_voted_users                                                          19440
cast_total_facebook_likes                                                 3376
actor_3_name                                                   Jennifer Hudson
facenumber_in_poster                                                         5
plot_keywords                beekeeping|insect in title|racism|sister|south...
movie_imdb_link              http://www.imdb.com/title/tt0416212/?ref_=fn_t...
num_user_for_reviews                                                        56
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                2008
actor_2_facebook_likes                                                     551
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3042, dtype: object
color                                                                    Color
director_name                                                       Rob Pritts
num_critic_for_reviews                                                      62
duration                                                                    86
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     532
actor_2_name                                                      Vinessa Shaw
actor_1_facebook_likes                                                     584
gross                                                              2.39784e+07
genres                                                            Comedy|Crime
actor_1_name                                                   Vincent Pastore
movie_title                                                      Corky Romano 
num_voted_users                                                          10966
cast_total_facebook_likes                                                 3850
actor_3_name                                                        Peter Berg
facenumber_in_poster                                                         1
plot_keywords                        fbi|mafia|mobster|undercover|veterinarian
movie_imdb_link              http://www.imdb.com/title/tt0250310/?ref_=fn_t...
num_user_for_reviews                                                       100
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                2001
actor_2_facebook_likes                                                     580
imdb_score                                                                 4.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       365
Name: 3043, dtype: object
color                                                                    Color
director_name                                                   Brian De Palma
num_critic_for_reviews                                                      33
duration                                                                    91
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     298
actor_2_name                                                Gabrielle Carteris
actor_1_facebook_likes                                                     636
gross                                                              2.13701e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                      Steven Bauer
movie_title                                                      Raising Cain 
num_voted_users                                                           9903
cast_total_facebook_likes                                                 1852
actor_3_name                                                       Gregg Henry
facenumber_in_poster                                                         0
plot_keywords                hitchcockian|long tracking shot|psychologist|p...
movie_imdb_link              http://www.imdb.com/title/tt0105217/?ref_=fn_t...
num_user_for_reviews                                                        80
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                1992
actor_2_facebook_likes                                                     330
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       541
Name: 3044, dtype: object
color                                                                    Color
director_name                                                   Norman Jewison
num_critic_for_reviews                                                      20
duration                                                                   145
director_facebook_likes                                                    278
actor_3_facebook_likes                                                     279
actor_2_name                                                       Peter Boyle
actor_1_facebook_likes                                                   13000
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                Sylvester Stallone
movie_title                                                          F.I.S.T. 
num_voted_users                                                           5561
cast_total_facebook_likes                                                14735
actor_3_name                                                       Rod Steiger
facenumber_in_poster                                                         2
plot_keywords                1930s|driving through a gate|funeral|senator|t...
movie_imdb_link              http://www.imdb.com/title/tt0077531/?ref_=fn_t...
num_user_for_reviews                                                        35
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.1e+07
title_year                                                                1978
actor_2_facebook_likes                                                     595
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       745
Name: 3045, dtype: object
color                                                                    Color
director_name                                                      Tobe Hooper
num_critic_for_reviews                                                      52
duration                                                                   100
director_facebook_likes                                                    365
actor_3_facebook_likes                                                     225
actor_2_name                                                          Bud Cort
actor_1_facebook_likes                                                     425
gross                                                              4.88466e+06
genres                                                           Horror|Sci-Fi
actor_1_name                                                   Louise Fletcher
movie_title                                                Invaders from Mars 
num_voted_users                                                           5187
cast_total_facebook_likes                                                 1661
actor_3_name                                                   William Bassett
facenumber_in_poster                                                         0
plot_keywords                              alien|boy|nurse|school|school nurse
movie_imdb_link              http://www.imdb.com/title/tt0091276/?ref_=fn_t...
num_user_for_reviews                                                        64
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.2e+07
title_year                                                                1986
actor_2_facebook_likes                                                     394
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       902
Name: 3046, dtype: object
color                                                                    Color
director_name                                                     John Crowley
num_critic_for_reviews                                                     351
duration                                                                   111
director_facebook_likes                                                     34
actor_3_facebook_likes                                                      54
actor_2_name                                                    Fiona Glascott
actor_1_facebook_likes                                                     838
gross                                                              3.83175e+07
genres                                                           Drama|Romance
actor_1_name                                                     Julie Walters
movie_title                                                          Brooklyn 
num_voted_users                                                          73249
cast_total_facebook_likes                                                  995
actor_3_name                                                    Eva Birthistle
facenumber_in_poster                                                         1
plot_keywords                1950s|immigrant|irish|irish accent|torn betwee...
movie_imdb_link              http://www.imdb.com/title/tt2381111/?ref_=fn_t...
num_user_for_reviews                                                       212
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                2015
actor_2_facebook_likes                                                      55
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     36000
Name: 3047, dtype: object
color                                                                    Color
director_name                                                  Stanley Kubrick
num_critic_for_reviews                                                     124
duration                                                                   184
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     111
actor_2_name                                                    Steven Berkoff
actor_1_facebook_likes                                                     385
gross                                                                      NaN
genres                                             Adventure|Drama|History|War
actor_1_name                                                       Ryan O'Neal
movie_title                                                      Barry Lyndon 
num_voted_users                                                         101627
cast_total_facebook_likes                                                 1104
actor_3_name                                                      Hardy Krüger
facenumber_in_poster                                                         0
plot_keywords                18th century|england|rise and fall|rural setti...
movie_imdb_link              http://www.imdb.com/title/tt0072684/?ref_=fn_t...
num_user_for_reviews                                                       369
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 1.1e+07
title_year                                                                1975
actor_2_facebook_likes                                                     293
imdb_score                                                                 8.1
aspect_ratio                                                              1.66
movie_facebook_likes                                                         0
Name: 3048, dtype: object
color                                                                    Color
director_name                                                   Brendan Malloy
num_critic_for_reviews                                                      37
duration                                                                    89
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     651
actor_2_name                                                      Jason London
actor_1_facebook_likes                                                     799
gross                                                              1.39033e+07
genres                                                            Comedy|Sport
actor_1_name                                                        Lee Majors
movie_title                                                          Out Cold 
num_voted_users                                                          14656
cast_total_facebook_likes                                                 4291
actor_3_name                                                     Thomas Lennon
facenumber_in_poster                                                         0
plot_keywords                alaska|mountain|ski resort|snowboard|snowboarding
movie_imdb_link              http://www.imdb.com/title/tt0253798/?ref_=fn_t...
num_user_for_reviews                                                        90
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                2001
actor_2_facebook_likes                                                     711
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3049, dtype: object
color                                                                    Color
director_name                                                  Reginald Hudlin
num_critic_for_reviews                                                      58
duration                                                                    84
director_facebook_likes                                                     71
actor_3_facebook_likes                                                     553
actor_2_name                                                  John Witherspoon
actor_1_facebook_likes                                                    8000
gross                                                              1.35929e+07
genres                                                                  Comedy
actor_1_name                                                      Will Ferrell
movie_title                                                    The Ladies Man 
num_voted_users                                                          10777
cast_total_facebook_likes                                                10982
actor_3_name                                                       Tim Meadows
facenumber_in_poster                                                         1
plot_keywords                black pantyhose|female stockinged legs|pantyho...
movie_imdb_link              http://www.imdb.com/title/tt0213790/?ref_=fn_t...
num_user_for_reviews                                                        79
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2000
actor_2_facebook_likes                                                     723
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       671
Name: 3050, dtype: object
color                                                                    Color
director_name                                                   Dustin Hoffman
num_critic_for_reviews                                                     175
duration                                                                    98
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     123
actor_2_name                                                    Sheridan Smith
actor_1_facebook_likes                                                     358
gross                                                              1.83818e+07
genres                                                            Comedy|Drama
actor_1_name                                                     Luke Newberry
movie_title                                                           Quartet 
num_voted_users                                                          15684
cast_total_facebook_likes                                                 1114
actor_3_name                                                   Pauline Collins
facenumber_in_poster                                                         4
plot_keywords                divorced couple|opera|reference to giuseppe ve...
movie_imdb_link              http://www.imdb.com/title/tt1441951/?ref_=fn_t...
num_user_for_reviews                                                       126
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                2012
actor_2_facebook_likes                                                     156
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 3051, dtype: object
color                                                                    Color
director_name                                                  Gregory Poirier
num_critic_for_reviews                                                      75
duration                                                                    95
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     443
actor_2_name                                                        Jake Busey
actor_1_facebook_likes                                                    1000
gross                                                              1.35587e+07
genres                                                                  Comedy
actor_1_name                                                 Shannon Elizabeth
movie_title                                                           Tomcats 
num_voted_users                                                          15427
cast_total_facebook_likes                                                 2729
actor_3_name                                                David Ogden Stiers
facenumber_in_poster                                                         0
plot_keywords                box office flop|critically bashed|dominatrix|f...
movie_imdb_link              http://www.imdb.com/title/tt0246989/?ref_=fn_t...
num_user_for_reviews                                                       121
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2001
actor_2_facebook_likes                                                     660
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       449
Name: 3052, dtype: object
color                                                                    Color
director_name                                                      Bill Paxton
num_critic_for_reviews                                                     161
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     303
actor_2_name                                                     Powers Boothe
actor_1_facebook_likes                                                   11000
gross                                                              1.31038e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                               Matthew McConaughey
movie_title                                                           Frailty 
num_voted_users                                                          59982
cast_total_facebook_likes                                                12237
actor_3_name                                                      Matt O'Leary
facenumber_in_poster                                                         0
plot_keywords                     demon|fbi|fbi agent|murder|religious fanatic
movie_imdb_link              http://www.imdb.com/title/tt0264616/?ref_=fn_t...
num_user_for_reviews                                                       463
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2001
actor_2_facebook_likes                                                     472
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                      5000
Name: 3053, dtype: object
color                                                                    Color
director_name                                                     Simon Curtis
num_critic_for_reviews                                                     203
duration                                                                   109
director_facebook_likes                                                     64
actor_3_facebook_likes                                                     553
actor_2_name                                                    Frances Fisher
actor_1_facebook_likes                                                   16000
gross                                                               3.3305e+07
genres                                                 Biography|Drama|History
actor_1_name                                                     Ryan Reynolds
movie_title                                                     Woman in Gold 
num_voted_users                                                          33856
cast_total_facebook_likes                                                17866
actor_3_name                                                Elizabeth McGovern
facenumber_in_poster                                                         2
plot_keywords                                    art|jewish|justice|nazi|theft
movie_imdb_link              http://www.imdb.com/title/tt2404425/?ref_=fn_t...
num_user_for_reviews                                                       147
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                2015
actor_2_facebook_likes                                                     638
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     34000
Name: 3054, dtype: object
color                                                          Black and White
director_name                                                      Bill Condon
num_critic_for_reviews                                                     188
duration                                                                   118
director_facebook_likes                                                    386
actor_3_facebook_likes                                                     812
actor_2_name                                                      Oliver Platt
actor_1_facebook_likes                                                   14000
gross                                                              1.02146e+07
genres                                                         Biography|Drama
actor_1_name                                                       Liam Neeson
movie_title                                                            Kinsey 
num_voted_users                                                          42689
cast_total_facebook_likes                                                17490
actor_3_name                                                       Dylan Baker
facenumber_in_poster                                                         0
plot_keywords                         professor|research|sex|sexuality|student
movie_imdb_link              http://www.imdb.com/title/tt0362269/?ref_=fn_t...
num_user_for_reviews                                                       204
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2004
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3055, dtype: object
color                                                                    Color
director_name                                                        Sam Raimi
num_critic_for_reviews                                                     221
duration                                                                    88
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     795
actor_2_name                                                     Bridget Fonda
actor_1_facebook_likes                                                     901
gross                                                              1.15011e+07
genres                                                   Comedy|Fantasy|Horror
actor_1_name                                                  Patricia Tallman
movie_title                                                  Army of Darkness 
num_voted_users                                                         128850
cast_total_facebook_likes                                                 3913
actor_3_name                                                    Embeth Davidtz
facenumber_in_poster                                                         0
plot_keywords                army of the dead|battle|necronomicon|reluctant...
movie_imdb_link              http://www.imdb.com/title/tt0106308/?ref_=fn_t...
num_user_for_reviews                                                       604
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.3e+07
title_year                                                                1992
actor_2_facebook_likes                                                     888
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 3056, dtype: object
color                                                                    Color
director_name                                                      Dewey Nicks
num_critic_for_reviews                                                      66
duration                                                                    86
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     424
actor_2_name                                                    Gedde Watanabe
actor_1_facebook_likes                                                     960
gross                                                              4.81424e+06
genres                                                          Comedy|Romance
actor_1_name                                                        Jaime King
movie_title                                                          Slackers 
num_voted_users                                                          12437
cast_total_facebook_likes                                                 2415
actor_3_name                                                          Jim Rash
facenumber_in_poster                                                         4
plot_keywords                                    blackmail|fall|love|nerd|scam
movie_imdb_link              http://www.imdb.com/title/tt0240900/?ref_=fn_t...
num_user_for_reviews                                                       107
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2002
actor_2_facebook_likes                                                     448
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       405
Name: 3057, dtype: object
color                                                                    Color
director_name                                                  Lasse Hallström
num_critic_for_reviews                                                      80
duration                                                                   118
director_facebook_likes                                                    529
actor_3_facebook_likes                                                     472
actor_2_name                                                 Leonardo DiCaprio
actor_1_facebook_likes                                                   40000
gross                                                              9.17021e+06
genres                                                           Drama|Romance
actor_1_name                                                       Johnny Depp
movie_title                                       What's Eating Gilbert Grape 
num_voted_users                                                         171882
cast_total_facebook_likes                                                69746
actor_3_name                                                       Kevin Tighe
facenumber_in_poster                                                         1
plot_keywords                apostrophe in title|face slap|four word title|...
movie_imdb_link              http://www.imdb.com/title/tt0108550/?ref_=fn_t...
num_user_for_reviews                                                       292
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                1993
actor_2_facebook_likes                                                   29000
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 3058, dtype: object
color                                                                    Color
director_name                                                   Philip Saville
num_critic_for_reviews                                                      25
duration                                                                   125
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     109
actor_2_name                                                   Alan Van Sprang
actor_1_facebook_likes                                                     866
gross                                                              4.06809e+06
genres                                                 Biography|Drama|History
actor_1_name                                                  Henry Ian Cusick
movie_title                              The Visual Bible: The Gospel of John 
num_voted_users                                                           2164
cast_total_facebook_likes                                                 1281
actor_3_name                                                       Scott Handy
facenumber_in_poster                                                         1
plot_keywords                1st century|based on the bible|miracle|religio...
movie_imdb_link              http://www.imdb.com/title/tt0377992/?ref_=fn_t...
num_user_for_reviews                                                        74
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                 1.7e+07
title_year                                                                2003
actor_2_facebook_likes                                                     147
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3059, dtype: object
color                                                                    Color
director_name                                                       Mike Leigh
num_critic_for_reviews                                                     169
duration                                                                   125
director_facebook_likes                                                    608
actor_3_facebook_likes                                                     579
actor_2_name                                                     Sally Hawkins
actor_1_facebook_likes                                                     979
gross                                                              3.75381e+06
genres                                                             Crime|Drama
actor_1_name                                                      Eddie Marsan
movie_title                                                        Vera Drake 
num_voted_users                                                          20307
cast_total_facebook_likes                                                 3133
actor_3_name                                                   Imelda Staunton
facenumber_in_poster                                                         1
plot_keywords                      1950s|miscarriage|neighbor|pregnancy|tailor
movie_imdb_link              http://www.imdb.com/title/tt0383694/?ref_=fn_t...
num_user_for_reviews                                                       165
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2004
actor_2_facebook_likes                                                     594
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3060, dtype: object
color                                                                    Color
director_name                                         Daisy von Scherler Mayer
num_critic_for_reviews                                                      70
duration                                                                    94
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     183
actor_2_name                                                        Dash Mihok
actor_1_facebook_likes                                                     658
gross                                                              3.03418e+06
genres                                                    Comedy|Music|Romance
actor_1_name                                                    Michael McKean
movie_title                                                          The Guru 
num_voted_users                                                          13622
cast_total_facebook_likes                                                 1559
actor_3_name                                                       Jimi Mistry
facenumber_in_poster                                                         3
plot_keywords                bollywood|illegal immigrant|live television|re...
movie_imdb_link              http://www.imdb.com/title/tt0280720/?ref_=fn_t...
num_user_for_reviews                                                       128
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2002
actor_2_facebook_likes                                                     463
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       550
Name: 3061, dtype: object
color                                                                    Color
director_name                                                        Mira Nair
num_critic_for_reviews                                                      15
duration                                                                   113
director_facebook_likes                                                    300
actor_3_facebook_likes                                                     787
actor_2_name                                                  Chazz Palminteri
actor_1_facebook_likes                                                    1000
gross                                                              2.83283e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                   Anjelica Huston
movie_title                                                  The Perez Family 
num_voted_users                                                           1761
cast_total_facebook_likes                                                 3072
actor_3_name                                                     Vincent Gallo
facenumber_in_poster                                                         2
plot_keywords                immigration|love|political prisoner|reference ...
movie_imdb_link              http://www.imdb.com/title/tt0114113/?ref_=fn_t...
num_user_for_reviews                                                        19
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                1995
actor_2_facebook_likes                                                     979
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       174
Name: 3062, dtype: object
color                                                                    Color
director_name                                                       Ethan Coen
num_critic_for_reviews                                                     535
duration                                                                   104
director_facebook_likes                                                   1000
actor_3_facebook_likes                                                     272
actor_2_name                                                       Max Casella
actor_1_facebook_likes                                                    3000
gross                                                              1.32143e+07
genres                                                             Drama|Music
actor_1_name                                                 Justin Timberlake
movie_title                                               Inside Llewyn Davis 
num_voted_users                                                          96233
cast_total_facebook_likes                                                 4082
actor_3_name                                                    Alex Karpovsky
facenumber_in_poster                                                         1
plot_keywords                1960s|car hitting an animal|folk singer|friend...
movie_imdb_link              http://www.imdb.com/title/tt2042568/?ref_=fn_t...
num_user_for_reviews                                                       313
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2013
actor_2_facebook_likes                                                     275
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     26000
Name: 3063, dtype: object
color                                                                    Color
director_name                                                 Tim Blake Nelson
num_critic_for_reviews                                                      92
duration                                                                    95
director_facebook_likes                                                    596
actor_3_facebook_likes                                                     697
actor_2_name                                                     Andrew Keegan
actor_1_facebook_likes                                                    1000
gross                                                              1.60174e+07
genres                                                  Drama|Romance|Thriller
actor_1_name                                                      Mekhi Phifer
movie_title                                                                 O 
num_voted_users                                                          17333
cast_total_facebook_likes                                                 3300
actor_3_name                                                        John Heard
facenumber_in_poster                                                         2
plot_keywords                basketball|basketball player|boarding school|l...
movie_imdb_link              http://www.imdb.com/title/tt0184791/?ref_=fn_t...
num_user_for_reviews                                                       153
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2001
actor_2_facebook_likes                                                     835
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3064, dtype: object
color                                                                    Color
director_name                                                William A. Graham
num_critic_for_reviews                                                      14
duration                                                                   102
director_facebook_likes                                                      8
actor_3_facebook_likes                                                      40
actor_2_name                                                      Wayne Pygram
actor_1_facebook_likes                                                   14000
gross                                                              2.80785e+06
genres                                                 Adventure|Drama|Romance
actor_1_name                                                    Milla Jovovich
movie_title                                         Return to the Blue Lagoon 
num_voted_users                                                          14129
cast_total_facebook_likes                                                14281
actor_3_name                                                      Lisa Pelikan
facenumber_in_poster                                                         1
plot_keywords                    baby|desert island|island|sequel|teenage girl
movie_imdb_link              http://www.imdb.com/title/tt0102782/?ref_=fn_t...
num_user_for_reviews                                                        39
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                1991
actor_2_facebook_likes                                                     163
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       967
Name: 3065, dtype: object
color                                                                    Color
director_name                                                      Martin Ritt
num_critic_for_reviews                                                      13
duration                                                                   124
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     104
actor_2_name                                                     Anthony Zerbe
actor_1_facebook_likes                                                     338
gross                                                                      NaN
genres                                                           Drama|History
actor_1_name                                                      Frank Finlay
movie_title                                                The Molly Maguires 
num_voted_users                                                           2603
cast_total_facebook_likes                                                  800
actor_3_name                                                    Samantha Eggar
facenumber_in_poster                                                         0
plot_keywords                coal|detective|irish|irish immigrant|pennsylvania
movie_imdb_link              http://www.imdb.com/title/tt0066090/?ref_=fn_t...
num_user_for_reviews                                                        36
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.1e+07
title_year                                                                1970
actor_2_facebook_likes                                                     275
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       608
Name: 3066, dtype: object
color                                                                    Color
director_name                                                    John Turturro
num_critic_for_reviews                                                      87
duration                                                                   105
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     776
actor_2_name                                                     Steve Buscemi
actor_1_facebook_likes                                                   14000
gross                                                                   540085
genres                                                  Comedy|Musical|Romance
actor_1_name                                                      Kate Winslet
movie_title                                              Romance & Cigarettes 
num_voted_users                                                          10052
cast_total_facebook_likes                                                28004
actor_3_name                                                      Eddie Izzard
facenumber_in_poster                                                         0
plot_keywords                                    anal sex|death|dream|poem|sex
movie_imdb_link              http://www.imdb.com/title/tt0368222/?ref_=fn_t...
num_user_for_reviews                                                        69
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2005
actor_2_facebook_likes                                                   12000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3067, dtype: object
color                                                                    Color
director_name                                                Agnieszka Holland
num_critic_for_reviews                                                      78
duration                                                                   104
director_facebook_likes                                                    238
actor_3_facebook_likes                                                      22
actor_2_name                                                     David Kennedy
actor_1_facebook_likes                                                      60
gross                                                                   352786
genres                                                   Biography|Drama|Music
actor_1_name                                                      Phyllida Law
movie_title                                                 Copying Beethoven 
num_voted_users                                                          11132
cast_total_facebook_likes                                                  150
actor_3_name                                                     Angus Barnett
facenumber_in_poster                                                         0
plot_keywords                music copyist|music student|musical compositio...
movie_imdb_link              http://www.imdb.com/title/tt0424908/?ref_=fn_t...
num_user_for_reviews                                                        86
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                2006
actor_2_facebook_likes                                                      35
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3068, dtype: object
color                                                                    Color
director_name                                                      Tobe Hooper
num_critic_for_reviews                                                     223
duration                                                                   120
director_facebook_likes                                                    365
actor_3_facebook_likes                                                     723
actor_2_name                                                  Zelda Rubinstein
actor_1_facebook_likes                                                     887
gross                                                                 7.66e+07
genres                                                          Fantasy|Horror
actor_1_name                                                  Heather O'Rourke
movie_title                                                       Poltergeist 
num_voted_users                                                         105448
cast_total_facebook_likes                                                 3876
actor_3_name                                                   Craig T. Nelson
facenumber_in_poster                                                         0
plot_keywords                ghost|haunted|haunting|house|paranormal invest...
movie_imdb_link              http://www.imdb.com/title/tt0084516/?ref_=fn_t...
num_user_for_reviews                                                       321
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.07e+07
title_year                                                                1982
actor_2_facebook_likes                                                     770
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 3069, dtype: object
color                                                                    Color
director_name                                                      Rowan Joffe
num_critic_for_reviews                                                     136
duration                                                                   111
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     405
actor_2_name                                                       Sean Harris
actor_1_facebook_likes                                                     845
gross                                                                      NaN
genres                                                    Crime|Drama|Thriller
actor_1_name                                                         Sam Riley
movie_title                                                     Brighton Rock 
num_voted_users                                                           5013
cast_total_facebook_likes                                                 3117
actor_3_name                                                        Geoff Bell
facenumber_in_poster                                                         2
plot_keywords                           brighton|catholic|gang|prayer|waitress
movie_imdb_link              http://www.imdb.com/title/tt1233192/?ref_=fn_t...
num_user_for_reviews                                                        59
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2010
actor_2_facebook_likes                                                     641
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3070, dtype: object
color                                                                    Color
director_name                                                      David Hackl
num_critic_for_reviews                                                     160
duration                                                                    95
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     357
actor_2_name                                                   Costas Mandylor
actor_1_facebook_likes                                                    3000
gross                                                                5.673e+07
genres                                                          Horror|Mystery
actor_1_name                                                        Julie Benz
movie_title                                                             Saw V 
num_voted_users                                                          88529
cast_total_facebook_likes                                                 5286
actor_3_name                                                   Scott Patterson
facenumber_in_poster                                                         0
plot_keywords                blood splatter|jigsaw|nazi|serial killer|swast...
movie_imdb_link              http://www.imdb.com/title/tt1132626/?ref_=fn_t...
num_user_for_reviews                                                       262
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.08e+07
title_year                                                                2008
actor_2_facebook_likes                                                     723
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3071, dtype: object
color                                                                    Color
director_name                                                Giuliano Montaldo
num_critic_for_reviews                                                      28
duration                                                                    96
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     199
actor_2_name                                                     Gena Rowlands
actor_1_facebook_likes                                                     917
gross                                                                      NaN
genres                                                    Crime|Drama|Thriller
actor_1_name                                                   John Cassavetes
movie_title                                                Machine Gun McCain 
num_voted_users                                                            618
cast_total_facebook_likes                                                 1827
actor_3_name                                                      Britt Ekland
facenumber_in_poster                                                         0
plot_keywords                    casino|gang violence|robbery|suicide|violence
movie_imdb_link              http://www.imdb.com/title/tt0065895/?ref_=fn_t...
num_user_for_reviews                                                        12
language                                                               English
country                                                                  Italy
content_rating                                                              GP
budget                                                                     NaN
title_year                                                                1969
actor_2_facebook_likes                                                     545
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                        85
Name: 3072, dtype: object
color                                                                    Color
director_name                                                     Lisa Azuelos
num_critic_for_reviews                                                      54
duration                                                                    97
director_facebook_likes                                                     15
actor_3_facebook_likes                                                      19
actor_2_name                                                         Lina Esco
actor_1_facebook_likes                                                     142
gross                                                                      NaN
genres                                                    Comedy|Drama|Romance
actor_1_name                                                         Nora Dunn
movie_title                                                               LOL 
num_voted_users                                                          45144
cast_total_facebook_likes                                                  248
actor_3_name                                                     Alix Freihage
facenumber_in_poster                                                         1
plot_keywords                best friend|girl in panties|high school|high s...
movie_imdb_link              http://www.imdb.com/title/tt1592873/?ref_=fn_t...
num_user_for_reviews                                                       111
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                2012
actor_2_facebook_likes                                                      79
imdb_score                                                                 4.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 3073, dtype: object
color                                                                    Color
director_name                                                     Ray Lawrence
num_critic_for_reviews                                                      75
duration                                                                   118
director_facebook_likes                                                     10
actor_3_facebook_likes                                                      48
actor_2_name                                               Deborra-Lee Furness
actor_1_facebook_likes                                                     172
gross                                                                   399879
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                       John Howard
movie_title                                                         Jindabyne 
num_voted_users                                                           5772
cast_total_facebook_likes                                                  378
actor_3_name                                                        Max Cullen
facenumber_in_poster                                                         2
plot_keywords                             camp|fishing|fishing trip|river|town
movie_imdb_link              http://www.imdb.com/title/tt0382765/?ref_=fn_t...
num_user_for_reviews                                                       115
language                                                               English
country                                                              Australia
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2006
actor_2_facebook_likes                                                      71
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       302
Name: 3074, dtype: object
color                                                                    Color
director_name                                                      Karan Johar
num_critic_for_reviews                                                      20
duration                                                                   193
director_facebook_likes                                                    160
actor_3_facebook_likes                                                     860
actor_2_name                                                      John Abraham
actor_1_facebook_likes                                                    8000
gross                                                              3.27544e+06
genres                                                                   Drama
actor_1_name                                                    Shah Rukh Khan
movie_title                                            Kabhi Alvida Naa Kehna 
num_voted_users                                                          13998
cast_total_facebook_likes                                                10822
actor_3_name                                                      Preity Zinta
facenumber_in_poster                                                         2
plot_keywords                extramarital affair|fashion magazine editor|ma...
movie_imdb_link              http://www.imdb.com/title/tt0449999/?ref_=fn_t...
num_user_for_reviews                                                       264
language                                                                 Hindi
country                                                                  India
content_rating                                                               R
budget                                                                   7e+08
title_year                                                                2006
actor_2_facebook_likes                                                    1000
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       659
Name: 3075, dtype: object
color                                                                    Color
director_name                                                    Oliver Parker
num_critic_for_reviews                                                     105
duration                                                                    97
director_facebook_likes                                                     32
actor_3_facebook_likes                                                     327
actor_2_name                                                    Rupert Everett
actor_1_facebook_likes                                                     893
gross                                                              1.85352e+07
genres                                                          Comedy|Romance
actor_1_name                                                     Minnie Driver
movie_title                                                  An Ideal Husband 
num_voted_users                                                          12980
cast_total_facebook_likes                                                 2640
actor_3_name                                                    Jeremy Northam
facenumber_in_poster                                                         3
plot_keywords                bachelor|blackmail|character says i love you|f...
movie_imdb_link              http://www.imdb.com/title/tt0122541/?ref_=fn_t...
num_user_for_reviews                                                       132
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 1.4e+07
title_year                                                                1999
actor_2_facebook_likes                                                     692
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       646
Name: 3076, dtype: object
color                                                                    Color
director_name                                                  Ruairi Robinson
num_critic_for_reviews                                                     120
duration                                                                    98
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     507
actor_2_name                                                   Olivia Williams
actor_1_facebook_likes                                                     805
gross                                                                    23838
genres                                                  Horror|Sci-Fi|Thriller
actor_1_name                                                      Romola Garai
movie_title                                             The Last Days on Mars 
num_voted_users                                                          28570
cast_total_facebook_likes                                                 2271
actor_3_name                                                        Tom Cullen
facenumber_in_poster                                                         0
plot_keywords                    alien infection|astronaut|mars|mission|zombie
movie_imdb_link              http://www.imdb.com/title/tt1709143/?ref_=fn_t...
num_user_for_reviews                                                       160
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2013
actor_2_facebook_likes                                                     766
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3077, dtype: object
color                                                                    Color
director_name                                                  Jaume Balagueró
num_critic_for_reviews                                                     108
duration                                                                   103
director_facebook_likes                                                     57
actor_3_facebook_likes                                                     132
actor_2_name                                                Giancarlo Giannini
actor_1_facebook_likes                                                     541
gross                                                              2.21601e+07
genres                                                                  Horror
actor_1_name                                                         Lena Olin
movie_title                                                          Darkness 
num_voted_users                                                          16747
cast_total_facebook_likes                                                 1228
actor_3_name                                                    Francesc Pagès
facenumber_in_poster                                                         0
plot_keywords                9 year old|blood|gramophone|house|missing chil...
movie_imdb_link              http://www.imdb.com/title/tt0273517/?ref_=fn_t...
num_user_for_reviews                                                       349
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.06e+07
title_year                                                                2002
actor_2_facebook_likes                                                     451
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 3078, dtype: object
color                                                                    Color
director_name                                                  Stanley Kubrick
num_critic_for_reviews                                                     285
duration                                                                   161
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      73
actor_2_name                                                     Gary Lockwood
actor_1_facebook_likes                                                     273
gross                                                              5.67154e+07
genres                                                Adventure|Mystery|Sci-Fi
actor_1_name                                                       Keir Dullea
movie_title                                             2001: A Space Odyssey 
num_voted_users                                                         427357
cast_total_facebook_likes                                                  727
actor_3_name                                                        Glenn Beck
facenumber_in_poster                                                         0
plot_keywords                ancient astronaut|famous line|message from out...
movie_imdb_link              http://www.imdb.com/title/tt0062622/?ref_=fn_t...
num_user_for_reviews                                                      1736
language                                                               English
country                                                                     UK
content_rating                                                               G
budget                                                                 1.2e+07
title_year                                                                1968
actor_2_facebook_likes                                                     117
imdb_score                                                                 8.3
aspect_ratio                                                               2.2
movie_facebook_likes                                                     24000
Name: 3079, dtype: object
color                                                                    Color
director_name                                                 Steven Spielberg
num_critic_for_reviews                                                     215
duration                                                                   120
director_facebook_likes                                                  14000
actor_3_facebook_likes                                                     548
actor_2_name                                                       Dee Wallace
actor_1_facebook_likes                                                     861
gross                                                              4.34949e+08
genres                                                           Family|Sci-Fi
actor_1_name                                                      Henry Thomas
movie_title                                        E.T. the Extra-Terrestrial 
num_voted_users                                                         281842
cast_total_facebook_likes                                                 2811
actor_3_name                                                      Peter Coyote
facenumber_in_poster                                                         0
plot_keywords                bicyclist|boy|doll|star wars reference|voice i...
movie_imdb_link              http://www.imdb.com/title/tt0083866/?ref_=fn_t...
num_user_for_reviews                                                       515
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                1.05e+07
title_year                                                                1982
actor_2_facebook_likes                                                     725
imdb_score                                                                 7.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                     34000
Name: 3080, dtype: object
color                                                                    Color
director_name                                                       Jon Kasdan
num_critic_for_reviews                                                      81
duration                                                                    97
director_facebook_likes                                                     21
actor_3_facebook_likes                                                     499
actor_2_name                                                       Elena Anaya
actor_1_facebook_likes                                                   17000
gross                                                              1.10434e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                   Kristen Stewart
movie_title                                              In the Land of Women 
num_voted_users                                                          27689
cast_total_facebook_likes                                                20312
actor_3_name                                                   Dustin Milligan
facenumber_in_poster                                                         0
plot_keywords                            actress|love|michigan|neighbor|writer
movie_imdb_link              http://www.imdb.com/title/tt0419843/?ref_=fn_t...
num_user_for_reviews                                                        74
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2007
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 3081, dtype: object
color                                                                    Color
director_name                                                         Léa Pool
num_critic_for_reviews                                                      17
duration                                                                    97
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     194
actor_2_name                                                       Marc Donato
actor_1_facebook_likes                                                     882
gross                                                                      NaN
genres                                                         Adventure|Drama
actor_1_name                                                      William Hurt
movie_title                                                The Blue Butterfly 
num_voted_users                                                           1337
cast_total_facebook_likes                                                 1554
actor_3_name                                                Raoul Max Trujillo
facenumber_in_poster                                                         1
plot_keywords                butterfly|entomologist|morpho butterfly|rain|r...
movie_imdb_link              http://www.imdb.com/title/tt0313300/?ref_=fn_t...
num_user_for_reviews                                                        28
language                                                               English
country                                                                 Canada
content_rating                                                              PG
budget                                                                1.25e+07
title_year                                                                2004
actor_2_facebook_likes                                                     450
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       392
Name: 3082, dtype: object
color                                                                    Color
director_name                                                     Floyd Mutrux
num_critic_for_reviews                                                       5
duration                                                                    99
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     327
actor_2_name                                                    Kelli Williams
actor_1_facebook_likes                                                     665
gross                                                                   125169
genres                                                            Comedy|Drama
actor_1_name                                                    Ricky Schroder
movie_title                                                There Goes My Baby 
num_voted_users                                                            859
cast_total_facebook_likes                                                 2272
actor_3_name                                                    Seymour Cassel
facenumber_in_poster                                                         2
plot_keywords                          high school|love|police|showdown|surfer
movie_imdb_link              http://www.imdb.com/title/tt0108320/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.05e+07
title_year                                                                1994
actor_2_facebook_likes                                                     446
imdb_score                                                                 6.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                       119
Name: 3083, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                       3
duration                                                                    24
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                      44
actor_2_name                                                      Johnny Flynn
actor_1_facebook_likes                                                     381
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                    Antonia Thomas
movie_title                                              Lovesick             
num_voted_users                                                           2651
cast_total_facebook_likes                                                  592
actor_3_name                                                   Hannah Britland
facenumber_in_poster                                                         3
plot_keywords                blond boy|chlamydia|list|male rear nudity|youn...
movie_imdb_link              http://www.imdb.com/title/tt4051832/?ref_=fn_t...
num_user_for_reviews                                                        18
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     102
imdb_score                                                                 7.9
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 3084, dtype: object
color                                                                    Color
director_name                                                       Sajid Khan
num_critic_for_reviews                                                      10
duration                                                                   144
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     119
actor_2_name                                                       Boman Irani
actor_1_facebook_likes                                                     564
gross                                                               1.1651e+06
genres                                                                  Comedy
actor_1_name                                                      Arjun Rampal
movie_title                                                         Housefull 
num_voted_users                                                           8598
cast_total_facebook_likes                                                 1121
actor_3_name                                                  Riteish Deshmukh
facenumber_in_poster                                                         5
plot_keywords                               bad luck|casino|lie|mix up|stutter
movie_imdb_link              http://www.imdb.com/title/tt1573072/?ref_=fn_t...
num_user_for_reviews                                                        43
language                                                                 Hindi
country                                                                  India
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                     154
imdb_score                                                                 5.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                       250
Name: 3085, dtype: object
color                                                                    Color
director_name                                                 Christopher Cain
num_critic_for_reviews                                                      43
duration                                                                   111
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     258
actor_2_name                                                    Taylor Handley
actor_1_facebook_likes                                                     482
gross                                                              1.06656e+06
genres                                           Drama|History|Romance|Western
actor_1_name                                                         Jon Gries
movie_title                                                    September Dawn 
num_voted_users                                                           2618
cast_total_facebook_likes                                                 1526
actor_3_name                                                        Trent Ford
facenumber_in_poster                                                         0
plot_keywords                         massacre|mormon|settler|utah|wagon train
movie_imdb_link              http://www.imdb.com/title/tt0473700/?ref_=fn_t...
num_user_for_reviews                                                       111
language                                                                   NaN
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2007
actor_2_facebook_likes                                                     362
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       411
Name: 3086, dtype: object
color                                                                    Color
director_name                                                      Dean Wright
num_critic_for_reviews                                                      43
duration                                                                   145
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     280
actor_2_name                                                Eduardo Verástegui
actor_1_facebook_likes                                                     639
gross                                                              5.66908e+06
genres                                                       Drama|History|War
actor_1_name                                                  Santiago Cabrera
movie_title                    For Greater Glory: The True Story of Cristiada 
num_voted_users                                                           3665
cast_total_facebook_likes                                                 1807
actor_3_name                                           Catalina Sandino Moreno
facenumber_in_poster                                                         1
plot_keywords                        catholic|hanging|mexico|rebellion|soldier
movie_imdb_link              http://www.imdb.com/title/tt1566501/?ref_=fn_t...
num_user_for_reviews                                                        57
language                                                               Spanish
country                                                                 Mexico
content_rating                                                               R
budget                                                             1.08188e+07
title_year                                                                2012
actor_2_facebook_likes                                                     377
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3087, dtype: object
color                                                                    Color
director_name                                                    Eric Lartigau
num_critic_for_reviews                                                      94
duration                                                                   106
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      24
actor_2_name                                                    Eric Elmosnino
actor_1_facebook_likes                                                      68
gross                                                                      NaN
genres                                                      Comedy|Drama|Music
actor_1_name                                                       Karin Viard
movie_title                                                 La Famille Bélier 
num_voted_users                                                          15060
cast_total_facebook_likes                                                  175
actor_3_name                                                  François Damiens
facenumber_in_poster                                                         4
plot_keywords                  audition|deaf|family relationships|love|singing
movie_imdb_link              http://www.imdb.com/title/tt3547740/?ref_=fn_t...
num_user_for_reviews                                                        27
language                                                                French
country                                                                 France
content_rating                                                             NaN
budget                                                                 1.1e+07
title_year                                                                2014
actor_2_facebook_likes                                                      29
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3088, dtype: object
color                                                                    Color
director_name                                                     Gus Van Sant
num_critic_for_reviews                                                     161
duration                                                                   126
director_facebook_likes                                                    835
actor_3_facebook_likes                                                     893
actor_2_name                                                        Matt Damon
actor_1_facebook_likes                                                   49000
gross                                                              1.38339e+08
genres                                                                   Drama
actor_1_name                                                    Robin Williams
movie_title                                                 Good Will Hunting 
num_voted_users                                                         604904
cast_total_facebook_likes                                                63710
actor_3_name                                                     Minnie Driver
facenumber_in_poster                                                         2
plot_keywords                     friend|genius|janitor|loss of wife|professor
movie_imdb_link              http://www.imdb.com/title/tt0119217/?ref_=fn_t...
num_user_for_reviews                                                       682
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1997
actor_2_facebook_likes                                                   13000
imdb_score                                                                 8.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     31000
Name: 3089, dtype: object
color                                                                    Color
director_name                                               Shintaro Shimosawa
num_critic_for_reviews                                                      38
duration                                                                   106
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     571
actor_2_name                                                   Anthony Hopkins
actor_1_facebook_likes                                                   14000
gross                                                                      NaN
genres                                                          Drama|Thriller
actor_1_name                                                         Al Pacino
movie_title                                                        Misconduct 
num_voted_users                                                           6935
cast_total_facebook_likes                                                27660
actor_3_name                                                       Glen Powell
facenumber_in_poster                                                         3
plot_keywords                black panties|lust|sexual attraction|voyeur|vo...
movie_imdb_link              http://www.imdb.com/title/tt3658772/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2016
actor_2_facebook_likes                                                   12000
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3090, dtype: object
color                                                                    Color
director_name                                              Darren Lynn Bousman
num_critic_for_reviews                                                     210
duration                                                                   121
director_facebook_likes                                                    163
actor_3_facebook_likes                                                     482
actor_2_name                                                     Shawnee Smith
actor_1_facebook_likes                                                     723
gross                                                              8.01503e+07
genres                                                          Horror|Mystery
actor_1_name                                                   Costas Mandylor
movie_title                                                           Saw III 
num_voted_users                                                         142115
cast_total_facebook_likes                                                 3189
actor_3_name                                                    Leigh Whannell
facenumber_in_poster                                                         0
plot_keywords                brutality|female full frontal nudity|female nu...
movie_imdb_link              http://www.imdb.com/title/tt0489270/?ref_=fn_t...
num_user_for_reviews                                                       614
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2006
actor_2_facebook_likes                                                     651
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3091, dtype: object
color                                                                    Color
director_name                                                     Ivan Reitman
num_critic_for_reviews                                                      52
duration                                                                   117
director_facebook_likes                                                    425
actor_3_facebook_likes                                                     901
actor_2_name                                                      Harold Ramis
actor_1_facebook_likes                                                   13000
gross                                                                 8.53e+07
genres                                                       Action|Comedy|War
actor_1_name                                                       Bill Murray
movie_title                                                           Stripes 
num_voted_users                                                          48629
cast_total_facebook_likes                                                27378
actor_3_name                                                    Judge Reinhold
facenumber_in_poster                                                         1
plot_keywords                         army|boot camp|breasts|graduation|rescue
movie_imdb_link              http://www.imdb.com/title/tt0083131/?ref_=fn_t...
num_user_for_reviews                                                       134
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1981
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3092, dtype: object
color                                                                    Color
director_name                                                      Peyton Reed
num_critic_for_reviews                                                     139
duration                                                                    98
director_facebook_likes                                                    235
actor_3_facebook_likes                                                     229
actor_2_name                                                    Lindsay Sloane
actor_1_facebook_likes                                                    4000
gross                                                              6.83536e+07
genres                                                            Comedy|Sport
actor_1_name                                                     Kirsten Dunst
movie_title                                                       Bring It On 
num_voted_users                                                          70141
cast_total_facebook_likes                                                 5270
actor_3_name                                                      Clare Kramer
facenumber_in_poster                                                         1
plot_keywords                championship|cheerleading|high school|teen com...
movie_imdb_link              http://www.imdb.com/title/tt0204946/?ref_=fn_t...
num_user_for_reviews                                                       385
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2000
actor_2_facebook_likes                                                     464
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3093, dtype: object
color                                                                    Color
director_name                                                   James DeMonaco
num_critic_for_reviews                                                     165
duration                                                                   109
director_facebook_likes                                                     65
actor_3_facebook_likes                                                     393
actor_2_name                                               Joseph Julian Soria
actor_1_facebook_likes                                                     798
gross                                                              7.88451e+07
genres                                           Action|Horror|Sci-Fi|Thriller
actor_1_name                                                      Frank Grillo
movie_title                                          The Purge: Election Year 
num_voted_users                                                          17596
cast_total_facebook_likes                                                 2480
actor_3_name                                                Mykelti Williamson
facenumber_in_poster                                                         1
plot_keywords                cathedral|minister|presidential election|refer...
movie_imdb_link              http://www.imdb.com/title/tt4094724/?ref_=fn_t...
num_user_for_reviews                                                        94
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2016
actor_2_facebook_likes                                                     465
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3094, dtype: object
color                                                                    Color
director_name                                                    Robert Iscove
num_critic_for_reviews                                                      96
duration                                                                    95
director_facebook_likes                                                      7
actor_3_facebook_likes                                                    1000
actor_2_name                                                       Clea DuVall
actor_1_facebook_likes                                                   23000
gross                                                              6.33195e+07
genres                                                          Comedy|Romance
actor_1_name                                                       Paul Walker
movie_title                                                    She's All That 
num_voted_users                                                          67115
cast_total_facebook_likes                                                28734
actor_3_name                                                     Kieran Culkin
facenumber_in_poster                                                         2
plot_keywords                           bet|friend|high school|prom|prom queen
movie_imdb_link              http://www.imdb.com/title/tt0160862/?ref_=fn_t...
num_user_for_reviews                                                       389
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                1999
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3095, dtype: object
color                                                                    Color
director_name                                                      Lee Daniels
num_critic_for_reviews                                                     323
duration                                                                   109
director_facebook_likes                                                    304
actor_3_facebook_likes                                                     736
actor_2_name                                                   Gabourey Sidibe
actor_1_facebook_likes                                                     939
gross                                                               4.7537e+07
genres                                                                   Drama
actor_1_name                                                          Mo'Nique
movie_title                                                          Precious 
num_voted_users                                                          86956
cast_total_facebook_likes                                                 3276
actor_3_name                                                      Mariah Carey
facenumber_in_poster                                                         0
plot_keywords                abuse|african american lesbian|lesbian|lesbian...
movie_imdb_link              http://www.imdb.com/title/tt0929632/?ref_=fn_t...
num_user_for_reviews                                                       275
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2009
actor_2_facebook_likes                                                     906
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     12000
Name: 3096, dtype: object
color                                                                    Color
director_name                                              Darren Lynn Bousman
num_critic_for_reviews                                                     190
duration                                                                    96
director_facebook_likes                                                    163
actor_3_facebook_likes                                                     448
actor_2_name                                                     Shawnee Smith
actor_1_facebook_likes                                                     723
gross                                                              6.32703e+07
genres                                                          Horror|Mystery
actor_1_name                                                   Costas Mandylor
movie_title                                                            Saw IV 
num_voted_users                                                         111087
cast_total_facebook_likes                                                 3492
actor_3_name                                                   Angus Macfadyen
facenumber_in_poster                                                         0
plot_keywords                          detective|fbi|rape|rapist|serial rapist
movie_imdb_link              http://www.imdb.com/title/tt0890870/?ref_=fn_t...
num_user_for_reviews                                                       319
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2007
actor_2_facebook_likes                                                     651
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3097, dtype: object
color                                                                    Color
director_name                                                     Geoffrey Sax
num_critic_for_reviews                                                     173
duration                                                                   101
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     368
actor_2_name                                               Keegan Connor Tracy
actor_1_facebook_likes                                                     494
gross                                                              5.58657e+07
genres                                           Drama|Horror|Mystery|Thriller
actor_1_name                                                Deborah Kara Unger
movie_title                                                       White Noise 
num_voted_users                                                          41763
cast_total_facebook_likes                                                 2013
actor_3_name                                                        Mike Dopud
facenumber_in_poster                                                         0
plot_keywords                            architect|grave|obsession|river|voice
movie_imdb_link              http://www.imdb.com/title/tt0375210/?ref_=fn_t...
num_user_for_reviews                                                       403
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2005
actor_2_facebook_likes                                                     392
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3098, dtype: object
color                                                                    Color
director_name                                                      Tyler Perry
num_critic_for_reviews                                                      46
duration                                                                   107
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     685
actor_2_name                                                      Cicely Tyson
actor_1_facebook_likes                                                    1000
gross                                                              6.32315e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Boris Kodjoe
movie_title                                            Madea's Family Reunion 
num_voted_users                                                           8962
cast_total_facebook_likes                                                 5264
actor_3_name                                                   Blair Underwood
facenumber_in_poster                                                         4
plot_keywords                cross dressing|family reunion|madea series|ref...
movie_imdb_link              http://www.imdb.com/title/tt0455612/?ref_=fn_t...
num_user_for_reviews                                                       137
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+06
title_year                                                                2006
actor_2_facebook_likes                                                     907
imdb_score                                                                   5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       676
Name: 3099, dtype: object
color                                                                    Color
director_name                                                  Martin Scorsese
num_critic_for_reviews                                                      59
duration                                                                   119
director_facebook_likes                                                  17000
actor_3_facebook_likes                                                     638
actor_2_name                                                        Bill Cobbs
actor_1_facebook_likes                                                   10000
gross                                                               5.2294e+07
genres                                                             Drama|Sport
actor_1_name                                                        Tom Cruise
movie_title                                                The Color of Money 
num_voted_users                                                          57831
cast_total_facebook_likes                                                11895
actor_3_name                                       Mary Elizabeth Mastrantonio
facenumber_in_poster                                                         1
plot_keywords                       hustler|losing|pool|pool player|tournament
movie_imdb_link              http://www.imdb.com/title/tt0090863/?ref_=fn_t...
num_user_for_reviews                                                       115
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.38e+07
title_year                                                                1986
actor_2_facebook_likes                                                     970
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3100, dtype: object
color                                                          Black and White
director_name                                                      Ken Annakin
num_critic_for_reviews                                                      53
duration                                                                   178
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     196
actor_2_name                                                    Richard Beymer
actor_1_facebook_likes                                                     726
gross                                                                      NaN
genres                                                Action|Drama|History|War
actor_1_name                                                    Richard Burton
movie_title                                                   The Longest Day 
num_voted_users                                                          43270
cast_total_facebook_likes                                                 1554
actor_3_name                                                      Eddie Albert
facenumber_in_poster                                                         3
plot_keywords                     allies|d day|invasion|normandy|world war two
movie_imdb_link              http://www.imdb.com/title/tt0056197/?ref_=fn_t...
num_user_for_reviews                                                       192
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   1e+07
title_year                                                                1962
actor_2_facebook_likes                                                     249
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3101, dtype: object
color                                                                    Color
director_name                                                    Stephen Herek
num_critic_for_reviews                                                      22
duration                                                                   100
director_facebook_likes                                                     65
actor_3_facebook_likes                                                     577
actor_2_name                                                       Shaun Weiss
actor_1_facebook_likes                                                     633
gross                                                              5.07523e+07
genres                                               Comedy|Drama|Family|Sport
actor_1_name                                                        Lane Smith
movie_title                                                  The Mighty Ducks 
num_voted_users                                                          44502
cast_total_facebook_likes                                                 3362
actor_3_name                                                      Elden Henson
facenumber_in_poster                                                         8
plot_keywords                            coach|hockey team|lawyer|respect|team
movie_imdb_link              http://www.imdb.com/title/tt0104868/?ref_=fn_t...
num_user_for_reviews                                                        46
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+07
title_year                                                                1992
actor_2_facebook_likes                                                     613
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3102, dtype: object
color                                                                    Color
director_name                                                  Takashi Shimizu
num_critic_for_reviews                                                     203
duration                                                                    98
director_facebook_likes                                                     70
actor_3_facebook_likes                                                     634
actor_2_name                                                       Clea DuVall
actor_1_facebook_likes                                                    4000
gross                                                              1.10176e+08
genres                                                 Horror|Mystery|Thriller
actor_1_name                                             Sarah Michelle Gellar
movie_title                                                        The Grudge 
num_voted_users                                                         115050
cast_total_facebook_likes                                                 7461
actor_3_name                                                         Ted Raimi
facenumber_in_poster                                                         0
plot_keywords                                  american|curse|japan|nurse|rage
movie_imdb_link              http://www.imdb.com/title/tt0391198/?ref_=fn_t...
num_user_for_reviews                                                       911
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2004
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                      4000
Name: 3103, dtype: object
color                                                                    Color
director_name                                                     Dennis Dugan
num_critic_for_reviews                                                      77
duration                                                                    92
director_facebook_likes                                                    221
actor_3_facebook_likes                                                     491
actor_2_name                                                      Kevin Nealon
actor_1_facebook_likes                                                   11000
gross                                                               3.8624e+07
genres                                                            Comedy|Sport
actor_1_name                                                      Adam Sandler
movie_title                                                     Happy Gilmore 
num_voted_users                                                         156143
cast_total_facebook_likes                                                13162
actor_3_name                                                       Frances Bay
facenumber_in_poster                                                         1
plot_keywords                golf|golf ball|golfer|grandmother's house|tour...
movie_imdb_link              http://www.imdb.com/title/tt0116483/?ref_=fn_t...
num_user_for_reviews                                                       289
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                1996
actor_2_facebook_likes                                                     503
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3104, dtype: object
color                                                                    Color
director_name                                                     Victor Salva
num_critic_for_reviews                                                     190
duration                                                                    90
director_facebook_likes                                                    108
actor_3_facebook_likes                                                     270
actor_2_name                                                  Patricia Belcher
actor_1_facebook_likes                                                    1000
gross                                                                3.747e+07
genres                                                          Horror|Mystery
actor_1_name                                                    Eileen Brennan
movie_title                                                  Jeepers Creepers 
num_voted_users                                                          86890
cast_total_facebook_likes                                                 1982
actor_3_name                                                    Jonathan Breck
facenumber_in_poster                                                         0
plot_keywords                            demon|gore|record player|tattoo|wings
movie_imdb_link              http://www.imdb.com/title/tt0263488/?ref_=fn_t...
num_user_for_reviews                                                       985
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2001
actor_2_facebook_likes                                                     322
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3105, dtype: object
color                                                                    Color
director_name                                                    Stephen Herek
num_critic_for_reviews                                                      81
duration                                                                    90
director_facebook_likes                                                     65
actor_3_facebook_likes                                                     730
actor_2_name                                                     George Carlin
actor_1_facebook_likes                                                   18000
gross                                                               4.0485e+07
genres                                           Adventure|Comedy|Music|Sci-Fi
actor_1_name                                                      Keanu Reeves
movie_title                                  Bill & Ted's Excellent Adventure 
num_voted_users                                                          85362
cast_total_facebook_likes                                                20795
actor_3_name                                                          Al Leong
facenumber_in_poster                                                         6
plot_keywords                failing student|high school|payphone|teenager|...
movie_imdb_link              http://www.imdb.com/title/tt0096928/?ref_=fn_t...
num_user_for_reviews                                                       181
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+07
title_year                                                                1989
actor_2_facebook_likes                                                     769
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3106, dtype: object
color                                                                    Color
director_name                                                       Carol Reed
num_critic_for_reviews                                                      56
duration                                                                   153
director_facebook_likes                                                     82
actor_3_facebook_likes                                                     139
actor_2_name                                                         Ron Moody
actor_1_facebook_likes                                                     695
gross                                                                 1.68e+07
genres                                                    Drama|Family|Musical
actor_1_name                                                       Oliver Reed
movie_title                                                           Oliver! 
num_voted_users                                                          25303
cast_total_facebook_likes                                                 1593
actor_3_name                                                         Jack Wild
facenumber_in_poster                                                         1
plot_keywords                          abuse|child|orphan|orphanage|pickpocket
movie_imdb_link              http://www.imdb.com/title/tt0063385/?ref_=fn_t...
num_user_for_reviews                                                       138
language                                                               English
country                                                                     UK
content_rating                                                               G
budget                                                                   1e+07
title_year                                                                1968
actor_2_facebook_likes                                                     275
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3107, dtype: object
color                                                                    Color
director_name                                                      John Madden
num_critic_for_reviews                                                     264
duration                                                                   124
director_facebook_likes                                                    108
actor_3_facebook_likes                                                     186
actor_2_name                                                   Penelope Wilton
actor_1_facebook_likes                                                    1000
gross                                                               4.6377e+07
genres                                                            Comedy|Drama
actor_1_name                                                     Tom Wilkinson
movie_title                                    The Best Exotic Marigold Hotel 
num_voted_users                                                          75306
cast_total_facebook_likes                                                 1898
actor_3_name                                                       Celia Imrie
facenumber_in_poster                                                         3
plot_keywords                          hotel|india|marigold|retiree|retirement
movie_imdb_link              http://www.imdb.com/title/tt1412386/?ref_=fn_t...
num_user_for_reviews                                                       266
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2011
actor_2_facebook_likes                                                     400
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     48000
Name: 3108, dtype: object
color                                                                    Color
director_name                                                     Chuck Sheetz
num_critic_for_reviews                                                      44
duration                                                                    82
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     345
actor_2_name                                                   Andrew Lawrence
actor_1_facebook_likes                                                     759
gross                                                              3.66968e+07
genres                                  Animation|Comedy|Family|Mystery|Sci-Fi
actor_1_name                                                    Diedrich Bader
movie_title                                              Recess: School's Out 
num_voted_users                                                           6808
cast_total_facebook_likes                                                 2197
actor_3_name                                                    Dabney Coleman
facenumber_in_poster                                                         0
plot_keywords                friend|principal|summer|summer camp|summer vac...
movie_imdb_link              http://www.imdb.com/title/tt0265632/?ref_=fn_t...
num_user_for_reviews                                                        38
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 2.3e+07
title_year                                                                2001
actor_2_facebook_likes                                                     563
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       227
Name: 3109, dtype: object
color                                                                    Color
director_name                                                    George Miller
num_critic_for_reviews                                                     117
duration                                                                   107
director_facebook_likes                                                    750
actor_3_facebook_likes                                                      60
actor_2_name                                                      Bruce Spence
actor_1_facebook_likes                                                     794
gross                                                                 3.62e+07
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                       Tina Turner
movie_title                                        Mad Max Beyond Thunderdome 
num_voted_users                                                         101840
cast_total_facebook_likes                                                 1529
actor_3_name                                                   Angelo Rossitto
facenumber_in_poster                                                         2
plot_keywords                       arena|desert|fight|mad max|post apocalypse
movie_imdb_link              http://www.imdb.com/title/tt0089530/?ref_=fn_t...
num_user_for_reviews                                                       193
language                                                               English
country                                                              Australia
content_rating                                                           PG-13
budget                                                             1.23055e+07
title_year                                                                1985
actor_2_facebook_likes                                                     531
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3110, dtype: object
color                                                                    Color
director_name                                                   Mark L. Lester
num_critic_for_reviews                                                     124
duration                                                                    75
director_facebook_likes                                                     73
actor_3_facebook_likes                                                     581
actor_2_name                                                      Vernon Wells
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                               Action|Adventure|Thriller
actor_1_name                                                         Bill Duke
movie_title                                                          Commando 
num_voted_users                                                         111649
cast_total_facebook_likes                                                 3192
actor_3_name                                                    Rae Dawn Chong
facenumber_in_poster                                                         0
plot_keywords                body count|dictator|jumping from an airplane|k...
movie_imdb_link              http://www.imdb.com/title/tt0088944/?ref_=fn_t...
num_user_for_reviews                                                       437
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1985
actor_2_facebook_likes                                                     745
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3111, dtype: object
color                                                                    Color
director_name                                               William Brent Bell
num_critic_for_reviews                                                     159
duration                                                                    97
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     130
actor_2_name                                                      Rupert Evans
actor_1_facebook_likes                                                    4000
gross                                                              3.57942e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                      Lauren Cohan
movie_title                                                           The Boy 
num_voted_users                                                          35654
cast_total_facebook_likes                                                 4687
actor_3_name                                                 Stephanie Lemelin
facenumber_in_poster                                                         0
plot_keywords                  animate doll|doll|england|nanny|surprise ending
movie_imdb_link              http://www.imdb.com/title/tt3882082/?ref_=fn_t...
num_user_for_reviews                                                       155
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2016
actor_2_facebook_likes                                                     334
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     20000
Name: 3112, dtype: object
color                                                                    Color
director_name                                                John Erick Dowdle
num_critic_for_reviews                                                     273
duration                                                                    80
director_facebook_likes                                                     66
actor_3_facebook_likes                                                     816
actor_2_name                                                   Bokeem Woodbine
actor_1_facebook_likes                                                    2000
gross                                                              3.35832e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                  Bojana Novakovic
movie_title                                                             Devil 
num_voted_users                                                         104089
cast_total_facebook_likes                                                 5628
actor_3_name                                                    Geoffrey Arend
facenumber_in_poster                                                         0
plot_keywords                devil|elevator|hit and run|throat slitting|tra...
movie_imdb_link              http://www.imdb.com/title/tt1314655/?ref_=fn_t...
num_user_for_reviews                                                       319
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2010
actor_2_facebook_likes                                                     904
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 3113, dtype: object
color                                                                    Color
director_name                                                     Marcus Raboy
num_critic_for_reviews                                                      26
duration                                                                    85
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     615
actor_2_name                                                         Mike Epps
actor_1_facebook_likes                                                     723
gross                                                              3.29837e+07
genres                                                            Comedy|Drama
actor_1_name                                                  John Witherspoon
movie_title                                                 Friday After Next 
num_voted_users                                                          19284
cast_total_facebook_likes                                                 3712
actor_3_name                                                     Katt Williams
facenumber_in_poster                                                         0
plot_keywords                apartment|christmas|christmas present|rent|sec...
movie_imdb_link              http://www.imdb.com/title/tt0293815/?ref_=fn_t...
num_user_for_reviews                                                        66
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   2e+07
title_year                                                                2002
actor_2_facebook_likes                                                     706
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       981
Name: 3114, dtype: object
color                                                                    Color
director_name                                                   Leigh Whannell
num_critic_for_reviews                                                     242
duration                                                                    97
director_facebook_likes                                                    482
actor_3_facebook_likes                                                     482
actor_2_name                                                     Hayley Kiyoko
actor_1_facebook_likes                                                     852
gross                                                              5.22005e+07
genres                                                 Fantasy|Horror|Thriller
actor_1_name                                                         Lin Shaye
movie_title                                              Insidious: Chapter 3 
num_voted_users                                                          54190
cast_total_facebook_likes                                                 2426
actor_3_name                                                    Leigh Whannell
facenumber_in_poster                                                         0
plot_keywords                   demon|possession|psychic|supernatural|teenager
movie_imdb_link              http://www.imdb.com/title/tt3195644/?ref_=fn_t...
num_user_for_reviews                                                       183
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2015
actor_2_facebook_likes                                                     542
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     29000
Name: 3115, dtype: object
color                                                                    Color
director_name                                                  Michael Schultz
num_critic_for_reviews                                                      55
duration                                                                   109
director_facebook_likes                                                     78
actor_3_facebook_likes                                                     619
actor_2_name                                                            Vanity
actor_1_facebook_likes                                                     854
gross                                                                  3.3e+07
genres                                               Action|Comedy|Drama|Music
actor_1_name                                                        Mike Starr
movie_title                                                   The Last Dragon 
num_voted_users                                                           9424
cast_total_facebook_likes                                                 3394
actor_3_name                                             Keshia Knight Pulliam
facenumber_in_poster                                                         1
plot_keywords                cult film|kung fu|kung fu classic|martial arts...
movie_imdb_link              http://www.imdb.com/title/tt0089461/?ref_=fn_t...
num_user_for_reviews                                                       109
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                1985
actor_2_facebook_likes                                                     841
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3116, dtype: object
color                                                                    Color
director_name                                                      Guy Ritchie
num_critic_for_reviews                                                     151
duration                                                                   104
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    1000
actor_2_name                                                         Brad Pitt
actor_1_facebook_likes                                                   26000
gross                                                              3.00931e+07
genres                                                            Comedy|Crime
actor_1_name                                                     Jason Statham
movie_title                                                            Snatch 
num_voted_users                                                         600996
cast_total_facebook_likes                                                39175
actor_3_name                                                     Jason Flemyng
facenumber_in_poster                                                         6
plot_keywords                                 boxer|boxing|diamond|fight|gypsy
movie_imdb_link              http://www.imdb.com/title/tt0208092/?ref_=fn_t...
num_user_for_reviews                                                       726
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2000
actor_2_facebook_likes                                                   11000
imdb_score                                                                 8.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     27000
Name: 3117, dtype: object
color                                                                    Color
director_name                                                    Brett Leonard
num_critic_for_reviews                                                      48
duration                                                                   140
director_facebook_likes                                                     32
actor_3_facebook_likes                                                     120
actor_2_name                                                    Austin O'Brien
actor_1_facebook_likes                                                     535
gross                                                               3.2101e+07
genres                                                           Horror|Sci-Fi
actor_1_name                                                        Jeff Fahey
movie_title                                                 The Lawnmower Man 
num_voted_users                                                          27800
cast_total_facebook_likes                                                 1109
actor_3_name                                                        Troy Evans
facenumber_in_poster                                                         0
plot_keywords                intelligence|science runs amok|scientist|super...
movie_imdb_link              http://www.imdb.com/title/tt0104692/?ref_=fn_t...
num_user_for_reviews                                                        96
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1992
actor_2_facebook_likes                                                     211
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3118, dtype: object
color                                                                    Color
director_name                                                    Peter Sollett
num_critic_for_reviews                                                     166
duration                                                                    90
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     617
actor_2_name                                                     Alexis Dziena
actor_1_facebook_likes                                                     904
gross                                                              3.14873e+07
genres                                              Comedy|Drama|Music|Romance
actor_1_name                                                       Ari Graynor
movie_title                                Nick and Norah's Infinite Playlist 
num_voted_users                                                          74887
cast_total_facebook_likes                                                 2807
actor_3_name                                                         Aaron Yoo
facenumber_in_poster                                                         2
plot_keywords                                   band|gay|gay friend|love|night
movie_imdb_link              http://www.imdb.com/title/tt0981227/?ref_=fn_t...
num_user_for_reviews                                                       129
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+06
title_year                                                                2008
actor_2_facebook_likes                                                     715
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3119, dtype: object
color                                                                    Color
director_name                                                      Kevin Smith
num_critic_for_reviews                                                     206
duration                                                                   130
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     769
actor_2_name                                                  Janeane Garofalo
actor_1_facebook_likes                                                   13000
gross                                                              3.06514e+07
genres                                          Adventure|Comedy|Drama|Fantasy
actor_1_name                                                        Matt Damon
movie_title                                                             Dogma 
num_voted_users                                                         181737
cast_total_facebook_likes                                                16693
actor_3_name                                                     George Carlin
facenumber_in_poster                                                         8
plot_keywords                     abortion|abortion clinic|angel|church|clinic
movie_imdb_link              http://www.imdb.com/title/tt0120655/?ref_=fn_t...
num_user_for_reviews                                                      1015
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1999
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 3120, dtype: object
color                                                                    Color
director_name                                                       Bob Dolman
num_critic_for_reviews                                                      92
duration                                                                    98
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      73
actor_2_name                                                Eva Amurri Martino
actor_1_facebook_likes                                                     931
gross                                                              3.03063e+07
genres                                                            Comedy|Drama
actor_1_name                                                 Erika Christensen
movie_title                                                The Banger Sisters 
num_voted_users                                                          12388
cast_total_facebook_likes                                                 1917
actor_3_name                                                         Sal Lopez
facenumber_in_poster                                                         2
plot_keywords                        bartender|groupie|lawyer|road trip|writer
movie_imdb_link              http://www.imdb.com/title/tt0280460/?ref_=fn_t...
num_user_for_reviews                                                       147
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2002
actor_2_facebook_likes                                                     797
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       744
Name: 3121, dtype: object
color                                                                    Color
director_name                                                        Joe Dante
num_critic_for_reviews                                                      78
duration                                                                   101
director_facebook_likes                                                    287
actor_3_facebook_likes                                                     257
actor_2_name                                                          Al Leong
actor_1_facebook_likes                                                     745
gross                                                                 2.95e+07
genres                                                   Fantasy|Horror|Sci-Fi
actor_1_name                                                     Albert Brooks
movie_title                                          Twilight Zone: The Movie 
num_voted_users                                                          25613
cast_total_facebook_likes                                                 1954
actor_3_name                                                        Vic Morrow
facenumber_in_poster                                                         0
plot_keywords                              1940s|1960s|bar|kick the can|remake
movie_imdb_link              http://www.imdb.com/title/tt0086491/?ref_=fn_t...
num_user_for_reviews                                                       121
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+07
title_year                                                                1983
actor_2_facebook_likes                                                     730
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3122, dtype: object
color                                                                    Color
director_name                                                 Rowdy Herrington
num_critic_for_reviews                                                      83
duration                                                                   114
director_facebook_likes                                                      9
actor_3_facebook_likes                                                     466
actor_2_name                                                       Kevin Tighe
actor_1_facebook_likes                                                     623
gross                                                                3.005e+07
genres                                                         Action|Thriller
actor_1_name                                                       Ben Gazzara
movie_title                                                        Road House 
num_voted_users                                                          42987
cast_total_facebook_likes                                                 2484
actor_3_name                                                       Kelly Lynch
facenumber_in_poster                                                         1
plot_keywords                bikini|cult film|fired from the job|martial ar...
movie_imdb_link              http://www.imdb.com/title/tt0098206/?ref_=fn_t...
num_user_for_reviews                                                       201
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.7e+07
title_year                                                                1989
actor_2_facebook_likes                                                     472
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3123, dtype: object
color                                                                    Color
director_name                                              Keenen Ivory Wayans
num_critic_for_reviews                                                       8
duration                                                                   100
director_facebook_likes                                                    322
actor_3_facebook_likes                                                     534
actor_2_name                                        Salli Richardson-Whitfield
actor_1_facebook_likes                                                     851
gross                                                              2.93924e+07
genres                                                     Action|Comedy|Crime
actor_1_name                                                Jada Pinkett Smith
movie_title                                            A Low Down Dirty Shame 
num_voted_users                                                           3924
cast_total_facebook_likes                                                 3190
actor_3_name                                                 Charles S. Dutton
facenumber_in_poster                                                         2
plot_keywords                            drugs|ex cop|gun fu|machismo|shootout
movie_imdb_link              http://www.imdb.com/title/tt0110399/?ref_=fn_t...
num_user_for_reviews                                                        26
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1994
actor_2_facebook_likes                                                     543
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       368
Name: 3124, dtype: object
color                                                                    Color
director_name                                                      John Polson
num_critic_for_reviews                                                      86
duration                                                                    85
director_facebook_likes                                                     21
actor_3_facebook_likes                                                     782
actor_2_name                                                     Shiri Appleby
actor_1_facebook_likes                                                     931
gross                                                              2.85639e+07
genres                                                          Drama|Thriller
actor_1_name                                                 Erika Christensen
movie_title                                                           Swimfan 
num_voted_users                                                          16300
cast_total_facebook_likes                                                 3819
actor_3_name                                                      Jason Ritter
facenumber_in_poster                                                         0
plot_keywords                high school|hospital|new jersey|stanford unive...
movie_imdb_link              http://www.imdb.com/title/tt0283026/?ref_=fn_t...
num_user_for_reviews                                                       217
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.5e+06
title_year                                                                2002
actor_2_facebook_likes                                                     855
imdb_score                                                                   5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       720
Name: 3125, dtype: object
color                                                                    Color
director_name                                                    Greg Coolidge
num_critic_for_reviews                                                      85
duration                                                                   103
director_facebook_likes                                                     27
actor_3_facebook_likes                                                     534
actor_2_name                                                    Danny Woodburn
actor_1_facebook_likes                                                    1000
gross                                                              2.84354e+07
genres                                                          Comedy|Romance
actor_1_name                                                         Dane Cook
movie_title                                             Employee of the Month 
num_voted_users                                                          37681
cast_total_facebook_likes                                                 4441
actor_3_name                                                   Jessica Simpson
facenumber_in_poster                                                         2
plot_keywords                  competition|date|employee|laser in eyes|slacker
movie_imdb_link              http://www.imdb.com/title/tt0424993/?ref_=fn_t...
num_user_for_reviews                                                       151
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2006
actor_2_facebook_likes                                                     809
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3126, dtype: object
color                                                                    Color
director_name                                                     Harry Elfont
num_critic_for_reviews                                                      76
duration                                                                   100
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     678
actor_2_name                                                    Lauren Ambrose
actor_1_facebook_likes                                                     982
gross                                                              2.53391e+07
genres                                                          Comedy|Romance
actor_1_name                                                       Ethan Embry
movie_title                                                 Can't Hardly Wait 
num_voted_users                                                          37885
cast_total_facebook_likes                                                 4259
actor_3_name                                                    Charlie Korsmo
facenumber_in_poster                                                         4
plot_keywords                         graduation|high school|letter|nerd|party
movie_imdb_link              http://www.imdb.com/title/tt0127723/?ref_=fn_t...
num_user_for_reviews                                                       247
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                1998
actor_2_facebook_likes                                                     945
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3127, dtype: object
color                                                                    Color
director_name                                             Francis Ford Coppola
num_critic_for_reviews                                                      60
duration                                                                   114
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     699
actor_2_name                                                     William Smith
actor_1_facebook_likes                                                   10000
gross                                                                 2.56e+07
genres                                                             Crime|Drama
actor_1_name                                                        Tom Cruise
movie_title                                                     The Outsiders 
num_voted_users                                                          57363
cast_total_facebook_likes                                                12097
actor_3_name                                                         Tom Waits
facenumber_in_poster                                                         0
plot_keywords                dysfunctional family|gang|greaser|holding some...
movie_imdb_link              http://www.imdb.com/title/tt0086066/?ref_=fn_t...
num_user_for_reviews                                                       308
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                1983
actor_2_facebook_likes                                                     919
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 3128, dtype: object
color                                                                    Color
director_name                                                     David Lowery
num_critic_for_reviews                                                      78
duration                                                                   102
director_facebook_likes                                                     38
actor_3_facebook_likes                                                     190
actor_2_name                                                     Oona Laurence
actor_1_facebook_likes                                                    3000
gross                                                                      NaN
genres                                                Adventure|Family|Fantasy
actor_1_name                                               Bryce Dallas Howard
movie_title                                                     Pete's Dragon 
num_voted_users                                                            408
cast_total_facebook_likes                                                 3691
actor_3_name                                                Isiah Whitlock Jr.
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2788732/?ref_=fn_t...
num_user_for_reviews                                                         6
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.5e+07
title_year                                                                2016
actor_2_facebook_likes                                                     424
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     21000
Name: 3129, dtype: object
color                                                                    Color
director_name                                                 David Cronenberg
num_critic_for_reviews                                                     112
duration                                                                   103
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     275
actor_2_name                                                       Herbert Lom
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                  Horror|Sci-Fi|Thriller
actor_1_name                                                      Tom Skerritt
movie_title                                                     The Dead Zone 
num_voted_users                                                          44804
cast_total_facebook_likes                                                 2013
actor_3_name                                                     Anthony Zerbe
facenumber_in_poster                                                         0
plot_keywords                 car accident|coma|evil politician|psychic|vision
movie_imdb_link              http://www.imdb.com/title/tt0085407/?ref_=fn_t...
num_user_for_reviews                                                       182
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1983
actor_2_facebook_likes                                                     278
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3130, dtype: object
color                                                                    Color
director_name                                                       Ciarán Foy
num_critic_for_reviews                                                     189
duration                                                                    97
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     220
actor_2_name                                                     James Ransone
actor_1_facebook_likes                                                    1000
gross                                                              2.77368e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                       Laila Haley
movie_title                                                        Sinister 2 
num_voted_users                                                          25210
cast_total_facebook_likes                                                 2403
actor_3_name                                                       Jaden Klein
facenumber_in_poster                                                         0
plot_keywords                deputy|farmhouse|nightmare|private investigato...
movie_imdb_link              http://www.imdb.com/title/tt2752772/?ref_=fn_t...
num_user_for_reviews                                                       126
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2015
actor_2_facebook_likes                                                     412
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 3131, dtype: object
color                                                                    Color
director_name                                                       Salim Akil
num_critic_for_reviews                                                      82
duration                                                                   116
director_facebook_likes                                                     70
actor_3_facebook_likes                                                     706
actor_2_name                                                  Curtis Armstrong
actor_1_facebook_likes                                                    1000
gross                                                              2.43975e+07
genres                                                             Drama|Music
actor_1_name                                                    Omari Hardwick
movie_title                                                           Sparkle 
num_voted_users                                                           5161
cast_total_facebook_likes                                                 5804
actor_3_name                                                         Mike Epps
facenumber_in_poster                                                         7
plot_keywords                          1960s|death|girl group|nightclub|sister
movie_imdb_link              http://www.imdb.com/title/tt1876451/?ref_=fn_t...
num_user_for_reviews                                                        48
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.7e+07
title_year                                                                2012
actor_2_facebook_likes                                                     876
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3132, dtype: object
color                                                                    Color
director_name                                                     Jamie Blanks
num_critic_for_reviews                                                     120
duration                                                                    96
director_facebook_likes                                                      9
actor_3_facebook_likes                                                     448
actor_2_name                                                   Jessica Capshaw
actor_1_facebook_likes                                                     690
gross                                                              2.03841e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                    Marley Shelton
movie_title                                                         Valentine 
num_voted_users                                                          20467
cast_total_facebook_likes                                                 2402
actor_3_name                                                  Johnny Whitworth
facenumber_in_poster                                                         1
plot_keywords                dance|nosebleed|revenge|valentine|valentine's day
movie_imdb_link              http://www.imdb.com/title/tt0242998/?ref_=fn_t...
num_user_for_reviews                                                       371
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2001
actor_2_facebook_likes                                                     533
imdb_score                                                                 4.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3133, dtype: object
color                                                                    Color
director_name                                               Olatunde Osunsanmi
num_critic_for_reviews                                                     183
duration                                                                    98
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     242
actor_2_name                                                       Will Patton
actor_1_facebook_likes                                                   14000
gross                                                              2.54645e+07
genres                                                 Mystery|Sci-Fi|Thriller
actor_1_name                                                    Milla Jovovich
movie_title                                                   The Fourth Kind 
num_voted_users                                                          63108
cast_total_facebook_likes                                                15251
actor_3_name                                                  Hakeem Kae-Kazim
facenumber_in_poster                                                         0
plot_keywords                               abduction|alaska|alien|owl|patient
movie_imdb_link              http://www.imdb.com/title/tt1220198/?ref_=fn_t...
num_user_for_reviews                                                       330
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2009
actor_2_facebook_likes                                                     537
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 3134, dtype: object
color                                                                    Color
director_name                                                    Robert Altman
num_critic_for_reviews                                                     211
duration                                                                   105
director_facebook_likes                                                    500
actor_3_facebook_likes                                                     718
actor_2_name                                                   Virginia Madsen
actor_1_facebook_likes                                                   11000
gross                                                              2.03386e+07
genres                                                      Comedy|Drama|Music
actor_1_name                                                      Meryl Streep
movie_title                                          A Prairie Home Companion 
num_voted_users                                                          19655
cast_total_facebook_likes                                                12946
actor_3_name                                                       Lily Tomlin
facenumber_in_poster                                                         8
plot_keywords                     backstage|country music|cowboy|radio|singing
movie_imdb_link              http://www.imdb.com/title/tt0420087/?ref_=fn_t...
num_user_for_reviews                                                       280
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2006
actor_2_facebook_likes                                                     912
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                       683
Name: 3135, dtype: object
color                                                          Black and White
director_name                                                      Leon Ichaso
num_critic_for_reviews                                                      14
duration                                                                   123
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     338
actor_2_name                                             Clarence Williams III
actor_1_facebook_likes                                                     556
gross                                                              1.82724e+07
genres                                                          Drama|Thriller
actor_1_name                                                  Khandi Alexander
movie_title                                                        Sugar Hill 
num_voted_users                                                           3119
cast_total_facebook_likes                                                 2149
actor_3_name                                                      Steve Harris
facenumber_in_poster                                                         1
plot_keywords                african american|harlem manhattan new york cit...
movie_imdb_link              http://www.imdb.com/title/tt0107079/?ref_=fn_t...
num_user_for_reviews                                                        35
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1993
actor_2_facebook_likes                                                     475
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       331
Name: 3136, dtype: object
color                                                                    Color
director_name                                                      Joseph Zito
num_critic_for_reviews                                                      54
duration                                                                   107
director_facebook_likes                                                     17
actor_3_facebook_likes                                                      53
actor_2_name                                                     Richard Lynch
actor_1_facebook_likes                                                     371
gross                                                                      NaN
genres                                                         Action|Thriller
actor_1_name                                                       Billy Drago
movie_title                                                   Invasion U.S.A. 
num_voted_users                                                           6143
cast_total_facebook_likes                                                  857
actor_3_name                                                       Eddie Jones
facenumber_in_poster                                                         1
plot_keywords                           army|nightmare|one man army|rescue|spy
movie_imdb_link              http://www.imdb.com/title/tt0089348/?ref_=fn_t...
num_user_for_reviews                                                        90
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1985
actor_2_facebook_likes                                                     324
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3137, dtype: object
color                                                                    Color
director_name                                                   Malcolm D. Lee
num_critic_for_reviews                                                      55
duration                                                                   112
director_facebook_likes                                                     92
actor_3_facebook_likes                                                     826
actor_2_name                                                Brandon T. Jackson
actor_1_facebook_likes                                                    2000
gross                                                               1.7379e+07
genres                                              Comedy|Drama|Music|Romance
actor_1_name                                              Jurnee Smollett-Bell
movie_title                                                       Roll Bounce 
num_voted_users                                                           5585
cast_total_facebook_likes                                                 7552
actor_3_name                                                         Shad Moss
facenumber_in_poster                                                         0
plot_keywords                    1970s|boy|competition|roller skates|tubesocks
movie_imdb_link              http://www.imdb.com/title/tt0403455/?ref_=fn_t...
num_user_for_reviews                                                        75
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2005
actor_2_facebook_likes                                                     918
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       997
Name: 3138, dtype: object
color                                                                    Color
director_name                                                     Wes Anderson
num_critic_for_reviews                                                     179
duration                                                                    93
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     766
actor_2_name                                                    Connie Nielsen
actor_1_facebook_likes                                                   13000
gross                                                              1.70961e+07
genres                                                            Comedy|Drama
actor_1_name                                                       Bill Murray
movie_title                                                          Rushmore 
num_voted_users                                                         134458
cast_total_facebook_likes                                                15716
actor_3_name                                                   Olivia Williams
facenumber_in_poster                                                         2
plot_keywords                coming of age|friendship|private school|studen...
movie_imdb_link              http://www.imdb.com/title/tt0128445/?ref_=fn_t...
num_user_for_reviews                                                       640
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                1998
actor_2_facebook_likes                                                     933
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      5000
Name: 3139, dtype: object
color                                                                    Color
director_name                                                    Colin Strause
num_critic_for_reviews                                                     221
duration                                                                    97
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     861
actor_2_name                                                     Donald Faison
actor_1_facebook_likes                                                     929
gross                                                              2.13714e+07
genres                                                  Action|Sci-Fi|Thriller
actor_1_name                                                       David Zayas
movie_title                                                           Skyline 
num_voted_users                                                          76199
cast_total_facebook_likes                                                 3679
actor_3_name                                                   Brittany Daniel
facenumber_in_poster                                                         0
plot_keywords                apartment|blue light|drawing|group of friends|...
movie_imdb_link              http://www.imdb.com/title/tt1564585/?ref_=fn_t...
num_user_for_reviews                                                       944
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2010
actor_2_facebook_likes                                                     927
imdb_score                                                                 4.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 3140, dtype: object
color                                                                    Color
director_name                                                      John Madden
num_critic_for_reviews                                                     158
duration                                                                   122
director_facebook_likes                                                    108
actor_3_facebook_likes                                                     111
actor_2_name                                                       Celia Imrie
actor_1_facebook_likes                                                     220
gross                                                              3.30716e+07
genres                                                            Comedy|Drama
actor_1_name                                                        Tina Desai
movie_title                             The Second Best Exotic Marigold Hotel 
num_voted_users                                                          22369
cast_total_facebook_likes                                                  583
actor_3_name                                                     Ronald Pickup
facenumber_in_poster                                                         6
plot_keywords                                                           sequel
movie_imdb_link              http://www.imdb.com/title/tt2555736/?ref_=fn_t...
num_user_for_reviews                                                       100
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                   1e+07
title_year                                                                2015
actor_2_facebook_likes                                                     186
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     21000
Name: 3141, dtype: object
color                                                                    Color
director_name                                                  Patricia Rozema
num_critic_for_reviews                                                      73
duration                                                                   101
director_facebook_likes                                                     22
actor_3_facebook_likes                                                     558
actor_2_name                                                    Jane Krakowski
actor_1_facebook_likes                                                     918
gross                                                              1.76552e+07
genres                                                            Drama|Family
actor_1_name                                                      Julia Ormond
movie_title                                   Kit Kittredge: An American Girl 
num_voted_users                                                           4719
cast_total_facebook_likes                                                 3317
actor_3_name                                                      Willow Smith
facenumber_in_poster                                                         1
plot_keywords                  boarding house|girl|great depression|house|ohio
movie_imdb_link              http://www.imdb.com/title/tt0846308/?ref_=fn_t...
num_user_for_reviews                                                        24
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   1e+07
title_year                                                                2008
actor_2_facebook_likes                                                     624
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       851
Name: 3142, dtype: object
color                                                                    Color
director_name                                                      Mark Rosman
num_critic_for_reviews                                                      65
duration                                                                   100
director_facebook_likes                                                     15
actor_3_facebook_likes                                                     804
actor_2_name                                                        Chris Noth
actor_1_facebook_likes                                                    1000
gross                                                              1.62478e+07
genres                                                   Comedy|Family|Romance
actor_1_name                                                       Ben Feldman
movie_title                                                   The Perfect Man 
num_voted_users                                                          23527
cast_total_facebook_likes                                                 4789
actor_3_name                                                   Vanessa Lengies
facenumber_in_poster                                                         3
plot_keywords                  e mail|moving|perfect man|secret admirer|suitor
movie_imdb_link              http://www.imdb.com/title/tt0380623/?ref_=fn_t...
num_user_for_reviews                                                       104
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 2.5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     962
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       767
Name: 3143, dtype: object
color                                                                    Color
director_name                                                        Spike Lee
num_critic_for_reviews                                                      23
duration                                                                   129
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     203
actor_2_name                                                 Nicholas Turturro
actor_1_facebook_likes                                                   18000
gross                                                              1.61536e+07
genres                                                     Drama|Music|Romance
actor_1_name                                                 Denzel Washington
movie_title                                                  Mo' Better Blues 
num_voted_users                                                           8295
cast_total_facebook_likes                                                19065
actor_3_name                                                    Charlie Murphy
facenumber_in_poster                                                         1
plot_keywords                               comeback|friend|jazz|stage|trumpet
movie_imdb_link              http://www.imdb.com/title/tt0100168/?ref_=fn_t...
num_user_for_reviews                                                        30
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1990
actor_2_facebook_likes                                                     269
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       720
Name: 3144, dtype: object
color                                                                    Color
director_name                                                   Steve Oedekerk
num_critic_for_reviews                                                      63
duration                                                                    81
director_facebook_likes                                                    176
actor_3_facebook_likes                                                      39
actor_2_name                                                        Simon Rhee
actor_1_facebook_likes                                                     176
gross                                                              1.60336e+07
genres                                                           Action|Comedy
actor_1_name                                                    Steve Oedekerk
movie_title                                          Kung Pow: Enter the Fist 
num_voted_users                                                          37901
cast_total_facebook_likes                                                  361
actor_3_name                                                     Jennifer Tung
facenumber_in_poster                                                         1
plot_keywords                chosen one|comic violence|intentionally bad|ku...
movie_imdb_link              http://www.imdb.com/title/tt0240468/?ref_=fn_t...
num_user_for_reviews                                                       518
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2002
actor_2_facebook_likes                                                      67
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3145, dtype: object
color                                                                    Color
director_name                                                    Ron Underwood
num_critic_for_reviews                                                     132
duration                                                                    96
director_facebook_likes                                                     31
actor_3_facebook_likes                                                     536
actor_2_name                                                   Ariana Richards
actor_1_facebook_likes                                                     651
gross                                                              1.66671e+07
genres                                                    Comedy|Horror|Sci-Fi
actor_1_name                                                     Reba McEntire
movie_title                                                           Tremors 
num_voted_users                                                          90070
cast_total_facebook_likes                                                 3119
actor_3_name                                                     Michael Gross
facenumber_in_poster                                                         0
plot_keywords                   desert|giant worm|monster|pipe bomb|small town
movie_imdb_link              http://www.imdb.com/title/tt0100814/?ref_=fn_t...
num_user_for_reviews                                                       248
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                1990
actor_2_facebook_likes                                                     610
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 3146, dtype: object
color                                                                    Color
director_name                                                      Rob Schmidt
num_critic_for_reviews                                                     191
duration                                                                    84
director_facebook_likes                                                     36
actor_3_facebook_likes                                                     648
actor_2_name                                                       Lindy Booth
actor_1_facebook_likes                                                    2000
gross                                                              1.54178e+07
genres                                                         Horror|Thriller
actor_1_name                                                      Kevin Zegers
movie_title                                                        Wrong Turn 
num_voted_users                                                          87494
cast_total_facebook_likes                                                 3416
actor_3_name                                                   Julian Richings
facenumber_in_poster                                                         1
plot_keywords                 forest|mountain|road|stupid victim|west virginia
movie_imdb_link              http://www.imdb.com/title/tt0295700/?ref_=fn_t...
num_user_for_reviews                                                       540
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                1.26e+07
title_year                                                                2003
actor_2_facebook_likes                                                     683
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3147, dtype: object
color                                                                    Color
director_name                                                      Walter Hill
num_critic_for_reviews                                                      52
duration                                                                   100
director_facebook_likes                                                    394
actor_3_facebook_likes                                                     695
actor_2_name                                                   David Carradine
actor_1_facebook_likes                                                    2000
gross                                                                      NaN
genres                                                                 Western
actor_1_name                                                      Dennis Quaid
movie_title                                                   The Long Riders 
num_voted_users                                                           7322
cast_total_facebook_likes                                                 6296
actor_3_name                                                       Randy Quaid
facenumber_in_poster                                                         0
plot_keywords                bank|breasts|famous score|last man standing|re...
movie_imdb_link              http://www.imdb.com/title/tt0081071/?ref_=fn_t...
num_user_for_reviews                                                        78
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1980
actor_2_facebook_likes                                                     926
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       680
Name: 3148, dtype: object
color                                                                    Color
director_name                                                      James Foley
num_critic_for_reviews                                                      91
duration                                                                   110
director_facebook_likes                                                    164
actor_3_facebook_likes                                                      45
actor_2_name                                                   Paul Ben-Victor
actor_1_facebook_likes                                                     258
gross                                                              1.51562e+07
genres                                     Action|Crime|Drama|Mystery|Thriller
actor_1_name                                                        Byron Mann
movie_title                                                     The Corruptor 
num_voted_users                                                          15358
cast_total_facebook_likes                                                  571
actor_3_name                                                          Kim Chan
facenumber_in_poster                                                         2
plot_keywords                chinatown|illegal immigrant|new york|police|triad
movie_imdb_link              http://www.imdb.com/title/tt0142192/?ref_=fn_t...
num_user_for_reviews                                                       131
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   3e+07
title_year                                                                1999
actor_2_facebook_likes                                                     218
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       328
Name: 3149, dtype: object
color                                                                    Color
director_name                                                     Jeff Nichols
num_critic_for_reviews                                                     368
duration                                                                   130
director_facebook_likes                                                    337
actor_3_facebook_likes                                                     820
actor_2_name                                                      Tye Sheridan
actor_1_facebook_likes                                                   11000
gross                                                              2.15893e+07
genres                                                                   Drama
actor_1_name                                               Matthew McConaughey
movie_title                                                               Mud 
num_voted_users                                                         135286
cast_total_facebook_likes                                                13960
actor_3_name                                                       Sam Shepard
facenumber_in_poster                                                         1
plot_keywords                         14 year old|boat|bounty hunter|boy|river
movie_imdb_link              http://www.imdb.com/title/tt1935179/?ref_=fn_t...
num_user_for_reviews                                                       261
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2012
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     27000
Name: 3150, dtype: object
color                                                                    Color
director_name                                                Robert Ben Garant
num_critic_for_reviews                                                      89
duration                                                                    84
director_facebook_likes                                                    134
actor_3_facebook_likes                                                     307
actor_2_name                                                     Thomas Lennon
actor_1_facebook_likes                                                     655
gross                                                              2.03398e+07
genres                                                            Comedy|Crime
actor_1_name                                              Wendi McLendon-Covey
movie_title                                                  Reno 911!: Miami 
num_voted_users                                                          23928
cast_total_facebook_likes                                                 2737
actor_3_name                                                  Carlos Alazraqui
facenumber_in_poster                                                         2
plot_keywords                     beach|police|sex scene|spring break|vomiting
movie_imdb_link              http://www.imdb.com/title/tt0499554/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2007
actor_2_facebook_likes                                                     651
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       441
Name: 3151, dtype: object
color                                                                    Color
director_name                                                  Morgan Spurlock
num_critic_for_reviews                                                      83
duration                                                                   106
director_facebook_likes                                                    293
actor_3_facebook_likes                                                     547
actor_2_name                                                        Zayn Malik
actor_1_facebook_likes                                                     773
gross                                                              2.88734e+07
genres                                                       Documentary|Music
actor_1_name                                                      Harry Styles
movie_title                                         One Direction: This Is Us 
num_voted_users                                                          22161
cast_total_facebook_likes                                                 2787
actor_3_name                                                       Niall Horan
facenumber_in_poster                                                        11
plot_keywords                3 dimensional|concert footage|englishman abroa...
movie_imdb_link              http://www.imdb.com/title/tt2515086/?ref_=fn_t...
num_user_for_reviews                                                        68
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+07
title_year                                                                2013
actor_2_facebook_likes                                                     734
imdb_score                                                                 4.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3152, dtype: object
color                                                                    Color
director_name                                                     Neal Brennan
num_critic_for_reviews                                                      83
duration                                                                    89
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     503
actor_2_name                                                    Noureen DeWulf
actor_1_facebook_likes                                                     839
gross                                                              1.51021e+07
genres                                                                  Comedy
actor_1_name                                                        Rob Riggle
movie_title                                   The Goods: Live Hard, Sell Hard 
num_voted_users                                                          17790
cast_total_facebook_likes                                                 3973
actor_3_name                                                    Charles Napier
facenumber_in_poster                                                         5
plot_keywords                fourth of july|looking at one's self in a mirr...
movie_imdb_link              http://www.imdb.com/title/tt1092633/?ref_=fn_t...
num_user_for_reviews                                                        59
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     700
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3153, dtype: object
color                                                                    Color
director_name                                                      Tuck Tucker
num_critic_for_reviews                                                      33
duration                                                                    76
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     636
actor_2_name                                                Vincent Schiavelli
actor_1_facebook_likes                                                    1000
gross                                                              1.36849e+07
genres                                       Adventure|Animation|Comedy|Family
actor_1_name                                              Jennifer Jason Leigh
movie_title                                             Hey Arnold! The Movie 
num_voted_users                                                           4564
cast_total_facebook_likes                                                 3752
actor_3_name                                                      Paul Sorvino
facenumber_in_poster                                                         0
plot_keywords                castle thunder|document|neighborhood|punctuati...
movie_imdb_link              http://www.imdb.com/title/tt0314166/?ref_=fn_t...
num_user_for_reviews                                                        43
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   3e+06
title_year                                                                2002
actor_2_facebook_likes                                                     811
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       227
Name: 3154, dtype: object
color                                                                    Color
director_name                                                     Simon Curtis
num_critic_for_reviews                                                     386
duration                                                                    99
director_facebook_likes                                                     64
actor_3_facebook_likes                                                     918
actor_2_name                                                        Toby Jones
actor_1_facebook_likes                                                   13000
gross                                                              1.45974e+07
genres                                                         Biography|Drama
actor_1_name                                                    Eddie Redmayne
movie_title                                              My Week with Marilyn 
num_voted_users                                                          71679
cast_total_facebook_likes                                                17204
actor_3_name                                                      Julia Ormond
facenumber_in_poster                                                         1
plot_keywords                actress|assistant director|blonde bombshell|mo...
movie_imdb_link              http://www.imdb.com/title/tt1655420/?ref_=fn_t...
num_user_for_reviews                                                       216
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 6.4e+06
title_year                                                                2011
actor_2_facebook_likes                                                    2000
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     17000
Name: 3155, dtype: object
color                                                                    Color
director_name                                                  Richard Shepard
num_critic_for_reviews                                                     191
duration                                                                    96
director_facebook_likes                                                     47
actor_3_facebook_likes                                                     442
actor_2_name                                                 Philip Baker Hall
actor_1_facebook_likes                                                    3000
gross                                                              1.25704e+07
genres                                             Comedy|Crime|Drama|Thriller
actor_1_name                                                        Adam Scott
movie_title                                                       The Matador 
num_voted_users                                                          40514
cast_total_facebook_likes                                                 4053
actor_3_name                                                        Hope Davis
facenumber_in_poster                                                         0
plot_keywords                               bar|hitman|luck|mexico|mexico city
movie_imdb_link              http://www.imdb.com/title/tt0365485/?ref_=fn_t...
num_user_for_reviews                                                       234
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2005
actor_2_facebook_likes                                                     497
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                       808
Name: 3156, dtype: object
color                                                                    Color
director_name                                                 Theodore Witcher
num_critic_for_reviews                                                      16
duration                                                                   104
director_facebook_likes                                                     28
actor_3_facebook_likes                                                     582
actor_2_name                                                          Nia Long
actor_1_facebook_likes                                                     962
gross                                                              1.25141e+07
genres                                                           Drama|Romance
actor_1_name                                                   Leonard Roberts
movie_title                                                        Love Jones 
num_voted_users                                                           2801
cast_total_facebook_likes                                                 3871
actor_3_name                                                       Larenz Tate
facenumber_in_poster                                                         0
plot_keywords                african american|cult film|ex boyfriend|middle...
movie_imdb_link              http://www.imdb.com/title/tt0119572/?ref_=fn_t...
num_user_for_reviews                                                        28
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1997
actor_2_facebook_likes                                                     826
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 3157, dtype: object
color                                                                    Color
director_name                                                    Joel Edgerton
num_critic_for_reviews                                                     297
duration                                                                   108
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     458
actor_2_name                                                    Allison Tolman
actor_1_facebook_likes                                                    1000
gross                                                              4.37713e+07
genres                                                        Mystery|Thriller
actor_1_name                                                     Busy Philipps
movie_title                                                          The Gift 
num_voted_users                                                          79909
cast_total_facebook_likes                                                 3215
actor_3_name                                                    Wendell Pierce
facenumber_in_poster                                                         1
plot_keywords                compulsive liar|fired from a job|gift|rape|sub...
movie_imdb_link              http://www.imdb.com/title/tt4178092/?ref_=fn_t...
num_user_for_reviews                                                       279
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2015
actor_2_facebook_likes                                                     562
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 3158, dtype: object
color                                                                    Color
director_name                                                        Jim Hanon
num_critic_for_reviews                                                      47
duration                                                                   108
director_facebook_likes                                                      2
actor_3_facebook_likes                                                      30
actor_2_name                                                        Chad Allen
actor_1_facebook_likes                                                     772
gross                                                              1.17033e+07
genres                                                         Adventure|Drama
actor_1_name                                                     Chase Ellison
movie_title                                                  End of the Spear 
num_voted_users                                                           4360
cast_total_facebook_likes                                                 1058
actor_3_name                                                       Jack Guzman
facenumber_in_poster                                                         3
plot_keywords                    death|missionary|spear|speared to death|tribe
movie_imdb_link              http://www.imdb.com/title/tt0399862/?ref_=fn_t...
num_user_for_reviews                                                       148
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2005
actor_2_facebook_likes                                                     232
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 3159, dtype: object
color                                                                    Color
director_name                                                    Tommy O'Haver
num_critic_for_reviews                                                      63
duration                                                                    87
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     869
actor_2_name                                                     Kirsten Dunst
actor_1_facebook_likes                                                   15000
gross                                                              1.15603e+07
genres                                                          Comedy|Romance
actor_1_name                                                        Mila Kunis
movie_title                                                       Get Over It 
num_voted_users                                                          15617
cast_total_facebook_likes                                                22485
actor_3_name                                                    Carmen Electra
facenumber_in_poster                                                         1
plot_keywords                basketball|dancer|high school|love triangle|sh...
movie_imdb_link              http://www.imdb.com/title/tt0192071/?ref_=fn_t...
num_user_for_reviews                                                       180
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.2e+07
title_year                                                                2001
actor_2_facebook_likes                                                    4000
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3160, dtype: object
color                                                                    Color
director_name                                                       Mike Judge
num_critic_for_reviews                                                     144
duration                                                                    89
director_facebook_likes                                                    406
actor_3_facebook_likes                                                     759
actor_2_name                                                      Stephen Root
actor_1_facebook_likes                                                     989
gross                                                              1.08249e+07
genres                                                                  Comedy
actor_1_name                                                         Gary Cole
movie_title                                                      Office Space 
num_voted_users                                                         200293
cast_total_facebook_likes                                                 3462
actor_3_name                                                    Diedrich Bader
facenumber_in_poster                                                         0
plot_keywords                         boss|computer|downsizing|neighbor|office
movie_imdb_link              http://www.imdb.com/title/tt0151804/?ref_=fn_t...
num_user_for_reviews                                                       621
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1999
actor_2_facebook_likes                                                     939
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     16000
Name: 3161, dtype: object
color                                                                    Color
director_name                                             Michael Patrick Jann
num_critic_for_reviews                                                      77
duration                                                                    97
director_facebook_likes                                                     31
actor_3_facebook_likes                                                     551
actor_2_name                                                     Kirstie Alley
actor_1_facebook_likes                                                    4000
gross                                                              1.05612e+07
genres                                                 Comedy|Romance|Thriller
actor_1_name                                                     Kirsten Dunst
movie_title                                                Drop Dead Gorgeous 
num_voted_users                                                          27265
cast_total_facebook_likes                                                 6388
actor_3_name                                                      Ellen Barkin
facenumber_in_poster                                                         0
plot_keywords                beauty pageant|blonde|cheerleader uniform|smal...
movie_imdb_link              http://www.imdb.com/title/tt0157503/?ref_=fn_t...
num_user_for_reviews                                                       321
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                1999
actor_2_facebook_likes                                                     980
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3162, dtype: object
color                                                                    Color
director_name                                                       Tim Burton
num_critic_for_reviews                                                     325
duration                                                                   106
director_facebook_likes                                                  13000
actor_3_facebook_likes                                                     309
actor_2_name                                                      Danny Huston
actor_1_facebook_likes                                                   11000
gross                                                              1.44798e+07
genres                                           Biography|Crime|Drama|Romance
actor_1_name                                                   Christoph Waltz
movie_title                                                          Big Eyes 
num_voted_users                                                          55539
cast_total_facebook_likes                                                12418
actor_3_name                                                        Jon Polito
facenumber_in_poster                                                         3
plot_keywords                     1950s|abusive husband|artist|painting|secret
movie_imdb_link              http://www.imdb.com/title/tt1126590/?ref_=fn_t...
num_user_for_reviews                                                       147
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2014
actor_2_facebook_likes                                                     430
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     20000
Name: 3163, dtype: object
color                                                                    Color
director_name                                                       Peter Berg
num_critic_for_reviews                                                     100
duration                                                                   100
director_facebook_likes                                                    532
actor_3_facebook_likes                                                     711
actor_2_name                                                      Daniel Stern
actor_1_facebook_likes                                                    4000
gross                                                              9.80178e+06
genres                                                   Comedy|Crime|Thriller
actor_1_name                                                       Jon Favreau
movie_title                                                   Very Bad Things 
num_voted_users                                                          39331
cast_total_facebook_likes                                                 6046
actor_3_name                                                Jeanne Tripplehorn
facenumber_in_poster                                                         0
plot_keywords                 bachelor party|breasts|friend|prostitute|wedding
movie_imdb_link              http://www.imdb.com/title/tt0124198/?ref_=fn_t...
num_user_for_reviews                                                       481
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1998
actor_2_facebook_likes                                                     796
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3164, dtype: object
color                                                                    Color
director_name                                                     Joe Nussbaum
num_critic_for_reviews                                                      52
duration                                                                    89
director_facebook_likes                                                     18
actor_3_facebook_likes                                                    2000
actor_2_name                                                    Alexa PenaVega
actor_1_facebook_likes                                                    7000
gross                                                              8.07031e+06
genres                                                          Comedy|Romance
actor_1_name                                                      Steve Carell
movie_title                                                         Sleepover 
num_voted_users                                                          12706
cast_total_facebook_likes                                                13626
actor_3_name                                                    Hunter Parrish
facenumber_in_poster                                                         9
plot_keywords                 best friend|party|rival|scavenger hunt|sleepover
movie_imdb_link              http://www.imdb.com/title/tt0368975/?ref_=fn_t...
num_user_for_reviews                                                        75
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+07
title_year                                                                2004
actor_2_facebook_likes                                                    2000
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3165, dtype: object
color                                                                    Color
director_name                                                   Brian De Palma
num_critic_for_reviews                                                      98
duration                                                                   114
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     298
actor_2_name                                                      Dennis Franz
actor_1_facebook_likes                                                     537
gross                                                                      NaN
genres                                                        Mystery|Thriller
actor_1_name                                                  Melanie Griffith
movie_title                                                       Body Double 
num_voted_users                                                          20113
cast_total_facebook_likes                                                 1856
actor_3_name                                                       Gregg Henry
facenumber_in_poster                                                         0
plot_keywords                               actor|neighbor|police|thief|tunnel
movie_imdb_link              http://www.imdb.com/title/tt0086984/?ref_=fn_t...
num_user_for_reviews                                                       178
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1984
actor_2_facebook_likes                                                     376
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3166, dtype: object
color                                                                    Color
director_name                                                    Jorma Taccone
num_critic_for_reviews                                                     163
duration                                                                    95
director_facebook_likes                                                    434
actor_3_facebook_likes                                                     472
actor_2_name                                                        Will Forte
actor_1_facebook_likes                                                    1000
gross                                                                8.461e+06
genres                                                   Action|Comedy|Romance
actor_1_name                                                       Jasper Cole
movie_title                                                         MacGruber 
num_voted_users                                                          35888
cast_total_facebook_likes                                                 2618
actor_3_name                                                     Powers Boothe
facenumber_in_poster                                                         3
plot_keywords                colonel|lieutenant|nuclear warhead|team|washin...
movie_imdb_link              http://www.imdb.com/title/tt1470023/?ref_=fn_t...
num_user_for_reviews                                                       125
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2010
actor_2_facebook_likes                                                     622
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3167, dtype: object
color                                                                    Color
director_name                                                   Stephen Frears
num_critic_for_reviews                                                     137
duration                                                                    97
director_facebook_likes                                                    350
actor_3_facebook_likes                                                     250
actor_2_name                                                     Benedict Wong
actor_1_facebook_likes                                                     460
gross                                                              8.11136e+06
genres                                                    Crime|Drama|Thriller
actor_1_name                                                    Sophie Okonedo
movie_title                                               Dirty Pretty Things 
num_voted_users                                                          34848
cast_total_facebook_likes                                                 1334
actor_3_name                                                       Sergi López
facenumber_in_poster                                                         1
plot_keywords                       hotel|immigrant|nigerian|surgery|underwear
movie_imdb_link              http://www.imdb.com/title/tt0301199/?ref_=fn_t...
num_user_for_reviews                                                       203
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2002
actor_2_facebook_likes                                                     372
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3168, dtype: object
color                                                                    Color
director_name                                                  Elizabeth Banks
num_critic_for_reviews                                                     180
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    3000
actor_2_name                                                      Kate Winslet
actor_1_facebook_likes                                                   20000
gross                                                              8.82877e+06
genres                                                                  Comedy
actor_1_name                                                      Hugh Jackman
movie_title                                                          Movie 43 
num_voted_users                                                          79146
cast_total_facebook_likes                                                41059
actor_3_name                                                   Seth MacFarlane
facenumber_in_poster                                                        10
plot_keywords                awkwardness|embarrassment|gross out|irreverenc...
movie_imdb_link              http://www.imdb.com/title/tt1333125/?ref_=fn_t...
num_user_for_reviews                                                       352
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2013
actor_2_facebook_likes                                                   14000
imdb_score                                                                 4.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     25000
Name: 3169, dtype: object
color                                                                    Color
director_name                                 Florian Henckel von Donnersmarck
num_critic_for_reviews                                                     321
duration                                                                   103
director_facebook_likes                                                    207
actor_3_facebook_likes                                                    3000
actor_2_name                                               Angelina Jolie Pitt
actor_1_facebook_likes                                                   40000
gross                                                              6.76312e+07
genres                                                 Action|Romance|Thriller
actor_1_name                                                       Johnny Depp
movie_title                                                       The Tourist 
num_voted_users                                                         176606
cast_total_facebook_likes                                                55175
actor_3_name                                                      Rufus Sewell
facenumber_in_poster                                                         0
plot_keywords                police surveillance|surveillance van|tailing a...
movie_imdb_link              http://www.imdb.com/title/tt1243957/?ref_=fn_t...
num_user_for_reviews                                                       374
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+08
title_year                                                                2010
actor_2_facebook_likes                                                   11000
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     25000
Name: 3170, dtype: object
color                                                                    Color
director_name                                                      Jeff Lowell
num_critic_for_reviews                                                     100
duration                                                                    95
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     655
actor_2_name                                           William Morgan Sheppard
actor_1_facebook_likes                                                     939
gross                                                              7.56367e+06
genres                                                  Comedy|Fantasy|Romance
actor_1_name                                                      Stephen Root
movie_title                                                Over Her Dead Body 
num_voted_users                                                          21268
cast_total_facebook_likes                                                 3651
actor_3_name                                              Wendi McLendon-Covey
facenumber_in_poster                                                         0
plot_keywords                        accident|diary|ghost|psychic|veterinarian
movie_imdb_link              http://www.imdb.com/title/tt0785007/?ref_=fn_t...
num_user_for_reviews                                                        53
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2008
actor_2_facebook_likes                                                     702
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       518
Name: 3171, dtype: object
color                                                          Black and White
director_name                                                  Lorene Scafaria
num_critic_for_reviews                                                     265
duration                                                                   101
director_facebook_likes                                                     63
actor_3_facebook_likes                                                     172
actor_2_name                                                        Mark Moses
actor_1_facebook_likes                                                    7000
gross                                                              6.61917e+06
genres                                   Adventure|Comedy|Drama|Romance|Sci-Fi
actor_1_name                                                      Steve Carell
movie_title                         Seeking a Friend for the End of the World 
num_voted_users                                                          87203
cast_total_facebook_likes                                                 7747
actor_3_name                                                        Rob Huebel
facenumber_in_poster                                                         2
plot_keywords                  candle|end of the world|letter|record|road trip
movie_imdb_link              http://www.imdb.com/title/tt1307068/?ref_=fn_t...
num_user_for_reviews                                                       221
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2012
actor_2_facebook_likes                                                     353
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     25000
Name: 3172, dtype: object
color                                                                    Color
director_name                                                    Miguel Arteta
num_critic_for_reviews                                                     212
duration                                                                    87
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     727
actor_2_name                                                      Stephen Root
actor_1_facebook_likes                                                    1000
gross                                                               6.8575e+06
genres                                                                  Comedy
actor_1_name                                                    Kurtwood Smith
movie_title                                                      Cedar Rapids 
num_voted_users                                                          32697
cast_total_facebook_likes                                                 4769
actor_3_name                                                      Alia Shawkat
facenumber_in_poster                                                         1
plot_keywords                award|cedar rapids iowa|convention|hotel|insur...
movie_imdb_link              http://www.imdb.com/title/tt1477837/?ref_=fn_t...
num_user_for_reviews                                                        85
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2011
actor_2_facebook_likes                                                     939
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3173, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      68
duration                                                                    40
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     476
actor_2_name                                                        T.J. Thyne
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                      Comedy|Crime|Drama|Mystery|Romance
actor_1_name                                                   Michaela Conlin
movie_title                                                 Bones             
num_voted_users                                                         111506
cast_total_facebook_likes                                                 2198
actor_3_name                                                     Tamara Taylor
facenumber_in_poster                                                         2
plot_keywords                anthropologist|fbi|fbi agent|forensics|investi...
movie_imdb_link              http://www.imdb.com/title/tt0460627/?ref_=fn_t...
num_user_for_reviews                                                       173
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     722
imdb_score                                                                 7.9
aspect_ratio                                                              1.78
movie_facebook_likes                                                         0
Name: 3174, dtype: object
color                                                          Black and White
director_name                                                        Tony Kaye
num_critic_for_reviews                                                     162
duration                                                                   101
director_facebook_likes                                                    194
actor_3_facebook_likes                                                     602
actor_2_name                                                  Beverly D'Angelo
actor_1_facebook_likes                                                    1000
gross                                                              6.71224e+06
genres                                                             Crime|Drama
actor_1_name                                                      Ethan Suplee
movie_title                                                American History X 
num_voted_users                                                         782437
cast_total_facebook_likes                                                 3858
actor_3_name                                                       Stacy Keach
facenumber_in_poster                                                         2
plot_keywords                curb stomping|neo nazi|prison|son dislikes mot...
movie_imdb_link              http://www.imdb.com/title/tt0120586/?ref_=fn_t...
num_user_for_reviews                                                      1420
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+06
title_year                                                                1998
actor_2_facebook_likes                                                     816
imdb_score                                                                 8.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     35000
Name: 3175, dtype: object
color                                                                    Color
director_name                                                   Marcus Dunstan
num_critic_for_reviews                                                     147
duration                                                                    82
director_facebook_likes                                                     87
actor_3_facebook_likes                                                     444
actor_2_name                                                    Johanna Braddy
actor_1_facebook_likes                                                    1000
gross                                                              6.84206e+06
genres                                                  Action|Horror|Thriller
actor_1_name                                                    Daniel Sharman
movie_title                                                    The Collection 
num_voted_users                                                          36029
cast_total_facebook_likes                                                 3818
actor_3_name                                                      Lee Tergesen
facenumber_in_poster                                                         0
plot_keywords                booby trap|brainwashing|mercenary|serial kille...
movie_imdb_link              http://www.imdb.com/title/tt1748227/?ref_=fn_t...
num_user_for_reviews                                                        99
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2012
actor_2_facebook_likes                                                     581
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     14000
Name: 3176, dtype: object
color                                                                    Color
director_name                                                Timothy Björklund
num_critic_for_reviews                                                      33
duration                                                                    74
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     719
actor_2_name                                                    Kelsey Grammer
actor_1_facebook_likes                                                     886
gross                                                              6.49135e+06
genres                                 Animation|Comedy|Family|Fantasy|Musical
actor_1_name                                                       Nathan Lane
movie_title                                                     Teacher's Pet 
num_voted_users                                                           1231
cast_total_facebook_likes                                                 5139
actor_3_name                                                     Jerry Stiller
facenumber_in_poster                                                         0
plot_keywords                         dog|florida|mad scientist|school|teacher
movie_imdb_link              http://www.imdb.com/title/tt0350194/?ref_=fn_t...
num_user_for_reviews                                                        26
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+07
title_year                                                                2004
actor_2_facebook_likes                                                     808
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                        49
Name: 3177, dtype: object
color                                                                    Color
director_name                                                  François Girard
num_critic_for_reviews                                                      94
duration                                                                   130
director_facebook_likes                                                     63
actor_3_facebook_likes                                                       2
actor_2_name                                                   Clotilde Mollet
actor_1_facebook_likes                                                      24
gross                                                              9.47338e+06
genres                                             Drama|Music|Mystery|Romance
actor_1_name                                          Johannes Silberschneider
movie_title                                                    The Red Violin 
num_voted_users                                                          26832
cast_total_facebook_likes                                                   29
actor_3_name                                                      Carlo Cecchi
facenumber_in_poster                                                         3
plot_keywords                         auction|montreal|secret|violin|violinist
movie_imdb_link              http://www.imdb.com/title/tt0120802/?ref_=fn_t...
num_user_for_reviews                                                       247
language                                                                French
country                                                                 Canada
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1998
actor_2_facebook_likes                                                       3
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3178, dtype: object
color                                                                    Color
director_name                                                      David Lynch
num_critic_for_reviews                                                     143
duration                                                                   112
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     201
actor_2_name                                                Richard Farnsworth
actor_1_facebook_likes                                                     874
gross                                                              6.19787e+06
genres                                                         Biography|Drama
actor_1_name                                                      Sissy Spacek
movie_title                                                The Straight Story 
num_voted_users                                                          63733
cast_total_facebook_likes                                                 1351
actor_3_name                                                    Everett McGill
facenumber_in_poster                                                         0
plot_keywords                           cane|iowa|lawn mower|tractor|wisconsin
movie_imdb_link              http://www.imdb.com/title/tt0166896/?ref_=fn_t...
num_user_for_reviews                                                       414
language                                                               English
country                                                                 France
content_rating                                                               G
budget                                                                   1e+07
title_year                                                                1999
actor_2_facebook_likes                                                     262
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3179, dtype: object
color                                                                    Color
director_name                                                    Scott Kalvert
num_critic_for_reviews                                                      38
duration                                                                    96
director_facebook_likes                                                      9
actor_3_facebook_likes                                                     934
actor_2_name                                                      James Franco
actor_1_facebook_likes                                                   12000
gross                                                              6.04462e+06
genres                                                      Action|Crime|Drama
actor_1_name                                                     Norman Reedus
movie_title                                                       Deuces Wild 
num_voted_users                                                           6200
cast_total_facebook_likes                                                26961
actor_3_name                                                     Frankie Muniz
facenumber_in_poster                                                         1
plot_keywords                  1950s|drug overdose|gang|gang war|new york city
movie_imdb_link              http://www.imdb.com/title/tt0231448/?ref_=fn_t...
num_user_for_reviews                                                        92
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2002
actor_2_facebook_likes                                                   11000
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       398
Name: 3180, dtype: object
color                                                                    Color
director_name                                                    Jason Bateman
num_critic_for_reviews                                                     126
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     322
actor_2_name                                                 Philip Baker Hall
actor_1_facebook_likes                                                     628
gross                                                              7.76403e+06
genres                                                            Comedy|Drama
actor_1_name                                                        Beth Grant
movie_title                                                         Bad Words 
num_voted_users                                                          38459
cast_total_facebook_likes                                                 2061
actor_3_name                                                  Patricia Belcher
facenumber_in_poster                                                         0
plot_keywords                directed by star|indian american|spelling|spel...
movie_imdb_link              http://www.imdb.com/title/tt2170299/?ref_=fn_t...
num_user_for_reviews                                                       119
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2013
actor_2_facebook_likes                                                     497
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3181, dtype: object
color                                                                    Color
director_name                                                  David Schwimmer
num_critic_for_reviews                                                     168
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     231
actor_2_name                                                     Iddo Goldberg
actor_1_facebook_likes                                                     427
gross                                                              5.99897e+06
genres                                                    Comedy|Romance|Sport
actor_1_name                                                       Dylan Moran
movie_title                                                  Run, Fatboy, Run 
num_voted_users                                                          58509
cast_total_facebook_likes                                                 1022
actor_3_name                                                 India de Beaufort
facenumber_in_poster                                                         0
plot_keywords                            blister|gym|marathon|training|wedding
movie_imdb_link              http://www.imdb.com/title/tt0425413/?ref_=fn_t...
num_user_for_reviews                                                       143
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2007
actor_2_facebook_likes                                                     269
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3182, dtype: object
color                                                                    Color
director_name                                                     Allan Arkush
num_critic_for_reviews                                                      19
duration                                                                    78
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     378
actor_2_name                                                       Randy Quaid
actor_1_facebook_likes                                                     753
gross                                                                      NaN
genres                                                           Comedy|Sci-Fi
actor_1_name                                                 Bernadette Peters
movie_title                                                        Heartbeeps 
num_voted_users                                                           1040
cast_total_facebook_likes                                                 2791
actor_3_name                                                 Christopher Guest
facenumber_in_poster                                                         0
plot_keywords                      escape|fish out of water|love|robot|servant
movie_imdb_link              http://www.imdb.com/title/tt0082507/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   1e+07
title_year                                                                1981
actor_2_facebook_likes                                                     695
imdb_score                                                                 4.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       425
Name: 3183, dtype: object
color                                                                    Color
director_name                                                      Mike Binder
num_critic_for_reviews                                                      91
duration                                                                   121
director_facebook_likes                                                     57
actor_3_facebook_likes                                                     664
actor_2_name                                                    Gillian Jacobs
actor_1_facebook_likes                                                    1000
gross                                                               2.1569e+07
genres                                                                   Drama
actor_1_name                                                     Jennifer Ehle
movie_title                                                    Black or White 
num_voted_users                                                           8058
cast_total_facebook_likes                                                 3745
actor_3_name                                                    Jillian Estell
facenumber_in_poster                                                         2
plot_keywords                                                   color in title
movie_imdb_link              http://www.imdb.com/title/tt2883434/?ref_=fn_t...
num_user_for_reviews                                                        57
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+06
title_year                                                                2014
actor_2_facebook_likes                                                     837
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3184, dtype: object
color                                                                    Color
director_name                                                       Eric Bross
num_critic_for_reviews                                                      46
duration                                                                    85
director_facebook_likes                                                     49
actor_3_facebook_likes                                                     401
actor_2_name                                                      Tamala Jones
actor_1_facebook_likes                                                     719
gross                                                              4.35674e+06
genres                                                   Comedy|Family|Romance
actor_1_name                                                     Jerry Stiller
movie_title                                                       On the Line 
num_voted_users                                                           3662
cast_total_facebook_likes                                                 2446
actor_3_name                                                        Dave Foley
facenumber_in_poster                                                         2
plot_keywords                based on short film|chicago illinois|el train|...
movie_imdb_link              http://www.imdb.com/title/tt0279286/?ref_=fn_t...
num_user_for_reviews                                                        79
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.6e+07
title_year                                                                2001
actor_2_facebook_likes                                                     405
imdb_score                                                                 4.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3185, dtype: object
color                                                                    Color
director_name                                                    Werner Herzog
num_critic_for_reviews                                                     198
duration                                                                   120
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     294
actor_2_name                                                         Toby Huss
actor_1_facebook_likes                                                   23000
gross                                                              5.48438e+06
genres                                           Adventure|Biography|Drama|War
actor_1_name                                                    Christian Bale
movie_title                                                       Rescue Dawn 
num_voted_users                                                          84641
cast_total_facebook_likes                                                24270
actor_3_name                                                     François Chau
facenumber_in_poster                                                         0
plot_keywords                               bombing|guard|jungle|laos|prisoner
movie_imdb_link              http://www.imdb.com/title/tt0462504/?ref_=fn_t...
num_user_for_reviews                                                       205
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2006
actor_2_facebook_likes                                                     342
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3186, dtype: object
color                                                                    Color
director_name                                                     Dan Fogelman
num_critic_for_reviews                                                     139
duration                                                                   106
director_facebook_likes                                                    102
actor_3_facebook_likes                                                     970
actor_2_name                                                   Jennifer Garner
actor_1_facebook_likes                                                   14000
gross                                                              5.34832e+06
genres                                                      Comedy|Drama|Music
actor_1_name                                                         Al Pacino
movie_title                                                     Danny Collins 
num_voted_users                                                          20810
cast_total_facebook_likes                                                18712
actor_3_name                                                   Melissa Benoist
facenumber_in_poster                                                         0
plot_keywords                entertainer|inspiration|lost opportunity|pregn...
movie_imdb_link              http://www.imdb.com/title/tt1772288/?ref_=fn_t...
num_user_for_reviews                                                       100
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2015
actor_2_facebook_likes                                                    3000
imdb_score                                                                 7.1
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 3187, dtype: object
color                                                                    Color
director_name                                                      Jay Duplass
num_critic_for_reviews                                                     182
duration                                                                    83
director_facebook_likes                                                    157
actor_3_facebook_likes                                                     581
actor_2_name                                                         Evan Ross
actor_1_facebook_likes                                                    2000
gross                                                              4.24416e+06
genres                                                            Comedy|Drama
actor_1_name                                                        Judy Greer
movie_title                                           Jeff, Who Lives at Home 
num_voted_users                                                          56005
cast_total_facebook_likes                                                 3374
actor_3_name                                                    Rae Dawn Chong
facenumber_in_poster                                                         5
plot_keywords                basement|errand|secret admirer|slacker|wrong n...
movie_imdb_link              http://www.imdb.com/title/tt1588334/?ref_=fn_t...
num_user_for_reviews                                                       112
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2011
actor_2_facebook_likes                                                     616
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3188, dtype: object
color                                                                    Color
director_name                                                  Luca Guadagnino
num_critic_for_reviews                                                     181
duration                                                                   120
director_facebook_likes                                                     64
actor_3_facebook_likes                                                      72
actor_2_name                                                   Waris Ahluwalia
actor_1_facebook_likes                                                     144
gross                                                              5.00465e+06
genres                                                           Drama|Romance
actor_1_name                                                    Flavio Parenti
movie_title                                                         I Am Love 
num_voted_users                                                          14031
cast_total_facebook_likes                                                  474
actor_3_name                                                   Alba Rohrwacher
facenumber_in_poster                                                         1
plot_keywords                             chef|friend|italy|restaurant|russian
movie_imdb_link              http://www.imdb.com/title/tt1226236/?ref_=fn_t...
num_user_for_reviews                                                       114
language                                                               Italian
country                                                                  Italy
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2009
actor_2_facebook_likes                                                     110
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3189, dtype: object
color                                                                    Color
director_name                                                       John Putch
num_critic_for_reviews                                                      23
duration                                                                   111
director_facebook_likes                                                     60
actor_3_facebook_likes                                                     699
actor_2_name                                                    Diedrich Bader
actor_1_facebook_likes                                                     823
gross                                                              3.33382e+06
genres                                                    Drama|Mystery|Sci-Fi
actor_1_name                                                    Robert Picardo
movie_title                                     Atlas Shrugged II: The Strike 
num_voted_users                                                           5612
cast_total_facebook_likes                                                 5262
actor_3_name                                                      Esai Morales
facenumber_in_poster                                                         0
plot_keywords                box office flop|critically bashed|government|i...
movie_imdb_link              http://www.imdb.com/title/tt1985017/?ref_=fn_t...
num_user_for_reviews                                                       122
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2012
actor_2_facebook_likes                                                     759
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3190, dtype: object
color                                                                    Color
director_name                                                      Peter Medak
num_critic_for_reviews                                                      30
duration                                                                   100
director_facebook_likes                                                     34
actor_3_facebook_likes                                                     541
actor_2_name                                                   Michael Wincott
actor_1_facebook_likes                                                   10000
gross                                                              3.27558e+06
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                       Gary Oldman
movie_title                                                 Romeo Is Bleeding 
num_voted_users                                                          10735
cast_total_facebook_likes                                                13160
actor_3_name                                                         Lena Olin
facenumber_in_poster                                                         1
plot_keywords                     detective|police|protection|russian|sergeant
movie_imdb_link              http://www.imdb.com/title/tt0107983/?ref_=fn_t...
num_user_for_reviews                                                        88
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                1.15e+07
title_year                                                                1993
actor_2_facebook_likes                                                     721
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       561
Name: 3191, dtype: object
color                                                                    Color
director_name                                                Steven Soderbergh
num_critic_for_reviews                                                     111
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     132
actor_2_name                                                 Lesley Ann Warren
actor_1_facebook_likes                                                     402
gross                                                               3.1931e+06
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                       Peter Fonda
movie_title                                                         The Limey 
num_voted_users                                                          24412
cast_total_facebook_likes                                                 1335
actor_3_name                                                   William Lucking
facenumber_in_poster                                                         0
plot_keywords                   daughter|englishman|ex con|revenge|young woman
movie_imdb_link              http://www.imdb.com/title/tt0165854/?ref_=fn_t...
num_user_for_reviews                                                       240
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                1999
actor_2_facebook_likes                                                     296
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       944
Name: 3192, dtype: object
color                                                                    Color
director_name                                                      Paul Haggis
num_critic_for_reviews                                                     287
duration                                                                   115
director_facebook_likes                                                    549
actor_3_facebook_likes                                                     911
actor_2_name                                                    Loretta Devine
actor_1_facebook_likes                                                    3000
gross                                                              5.45573e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                       Don Cheadle
movie_title                                                             Crash 
num_voted_users                                                         361169
cast_total_facebook_likes                                                 5732
actor_3_name                                                 Jennifer Esposito
facenumber_in_poster                                                         0
plot_keywords                race relations|racism|racist|social problem|st...
movie_imdb_link              http://www.imdb.com/title/tt0375679/?ref_=fn_t...
num_user_for_reviews                                                      1624
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                2004
actor_2_facebook_likes                                                     912
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 3193, dtype: object
color                                                                    Color
director_name                                                   Terence Davies
num_critic_for_reviews                                                      96
duration                                                                   135
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     553
actor_2_name                                                  Anthony LaPaglia
actor_1_facebook_likes                                                     902
gross                                                               3.0418e+06
genres                                                           Drama|Romance
actor_1_name                                                       Eric Stoltz
movie_title                                                The House of Mirth 
num_voted_users                                                           6377
cast_total_facebook_likes                                                 2735
actor_3_name                                                Elizabeth McGovern
facenumber_in_poster                                                         0
plot_keywords                        high society|love|money|reputation|wealth
movie_imdb_link              http://www.imdb.com/title/tt0200720/?ref_=fn_t...
num_user_for_reviews                                                       181
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                   1e+07
title_year                                                                2000
actor_2_facebook_likes                                                     576
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       345
Name: 3194, dtype: object
color                                                                    Color
director_name                                                  Harley Cokeliss
num_critic_for_reviews                                                      27
duration                                                                    92
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     311
actor_2_name                                                     Tracey Walter
actor_1_facebook_likes                                                     754
gross                                                              3.06086e+06
genres                                                   Action|Drama|Thriller
actor_1_name                                                   Cliff Robertson
movie_title                                                            Malone 
num_voted_users                                                           1768
cast_total_facebook_likes                                                 1891
actor_3_name                                                    Dennis Burkley
facenumber_in_poster                                                         4
plot_keywords                        assassin|box office flop|cia|farmer|power
movie_imdb_link              http://www.imdb.com/title/tt0093483/?ref_=fn_t...
num_user_for_reviews                                                        37
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1987
actor_2_facebook_likes                                                     324
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       208
Name: 3195, dtype: object
color                                                                    Color
director_name                                                     Victor Salva
num_critic_for_reviews                                                      44
duration                                                                   120
director_facebook_likes                                                    108
actor_3_facebook_likes                                                     400
actor_2_name                                                         Tim DeKay
actor_1_facebook_likes                                                     634
gross                                                              1.05565e+06
genres                                                     Drama|Romance|Sport
actor_1_name                                                  Scott Mechlowicz
movie_title                                                  Peaceful Warrior 
num_voted_users                                                          20426
cast_total_facebook_likes                                                 2673
actor_3_name                                                    Agnes Bruckner
facenumber_in_poster                                                         1
plot_keywords                college|college athlete|comeback|gymnast|olympics
movie_imdb_link              http://www.imdb.com/title/tt0438315/?ref_=fn_t...
num_user_for_reviews                                                       175
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2006
actor_2_facebook_likes                                                     436
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3196, dtype: object
color                                                                    Color
director_name                                                        Tom Brady
num_critic_for_reviews                                                      49
duration                                                                    97
director_facebook_likes                                                    105
actor_3_facebook_likes                                                     269
actor_2_name                                                      Kevin Nealon
actor_1_facebook_likes                                                     982
gross                                                              2.33132e+06
genres                                                                  Comedy
actor_1_name                                                       Don Johnson
movie_title                                   Bucky Larson: Born to Be a Star 
num_voted_users                                                           9541
cast_total_facebook_likes                                                 2603
actor_3_name                                                 Nicholas Turturro
facenumber_in_poster                                                         1
plot_keywords                diner|eating a banana|masturbation|porn star|s...
movie_imdb_link              http://www.imdb.com/title/tt1411664/?ref_=fn_t...
num_user_for_reviews                                                        64
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2011
actor_2_facebook_likes                                                     503
imdb_score                                                                 3.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3197, dtype: object
color                                                                    Color
director_name                                                        Spike Lee
num_critic_for_reviews                                                      57
duration                                                                   135
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     851
actor_2_name                                                  Michael Rapaport
actor_1_facebook_likes                                                    1000
gross                                                              2.18527e+06
genres                                                      Comedy|Drama|Music
actor_1_name                                                     Gillian White
movie_title                                                        Bamboozled 
num_voted_users                                                           8720
cast_total_facebook_likes                                                 4266
actor_3_name                                                Jada Pinkett Smith
facenumber_in_poster                                                         0
plot_keywords                       actor|minstrel show|protest|success|writer
movie_imdb_link              http://www.imdb.com/title/tt0215545/?ref_=fn_t...
num_user_for_reviews                                                       186
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2000
actor_2_facebook_likes                                                     975
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 3198, dtype: object
color                                                                    Color
director_name                                                       Jason Zada
num_critic_for_reviews                                                     185
duration                                                                    93
director_facebook_likes                                                      4
actor_3_facebook_likes                                                       4
actor_2_name                                                    Stephanie Vogt
actor_1_facebook_likes                                                     533
gross                                                              2.65834e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                       Eoin Macken
movie_title                                                        The Forest 
num_voted_users                                                          20837
cast_total_facebook_likes                                                  578
actor_3_name                                                          Gen Seto
facenumber_in_poster                                                         1
plot_keywords                 forest|japan|suicide|suicide forest|supernatural
movie_imdb_link              http://www.imdb.com/title/tt3387542/?ref_=fn_t...
num_user_for_reviews                                                       127
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2016
actor_2_facebook_likes                                                      35
imdb_score                                                                 4.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 3199, dtype: object
color                                                                    Color
director_name                                            Franklin J. Schaffner
num_critic_for_reviews                                                       2
duration                                                                   118
director_facebook_likes                                                     76
actor_3_facebook_likes                                                     249
actor_2_name                                                  William Hootkins
actor_1_facebook_likes                                                     902
gross                                                                   800000
genres                                              Adventure|Mystery|Thriller
actor_1_name                                                    Frank Langella
movie_title                                                            Sphinx 
num_voted_users                                                            892
cast_total_facebook_likes                                                 2079
actor_3_name                                                      John Gielgud
facenumber_in_poster                                                         0
plot_keywords                              bat|curse|egyptologist|mummy|murder
movie_imdb_link              http://www.imdb.com/title/tt0083113/?ref_=fn_t...
num_user_for_reviews                                                        21
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.4e+07
title_year                                                                1981
actor_2_facebook_likes                                                     488
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       106
Name: 3200, dtype: object
color                                                                    Color
director_name                                                    Noah Baumbach
num_critic_for_reviews                                                     270
duration                                                                    97
director_facebook_likes                                                    387
actor_3_facebook_likes                                                      64
actor_2_name                                                      Maria Dizzia
actor_1_facebook_likes                                                    6000
gross                                                              7.57407e+06
genres                                                            Comedy|Drama
actor_1_name                                                       Naomi Watts
movie_title                                                 While We're Young 
num_voted_users                                                          30325
cast_total_facebook_likes                                                 6322
actor_3_name                                                    Dree Hemingway
facenumber_in_poster                                                         2
plot_keywords                documentary filmmaker|documentary filmmaking|f...
movie_imdb_link              http://www.imdb.com/title/tt1791682/?ref_=fn_t...
num_user_for_reviews                                                        96
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2014
actor_2_facebook_likes                                                     139
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3201, dtype: object
color                                                                    Color
director_name                                                      Chris Weitz
num_critic_for_reviews                                                      94
duration                                                                    98
director_facebook_likes                                                    129
actor_3_facebook_likes                                                     221
actor_2_name                                             Eddie 'Piolin' Sotelo
actor_1_facebook_likes                                                     749
gross                                                              1.75432e+06
genres                                                           Drama|Romance
actor_1_name                                                     Demián Bichir
movie_title                                                     A Better Life 
num_voted_users                                                          13174
cast_total_facebook_likes                                                 2214
actor_3_name                                                     Robert Peters
facenumber_in_poster                                                         0
plot_keywords                                 gang|gardener|money|police|truck
movie_imdb_link              http://www.imdb.com/title/tt1554091/?ref_=fn_t...
num_user_for_reviews                                                        81
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2011
actor_2_facebook_likes                                                     252
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3202, dtype: object
color                                                                    Color
director_name                                                 David Cronenberg
num_critic_for_reviews                                                     157
duration                                                                    98
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     258
actor_2_name                                                      John Neville
actor_1_facebook_likes                                                     530
gross                                                              1.64179e+06
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                Miranda Richardson
movie_title                                                            Spider 
num_voted_users                                                          30096
cast_total_facebook_likes                                                 1381
actor_3_name                                                     Lynn Redgrave
facenumber_in_poster                                                         0
plot_keywords                   halfway house|key|reality|schizophrenia|spider
movie_imdb_link              http://www.imdb.com/title/tt0278731/?ref_=fn_t...
num_user_for_reviews                                                       213
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2002
actor_2_facebook_likes                                                     387
imdb_score                                                                 6.8
aspect_ratio                                                              1.78
movie_facebook_likes                                                         0
Name: 3203, dtype: object
color                                                                    Color
director_name                                                    Eric Blakeney
num_critic_for_reviews                                                      49
duration                                                                   101
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     826
actor_2_name                                                      Oliver Platt
actor_1_facebook_likes                                                   14000
gross                                                              1.63184e+06
genres                                                    Comedy|Crime|Romance
actor_1_name                                                       Liam Neeson
movie_title                                                           Gun Shy 
num_voted_users                                                           5936
cast_total_facebook_likes                                                17665
actor_3_name                                                     Mitch Pileggi
facenumber_in_poster                                                         0
plot_keywords                       colombian|enema|group therapy|murder|nurse
movie_imdb_link              http://www.imdb.com/title/tt0171356/?ref_=fn_t...
num_user_for_reviews                                                        91
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2000
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       242
Name: 3204, dtype: object
color                                                                    Color
director_name                                                  Douglas McGrath
num_critic_for_reviews                                                      80
duration                                                                   132
director_facebook_likes                                                     41
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Anne Hathaway
actor_1_facebook_likes                                                   16000
gross                                                              1.30985e+06
genres                                                           Drama|Romance
actor_1_name                                                    Charlie Hunnam
movie_title                                                 Nicholas Nickleby 
num_voted_users                                                           9395
cast_total_facebook_likes                                                29177
actor_3_name                                                     Jim Broadbent
facenumber_in_poster                                                         1
plot_keywords                             boy|boys' school|death|friend|orphan
movie_imdb_link              http://www.imdb.com/title/tt0309912/?ref_=fn_t...
num_user_for_reviews                                                       103
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                   1e+07
title_year                                                                2002
actor_2_facebook_likes                                                   11000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3205, dtype: object
color                                                                    Color
director_name                                                     Ariel Vromen
num_critic_for_reviews                                                     221
duration                                                                   106
director_facebook_likes                                                     34
actor_3_facebook_likes                                                     683
actor_2_name                                                      James Franco
actor_1_facebook_likes                                                   11000
gross                                                              1.93944e+06
genres                                                   Biography|Crime|Drama
actor_1_name                                                       Chris Evans
movie_title                                                        The Iceman 
num_voted_users                                                          55567
cast_total_facebook_likes                                                23187
actor_3_name                                                       Robert Davi
facenumber_in_poster                                                         1
plot_keywords                based on true story|contract killer|crime fami...
movie_imdb_link              http://www.imdb.com/title/tt1491044/?ref_=fn_t...
num_user_for_reviews                                                       144
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2012
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                     20000
Name: 3206, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      53
duration                                                                    55
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                       2
actor_2_name                                                   Olaf Lubaszenko
actor_1_facebook_likes                                                      20
gross                                                                   447093
genres                                                                   Drama
actor_1_name                                                    Krystyna Janda
movie_title                                               Dekalog             
num_voted_users                                                          12591
cast_total_facebook_likes                                                   25
actor_3_name                                               Olgierd Lukaszewicz
facenumber_in_poster                                                         0
plot_keywords                meaning of life|moral challenge|morality|searc...
movie_imdb_link              http://www.imdb.com/title/tt0092337/?ref_=fn_t...
num_user_for_reviews                                                        37
language                                                                Polish
country                                                                 Poland
content_rating                                                           TV-MA
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                       3
imdb_score                                                                 9.1
aspect_ratio                                                              1.33
movie_facebook_likes                                                         0
Name: 3207, dtype: object
color                                                                    Color
director_name                                                    Rakesh Roshan
num_critic_for_reviews                                                      20
duration                                                                   168
director_facebook_likes                                                     53
actor_3_facebook_likes                                                      45
actor_2_name                                                             Rekha
actor_1_facebook_likes                                                     307
gross                                                                      NaN
genres                                         Action|Adventure|Romance|Sci-Fi
actor_1_name                                                  Naseeruddin Shah
movie_title                                                            Krrish 
num_voted_users                                                          12411
cast_total_facebook_likes                                                  616
actor_3_name                                                     Sharat Saxena
facenumber_in_poster                                                         0
plot_keywords                breaking the fourth wall|breaking the fourth w...
movie_imdb_link              http://www.imdb.com/title/tt0432637/?ref_=fn_t...
num_user_for_reviews                                                       110
language                                                                 Hindi
country                                                                  India
content_rating                                                       Not Rated
budget                                                                   1e+07
title_year                                                                2006
actor_2_facebook_likes                                                     200
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       533
Name: 3208, dtype: object
color                                                                    Color
director_name                                                      John Waters
num_critic_for_reviews                                                      90
duration                                                                    87
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     503
actor_2_name                                                  Melanie Griffith
actor_1_facebook_likes                                                     975
gross                                                              1.27698e+06
genres                                                   Comedy|Crime|Thriller
actor_1_name                                                       Alicia Witt
movie_title                                                 Cecil B. DeMented 
num_voted_users                                                          11403
cast_total_facebook_likes                                                 3059
actor_3_name                                                      Kevin Nealon
facenumber_in_poster                                                         2
plot_keywords                actress|drive in|female protagonist|movie star...
movie_imdb_link              http://www.imdb.com/title/tt0173716/?ref_=fn_t...
num_user_for_reviews                                                       150
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2000
actor_2_facebook_likes                                                     537
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       795
Name: 3209, dtype: object
color                                                                    Color
director_name                                                 William Friedkin
num_critic_for_reviews                                                     376
duration                                                                    98
director_facebook_likes                                                    607
actor_3_facebook_likes                                                     251
actor_2_name                                                   Scott A. Martin
actor_1_facebook_likes                                                   11000
gross                                                              1.98776e+06
genres                                            Crime|Drama|Romance|Thriller
actor_1_name                                               Matthew McConaughey
movie_title                                                        Killer Joe 
num_voted_users                                                          59297
cast_total_facebook_likes                                                11853
actor_3_name                                                      Carol Sutton
facenumber_in_poster                                                         0
plot_keywords                female nudity|female pubic hair|lingerie|neo n...
movie_imdb_link              http://www.imdb.com/title/tt1726669/?ref_=fn_t...
num_user_for_reviews                                                       216
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                2011
actor_2_facebook_likes                                                     414
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     12000
Name: 3210, dtype: object
color                                                                    Color
director_name                                                    Derrick Borte
num_critic_for_reviews                                                     144
duration                                                                    96
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     688
actor_2_name                                                         Gary Cole
actor_1_facebook_likes                                                    2000
gross                                                              1.47451e+06
genres                                                            Comedy|Drama
actor_1_name                                                        Demi Moore
movie_title                                                       The Joneses 
num_voted_users                                                          33473
cast_total_facebook_likes                                                 4607
actor_3_name                                                     Robert Pralgo
facenumber_in_poster                                                         4
plot_keywords                envy|fake family|gadget|materialism|unhappy ma...
movie_imdb_link              http://www.imdb.com/title/tt1285309/?ref_=fn_t...
num_user_for_reviews                                                        88
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2009
actor_2_facebook_likes                                                     989
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3211, dtype: object
color                                                                    Color
director_name                                             Richard Kwietniowski
num_critic_for_reviews                                                      82
duration                                                                   104
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     232
actor_2_name                                                     Minnie Driver
actor_1_facebook_likes                                                   22000
gross                                                              1.01105e+06
genres                                                    Crime|Drama|Thriller
actor_1_name                                            Philip Seymour Hoffman
movie_title                                                    Owning Mahowny 
num_voted_users                                                          10585
cast_total_facebook_likes                                                23513
actor_3_name                                                     Maury Chaykin
facenumber_in_poster                                                         1
plot_keywords                    bank|bank fraud|bank manager|gambling|toronto
movie_imdb_link              http://www.imdb.com/title/tt0285861/?ref_=fn_t...
num_user_for_reviews                                                        83
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2003
actor_2_facebook_likes                                                     893
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3212, dtype: object
color                                                                    Color
director_name                                                     Bob Odenkirk
num_critic_for_reviews                                                      51
duration                                                                    93
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     622
actor_2_name                                                        Lee Majors
actor_1_facebook_likes                                                     966
gross                                                                   900926
genres                                                                  Comedy
actor_1_name                                                     Jenna Fischer
movie_title                                              The Brothers Solomon 
num_voted_users                                                           9517
cast_total_facebook_likes                                                 3307
actor_3_name                                                        Will Forte
facenumber_in_poster                                                         2
plot_keywords                           antarctica|coma|neighbor|phd|pregnancy
movie_imdb_link              http://www.imdb.com/title/tt0784972/?ref_=fn_t...
num_user_for_reviews                                                        46
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2007
actor_2_facebook_likes                                                     799
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       319
Name: 3213, dtype: object
color                                                                    Color
director_name                                                     Kar-Wai Wong
num_critic_for_reviews                                                     192
duration                                                                    95
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      20
actor_2_name                                                       Norah Jones
actor_1_facebook_likes                                                   20000
gross                                                                   866778
genres                                                           Drama|Romance
actor_1_name                                                   Natalie Portman
movie_title                                               My Blueberry Nights 
num_voted_users                                                          44208
cast_total_facebook_likes                                                20364
actor_3_name                                                     Adriane Lenox
facenumber_in_poster                                                         3
plot_keywords                     blueberry pie|diner|nevada|new york city|pie
movie_imdb_link              http://www.imdb.com/title/tt0765120/?ref_=fn_t...
num_user_for_reviews                                                       117
language                                                               English
country                                                              Hong Kong
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2007
actor_2_facebook_likes                                                     329
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3214, dtype: object
color                                                                    Color
director_name                                                    John Turturro
num_critic_for_reviews                                                      36
duration                                                                   119
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      54
actor_2_name                                                       Ben Gazzara
actor_1_facebook_likes                                                     816
gross                                                                   836641
genres                                                                   Drama
actor_1_name                                                  Beverly D'Angelo
movie_title                                                        Illuminata 
num_voted_users                                                           1402
cast_total_facebook_likes                                                 1585
actor_3_name                                                    George DiCenzo
facenumber_in_poster                                                         0
plot_keywords                critic|new york|new york city|playwright|theat...
movie_imdb_link              http://www.imdb.com/title/tt0120709/?ref_=fn_t...
num_user_for_reviews                                                        40
language                                                               English
country                                                                  Spain
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1998
actor_2_facebook_likes                                                     623
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                        74
Name: 3215, dtype: object
color                                                                    Color
director_name                                                      Guy Ritchie
num_critic_for_reviews                                                      71
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     119
actor_2_name                                                Jeanne Tripplehorn
actor_1_facebook_likes                                                     990
gross                                                                   598645
genres                                                          Comedy|Romance
actor_1_name                                                   Bruce Greenwood
movie_title                                                        Swept Away 
num_voted_users                                                          13145
cast_total_facebook_likes                                                 2006
actor_3_name                                                    David Thornton
facenumber_in_poster                                                         0
plot_keywords                            island|sailor|storm|stranded|vacation
movie_imdb_link              http://www.imdb.com/title/tt0291502/?ref_=fn_t...
num_user_for_reviews                                                       215
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2002
actor_2_facebook_likes                                                     711
imdb_score                                                                 3.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       725
Name: 3216, dtype: object
color                                                                    Color
director_name                                                    Joshua Seftel
num_critic_for_reviews                                                      79
duration                                                                   107
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      91
actor_2_name                                                 Sergej Trifunovic
actor_1_facebook_likes                                                     603
gross                                                                   578527
genres                                                  Action|Comedy|Thriller
actor_1_name                                                      Bashar Rahal
movie_title                                                         War, Inc. 
num_voted_users                                                          20008
cast_total_facebook_likes                                                  988
actor_3_name                                                       Ned Bellamy
facenumber_in_poster                                                         3
plot_keywords                    assassin|corporation|pop star|reporter|satire
movie_imdb_link              http://www.imdb.com/title/tt0884224/?ref_=fn_t...
num_user_for_reviews                                                       112
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2008
actor_2_facebook_likes                                                     175
imdb_score                                                                 5.7
aspect_ratio                                                              1.78
movie_facebook_likes                                                       883
Name: 3217, dtype: object
color                                                          Black and White
director_name                                                     Stephen Chow
num_critic_for_reviews                                                     246
duration                                                                    85
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      51
actor_2_name                                                         Karen Mok
actor_1_facebook_likes                                                     478
gross                                                                   488872
genres                                                     Action|Comedy|Sport
actor_1_name                                                          Wei Zhao
movie_title                                                    Shaolin Soccer 
num_voted_users                                                          56923
cast_total_facebook_likes                                                  700
actor_3_name                                                    Kwok-Kwan Chan
facenumber_in_poster                                                         2
plot_keywords                    cult film|kung fu|martial arts|shaolin|soccer
movie_imdb_link              http://www.imdb.com/title/tt0286112/?ref_=fn_t...
num_user_for_reviews                                                       243
language                                                             Cantonese
country                                                              Hong Kong
content_rating                                                              PG
budget                                                                   1e+07
title_year                                                                2001
actor_2_facebook_likes                                                      83
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3218, dtype: object
color                                                                    Color
director_name                                                    Vincent Gallo
num_critic_for_reviews                                                     115
duration                                                                    93
director_facebook_likes                                                    787
actor_3_facebook_likes                                                       0
actor_2_name                                                      Cheryl Tiegs
actor_1_facebook_likes                                                     787
gross                                                                   365734
genres                                                                   Drama
actor_1_name                                                     Vincent Gallo
movie_title                                                   The Brown Bunny 
num_voted_users                                                          11487
cast_total_facebook_likes                                                  883
actor_3_name                                                     Anna Vareschi
facenumber_in_poster                                                         0
plot_keywords                boyfriend girlfriend relationship|erection|fem...
movie_imdb_link              http://www.imdb.com/title/tt0330099/?ref_=fn_t...
num_user_for_reviews                                                       226
language                                                               English
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                   1e+07
title_year                                                                2003
actor_2_facebook_likes                                                      96
imdb_score                                                                   5
aspect_ratio                                                              1.66
movie_facebook_likes                                                       952
Name: 3219, dtype: object
color                                                                    Color
director_name                                                   Claude Chabrol
num_critic_for_reviews                                                      34
duration                                                                   101
director_facebook_likes                                                    324
actor_3_facebook_likes                                                      28
actor_2_name                                                   François Cluzet
actor_1_facebook_likes                                                     678
gross                                                                   231417
genres                                                   Comedy|Crime|Thriller
actor_1_name                                                  Isabelle Huppert
movie_title                                                       The Swindle 
num_voted_users                                                           1649
cast_total_facebook_likes                                                 1256
actor_3_name                                                   Michel Serrault
facenumber_in_poster                                                         0
plot_keywords                             con|con artist|money|scam|sils maria
movie_imdb_link              http://www.imdb.com/title/tt0120018/?ref_=fn_t...
num_user_for_reviews                                                        21
language                                                                French
country                                                                 France
content_rating                                                             NaN
budget                                                                   6e+07
title_year                                                                1997
actor_2_facebook_likes                                                     541
imdb_score                                                                 6.6
aspect_ratio                                                              1.66
movie_facebook_likes                                                        33
Name: 3220, dtype: object
color                                                                    Color
director_name                                                      Jon Stewart
num_critic_for_reviews                                                     129
duration                                                                   103
director_facebook_likes                                                    593
actor_3_facebook_likes                                                     241
actor_2_name                                                        Claire Foy
actor_1_facebook_likes                                                     374
gross                                                              3.09349e+06
genres                                                         Biography|Drama
actor_1_name                                                        Numan Acar
movie_title                                                         Rosewater 
num_voted_users                                                           8307
cast_total_facebook_likes                                                 1283
actor_3_name                                                    Haluk Bilginer
facenumber_in_poster                                                         0
plot_keywords                based on true story|hijab|journalism|prison|re...
movie_imdb_link              http://www.imdb.com/title/tt2752688/?ref_=fn_t...
num_user_for_reviews                                                        37
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2014
actor_2_facebook_likes                                                     362
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                      5000
Name: 3221, dtype: object
color                                                                    Color
director_name                                                       Bigas Luna
num_critic_for_reviews                                                      22
duration                                                                   101
director_facebook_likes                                                    163
actor_3_facebook_likes                                                      34
actor_2_name                                              Aitana Sánchez-Gijón
actor_1_facebook_likes                                                     837
gross                                                                   244465
genres                                                           Drama|Romance
actor_1_name                                                  Olivier Martinez
movie_title                                    The Chambermaid on the Titanic 
num_voted_users                                                           1135
cast_total_facebook_likes                                                 1019
actor_3_name                                                  Romane Bohringer
facenumber_in_poster                                                         1
plot_keywords                     foundry|foundry worker|french|friend|titanic
movie_imdb_link              http://www.imdb.com/title/tt0129923/?ref_=fn_t...
num_user_for_reviews                                                        14
language                                                                French
country                                                                 France
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                1997
actor_2_facebook_likes                                                     130
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                        85
Name: 3222, dtype: object
color                                                                    Color
director_name                                                    Ralph Fiennes
num_critic_for_reviews                                                     196
duration                                                                   123
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     131
actor_2_name                                                     Ashraf Barhom
actor_1_facebook_likes                                                   18000
gross                                                                   756452
genres                                                      Drama|Thriller|War
actor_1_name                                                     Gerard Butler
movie_title                                                        Coriolanus 
num_voted_users                                                          27009
cast_total_facebook_likes                                                18652
actor_3_name                                                      Lubna Azabal
facenumber_in_poster                                                         0
plot_keywords                modern day adaptation|reference to william sha...
movie_imdb_link              http://www.imdb.com/title/tt1372686/?ref_=fn_t...
num_user_for_reviews                                                       118
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2011
actor_2_facebook_likes                                                     451
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 3223, dtype: object
color                                                                    Color
director_name                                                       Dan Harris
num_critic_for_reviews                                                      73
duration                                                                   111
director_facebook_likes                                                     24
actor_3_facebook_likes                                                      83
actor_2_name                                                      Ryan Donowho
actor_1_facebook_likes                                                     374
gross                                                                   228524
genres                                                            Comedy|Drama
actor_1_name                                                        Kip Pardue
movie_title                                                  Imaginary Heroes 
num_voted_users                                                           8708
cast_total_facebook_likes                                                  768
actor_3_name                                                   Larry Fessenden
facenumber_in_poster                                                         2
plot_keywords                cat|christmas song|lawn mowing|leave of absenc...
movie_imdb_link              http://www.imdb.com/title/tt0373024/?ref_=fn_t...
num_user_for_reviews                                                        56
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+06
title_year                                                                2004
actor_2_facebook_likes                                                     181
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       345
Name: 3224, dtype: object
color                                                                    Color
director_name                                                        Mel Smith
num_critic_for_reviews                                                      43
duration                                                                    86
director_facebook_likes                                                    302
actor_3_facebook_likes                                                     428
actor_2_name                                                        Danny Dyer
actor_1_facebook_likes                                                     893
gross                                                                   226792
genres                                                     Action|Comedy|Drama
actor_1_name                                                     Minnie Driver
movie_title                                          High Heels and Low Lifes 
num_voted_users                                                           3080
cast_total_facebook_likes                                                 3049
actor_3_name                                                    Mary McCormack
facenumber_in_poster                                                         2
plot_keywords                attempted murder|blackmail|diver's watch|nurse...
movie_imdb_link              http://www.imdb.com/title/tt0253126/?ref_=fn_t...
num_user_for_reviews                                                        44
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2001
actor_2_facebook_likes                                                     798
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       117
Name: 3225, dtype: object
color                                                                    Color
director_name                                                Bobcat Goldthwait
num_critic_for_reviews                                                     129
duration                                                                    99
director_facebook_likes                                                    800
actor_3_facebook_likes                                                     334
actor_2_name                                                      Daryl Sabara
actor_1_facebook_likes                                                   49000
gross                                                                   221210
genres                                                            Comedy|Drama
actor_1_name                                                    Robin Williams
movie_title                                              World's Greatest Dad 
num_voted_users                                                          31964
cast_total_facebook_likes                                                50542
actor_3_name                                                     Henry Simmons
facenumber_in_poster                                                         1
plot_keywords                black comedy|fictional talk show|high school t...
movie_imdb_link              http://www.imdb.com/title/tt1262981/?ref_=fn_t...
num_user_for_reviews                                                       129
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     640
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3226, dtype: object
color                                                                    Color
director_name                                                Christopher Smith
num_critic_for_reviews                                                     200
duration                                                                    90
director_facebook_likes                                                     76
actor_3_facebook_likes                                                     345
actor_2_name                                                     Toby Stephens
actor_1_facebook_likes                                                     798
gross                                                                   136432
genres                                                  Comedy|Horror|Thriller
actor_1_name                                                        Danny Dyer
movie_title                                                         Severance 
num_voted_users                                                          31890
cast_total_facebook_likes                                                 2217
actor_3_name                                                      Laura Harris
facenumber_in_poster                                                         0
plot_keywords                blood splatter|eastern europe|female nudity|pi...
movie_imdb_link              http://www.imdb.com/title/tt0464196/?ref_=fn_t...
num_user_for_reviews                                                       194
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2006
actor_2_facebook_likes                                                     769
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3227, dtype: object
color                                                                    Color
director_name                                                    Stuart Gordon
num_critic_for_reviews                                                      79
duration                                                                    82
director_facebook_likes                                                    216
actor_3_facebook_likes                                                     885
actor_2_name                                                         Dulé Hill
actor_1_facebook_likes                                                    1000
gross                                                                   131617
genres                                                          Drama|Thriller
actor_1_name                                                      Joe Mantegna
movie_title                                                            Edmond 
num_voted_users                                                           9971
cast_total_facebook_likes                                                 5761
actor_3_name                                                     Jeffrey Combs
facenumber_in_poster                                                         1
plot_keywords                bipolar disorder|sodomy|stabbing|street life|v...
movie_imdb_link              http://www.imdb.com/title/tt0443496/?ref_=fn_t...
num_user_for_reviews                                                       119
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2005
actor_2_facebook_likes                                                     922
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       661
Name: 3228, dtype: object
color                                                                    Color
director_name                                                       Jake Scott
num_critic_for_reviews                                                     112
duration                                                                   110
director_facebook_likes                                                     26
actor_3_facebook_likes                                                     146
actor_2_name                                                       Ally Sheedy
actor_1_facebook_likes                                                   17000
gross                                                                   152857
genres                                                                   Drama
actor_1_name                                                   Kristen Stewart
movie_title                                             Welcome to the Rileys 
num_voted_users                                                          19979
cast_total_facebook_likes                                                18236
actor_3_name                                                      Kerry Cahill
facenumber_in_poster                                                         3
plot_keywords                    businessman|prostitute|street|stripper|travel
movie_imdb_link              http://www.imdb.com/title/tt1183923/?ref_=fn_t...
num_user_for_reviews                                                        56
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                     793
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3229, dtype: object
color                                                                    Color
director_name                                                      Alan Metter
num_critic_for_reviews                                                      17
duration                                                                    83
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     421
actor_2_name                                                   Michael Winslow
actor_1_facebook_likes                                                   16000
gross                                                                   126247
genres                                                            Comedy|Crime
actor_1_name                                                   Christopher Lee
movie_title                                 Police Academy: Mission to Moscow 
num_voted_users                                                          24958
cast_total_facebook_likes                                                17469
actor_3_name                                                       G.W. Bailey
facenumber_in_poster                                                         0
plot_keywords                captain|commandant|mafia|russian mafia|securit...
movie_imdb_link              http://www.imdb.com/title/tt0110857/?ref_=fn_t...
num_user_for_reviews                                                       103
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.2e+06
title_year                                                                1994
actor_2_facebook_likes                                                     542
imdb_score                                                                 3.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       321
Name: 3230, dtype: object
color                                                                    Color
director_name                                                       Jeb Stuart
num_critic_for_reviews                                                      20
duration                                                                   128
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     553
actor_2_name                                                       Nate Parker
actor_1_facebook_likes                                                     665
gross                                                                    82739
genres                                                                   Drama
actor_1_name                                                    Ricky Schroder
movie_title                                           Blood Done Sign My Name 
num_voted_users                                                            465
cast_total_facebook_likes                                                 4579
actor_3_name                                                        Lee Norris
facenumber_in_poster                                                         0
plot_keywords                based on autobiography|based on novel|based on...
movie_imdb_link              http://www.imdb.com/title/tt1210039/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                     664
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       503
Name: 3231, dtype: object
color                                                                    Color
director_name                                                        Rafa Lara
num_critic_for_reviews                                                      12
duration                                                                   125
director_facebook_likes                                                     21
actor_3_facebook_likes                                                      36
actor_2_name                                                    Andrés Montiel
actor_1_facebook_likes                                                      78
gross                                                                   169379
genres                                                       Drama|History|War
actor_1_name                                                 Jorge Luis Moreno
movie_title                                         Cinco de Mayo, La Batalla 
num_voted_users                                                            683
cast_total_facebook_likes                                                  221
actor_3_name                                                    William Miller
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2553908/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                               Spanish
country                                                                 Mexico
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2013
actor_2_facebook_likes                                                      61
imdb_score                                                                 6.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                       874
Name: 3232, dtype: object
color                                                                    Color
director_name                                                  Michael Radford
num_critic_for_reviews                                                      59
duration                                                                    97
director_facebook_likes                                                     53
actor_3_facebook_likes                                                     499
actor_2_name                                                      Jared Gilman
actor_1_facebook_likes                                                     962
gross                                                                      NaN
genres                                                    Comedy|Drama|Romance
actor_1_name                                                        Chris Noth
movie_title                                                       Elsa & Fred 
num_voted_users                                                           2041
cast_total_facebook_likes                                                 3465
actor_3_name                                                      James Brolin
facenumber_in_poster                                                         0
plot_keywords                apartment|death of protagonist|follow that car...
movie_imdb_link              http://www.imdb.com/title/tt2113659/?ref_=fn_t...
num_user_for_reviews                                                        18
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2014
actor_2_facebook_likes                                                     545
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3233, dtype: object
color                                                                    Color
director_name                                                    Arthur Hiller
num_critic_for_reviews                                                      29
duration                                                                    86
director_facebook_likes                                                     71
actor_3_facebook_likes                                                     385
actor_2_name                                                  Harvey Weinstein
actor_1_facebook_likes                                                     795
gross                                                                    15447
genres                                                                  Comedy
actor_1_name                                                         Eric Idle
movie_title                         An Alan Smithee Film: Burn Hollywood Burn 
num_voted_users                                                           2971
cast_total_facebook_likes                                                 2655
actor_3_name                                                       Ryan O'Neal
facenumber_in_poster                                                         0
plot_keywords                box office flop|critically bashed|director|hol...
movie_imdb_link              http://www.imdb.com/title/tt0118577/?ref_=fn_t...
num_user_for_reviews                                                        85
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1997
actor_2_facebook_likes                                                     474
imdb_score                                                                 3.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                        89
Name: 3234, dtype: object
color                                                                    Color
director_name                                                 Michael Meredith
num_critic_for_reviews                                                      23
duration                                                                    91
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     875
actor_2_name                                                 Justin Timberlake
actor_1_facebook_likes                                                   12000
gross                                                                    19348
genres                                                            Comedy|Drama
actor_1_name                                                      Jeff Bridges
movie_title                                                     The Open Road 
num_voted_users                                                           2941
cast_total_facebook_likes                                                16118
actor_3_name                                                        Ted Danson
facenumber_in_poster                                                         2
plot_keywords                 american south|baseball|farmland|motel|road trip
movie_imdb_link              http://www.imdb.com/title/tt1007018/?ref_=fn_t...
num_user_for_reviews                                                        11
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2009
actor_2_facebook_likes                                                    3000
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       370
Name: 3235, dtype: object
color                                                                    Color
director_name                                                   Julio DePietro
num_critic_for_reviews                                                      22
duration                                                                    90
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     617
actor_2_name                                                      Scott Porter
actor_1_facebook_likes                                                     806
gross                                                                   100503
genres                                                          Comedy|Romance
actor_1_name                                                   Adrian Martinez
movie_title                                                      The Good Guy 
num_voted_users                                                           7759
cast_total_facebook_likes                                                 3124
actor_3_name                                                         Aaron Yoo
facenumber_in_poster                                                         2
plot_keywords                book club|cheating boyfriend|job promotion|man...
movie_imdb_link              http://www.imdb.com/title/tt1247662/?ref_=fn_t...
num_user_for_reviews                                                        20
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2009
actor_2_facebook_likes                                                     690
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 3236, dtype: object
color                                                                    Color
director_name                                              Katherine Dieckmann
num_critic_for_reviews                                                      43
duration                                                                    90
director_facebook_likes                                                      8
actor_3_facebook_likes                                                     495
actor_2_name                                                     Minnie Driver
actor_1_facebook_likes                                                    1000
gross                                                                    92900
genres                                                            Comedy|Drama
actor_1_name                                                 Stephanie Szostak
movie_title                                                        Motherhood 
num_voted_users                                                           3662
cast_total_facebook_likes                                                 3146
actor_3_name                                                   Anthony Edwards
facenumber_in_poster                                                         1
plot_keywords                birthday|birthday party|delivery man|mother|ne...
movie_imdb_link              http://www.imdb.com/title/tt1220220/?ref_=fn_t...
num_user_for_reviews                                                        23
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+06
title_year                                                                2009
actor_2_facebook_likes                                                     893
imdb_score                                                                 4.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       546
Name: 3237, dtype: object
color                                                                    Color
director_name                                                     William Dear
num_critic_for_reviews                                                      16
duration                                                                    94
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     422
actor_2_name                                                       Corbin Bleu
actor_1_facebook_likes                                                     835
gross                                                                   140987
genres                                                                   Drama
actor_1_name                                                    Madison Pettis
movie_title                                                        Free Style 
num_voted_users                                                            361
cast_total_facebook_likes                                                 2519
actor_3_name                                                 Sandra Echeverría
facenumber_in_poster                                                         3
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1128071/?ref_=fn_t...
num_user_for_reviews                                                         4
language                                                               English
country                                                                 Canada
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2008
actor_2_facebook_likes                                                     632
imdb_score                                                                 4.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                        58
Name: 3238, dtype: object
color                                                                    Color
director_name                                                      Kim Farrant
num_critic_for_reviews                                                      84
duration                                                                   112
director_facebook_likes                                                     93
actor_3_facebook_likes                                                      51
actor_2_name                                                      Reef Ireland
actor_1_facebook_likes                                                     147
gross                                                                      NaN
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                 Nicholas Hamilton
movie_title                                                      Strangerland 
num_voted_users                                                           5637
cast_total_facebook_likes                                                  285
actor_3_name                                                       Sean Keenan
facenumber_in_poster                                                         0
plot_keywords                australian|desert|mother daughter relationship...
movie_imdb_link              http://www.imdb.com/title/tt2325977/?ref_=fn_t...
num_user_for_reviews                                                        57
language                                                               English
country                                                              Australia
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2015
actor_2_facebook_likes                                                      52
imdb_score                                                                 5.2
aspect_ratio                                                              2.39
movie_facebook_likes                                                         0
Name: 3239, dtype: object
color                                                                    Color
director_name                                                     Marcus Raboy
num_critic_for_reviews                                                       4
duration                                                                    85
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     240
actor_2_name                                                      Tamala Jones
actor_1_facebook_likes                                                     706
gross                                                                      NaN
genres                                                      Comedy|Crime|Music
actor_1_name                                                         Mike Epps
movie_title                                               The Janky Promoters 
num_voted_users                                                           1097
cast_total_facebook_likes                                                 1936
actor_3_name                                                     Glenn Plummer
facenumber_in_poster                                                         2
plot_keywords                bigger dreams|concert promoter|hotel maid|pep ...
movie_imdb_link              http://www.imdb.com/title/tt1210071/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     405
imdb_score                                                                 5.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       402
Name: 3240, dtype: object
color                                                                    Color
director_name                                                   Scott Marshall
num_critic_for_reviews                                                      20
duration                                                                    93
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     611
actor_2_name                                                       Drew Waters
actor_1_facebook_likes                                                     906
gross                                                                     5561
genres                                                          Comedy|Romance
actor_1_name                                                       Drew Fuller
movie_title                                                   Blonde Ambition 
num_voted_users                                                           4995
cast_total_facebook_likes                                                 4725
actor_3_name                                                      Larry Miller
facenumber_in_poster                                                         1
plot_keywords                boss|business|career|confidence|female protago...
movie_imdb_link              http://www.imdb.com/title/tt0887719/?ref_=fn_t...
num_user_for_reviews                                                        34
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2007
actor_2_facebook_likes                                                     848
imdb_score                                                                 3.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       160
Name: 3241, dtype: object
color                                                                    Color
director_name                                               Álex de la Iglesia
num_critic_for_reviews                                                      71
duration                                                                   104
director_facebook_likes                                                    275
actor_3_facebook_likes                                                     102
actor_2_name                                                    Leonor Watling
actor_1_facebook_likes                                                     439
gross                                                                     3607
genres                                                  Crime|Mystery|Thriller
actor_1_name                                                        Jim Carter
movie_title                                                The Oxford Murders 
num_voted_users                                                          22753
cast_total_facebook_likes                                                  940
actor_3_name                                                      Danny Sapani
facenumber_in_poster                                                         4
plot_keywords                 landlady|lecture|murder|oxford university|symbol
movie_imdb_link              http://www.imdb.com/title/tt0488604/?ref_=fn_t...
num_user_for_reviews                                                        94
language                                                               English
country                                                                  Spain
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2008
actor_2_facebook_likes                                                     161
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3242, dtype: object
color                                                                    Color
director_name                                                   Andrew Traucki
num_critic_for_reviews                                                     102
duration                                                                    94
director_facebook_likes                                                     10
actor_3_facebook_likes                                                      72
actor_2_name                                                    Gyton Grantley
actor_1_facebook_likes                                                     122
gross                                                                      NaN
genres                                                         Horror|Thriller
actor_1_name                                             Damian Walshe-Howling
movie_title                                                          The Reef 
num_voted_users                                                          11950
cast_total_facebook_likes                                                  375
actor_3_name                                                Adrienne Pickering
facenumber_in_poster                                                         0
plot_keywords                boat|great white shark|killing an animal|shark...
movie_imdb_link              http://www.imdb.com/title/tt1320291/?ref_=fn_t...
num_user_for_reviews                                                        89
language                                                               English
country                                                              Australia
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                     109
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3243, dtype: object
color                                                                    Color
director_name                                                   Michael Clancy
num_critic_for_reviews                                                      27
duration                                                                    85
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     742
actor_2_name                                                          Rip Torn
actor_1_facebook_likes                                                   11000
gross                                                                    70527
genres                                                            Comedy|Drama
actor_1_name                                                   Zooey Deschanel
movie_title                                                            Eulogy 
num_voted_users                                                           7690
cast_total_facebook_likes                                                14656
actor_3_name                                                     Kelly Preston
facenumber_in_poster                                                         6
plot_keywords                dysfunctional family|family relationships|fami...
movie_imdb_link              http://www.imdb.com/title/tt0349416/?ref_=fn_t...
num_user_for_reviews                                                        68
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                2004
actor_2_facebook_likes                                                     826
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       376
Name: 3244, dtype: object
color                                                                    Color
director_name                                                  Patrick Lussier
num_critic_for_reviews                                                      62
duration                                                                    99
director_facebook_likes                                                     71
actor_3_facebook_likes                                                     126
actor_2_name                                                   Craig Fairbrass
actor_1_facebook_likes                                                     298
gross                                                                      NaN
genres                                           Drama|Fantasy|Horror|Thriller
actor_1_name                                                     Teryl Rothery
movie_title                                          White Noise 2: The Light 
num_voted_users                                                          11285
cast_total_facebook_likes                                                  934
actor_3_name                                                     Adrian Holmes
facenumber_in_poster                                                         0
plot_keywords                angry spirit|aura|electronic voice phenomena|e...
movie_imdb_link              http://www.imdb.com/title/tt0496436/?ref_=fn_t...
num_user_for_reviews                                                        82
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2007
actor_2_facebook_likes                                                     258
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       509
Name: 3245, dtype: object
color                                                                    Color
director_name                                                   Robert Adetuyi
num_critic_for_reviews                                                       5
duration                                                                    91
director_facebook_likes                                                      8
actor_3_facebook_likes                                                     111
actor_2_name                                                    Mishael Morgan
actor_1_facebook_likes                                                     485
gross                                                                      NaN
genres                                                             Drama|Music
actor_1_name                                                     Shane Pollard
movie_title                                    You Got Served: Beat the World 
num_voted_users                                                           1642
cast_total_facebook_likes                                                  964
actor_3_name                                                    Chase Armitage
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1568139/?ref_=fn_t...
num_user_for_reviews                                                        11
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2011
actor_2_facebook_likes                                                     152
imdb_score                                                                 4.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3246, dtype: object
color                                                                    Color
director_name                                                    Kari Skogland
num_critic_for_reviews                                                      76
duration                                                                   117
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     415
actor_2_name                                                      Kevin Zegers
actor_1_facebook_likes                                                    5000
gross                                                                      NaN
genres                                                          Drama|Thriller
actor_1_name                                                      Jim Sturgess
movie_title                                            Fifty Dead Men Walking 
num_voted_users                                                           9585
cast_total_facebook_likes                                                 7637
actor_3_name                                                Michael McElhatton
facenumber_in_poster                                                         1
plot_keywords                1980s|ira|near death experience|title directed...
movie_imdb_link              http://www.imdb.com/title/tt1097643/?ref_=fn_t...
num_user_for_reviews                                                        38
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2008
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3247, dtype: object
color                                                                    Color
director_name                                                     Taedong Park
num_critic_for_reviews                                                       8
duration                                                                    85
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     196
actor_2_name                                                        Tom Arnold
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                     Adventure|Animation
actor_1_name                                                        Drake Bell
movie_title                                                    Jungle Shuffle 
num_voted_users                                                            162
cast_total_facebook_likes                                                 2259
actor_3_name                                                      Amanda Troop
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2722786/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                            South Korea
content_rating                                                             NaN
budget                                                                   1e+07
title_year                                                                2014
actor_2_facebook_likes                                                     618
imdb_score                                                                 4.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                       186
Name: 3248, dtype: object
color                                                                    Color
director_name                                                    Paul Schrader
num_critic_for_reviews                                                      75
duration                                                                   106
director_facebook_likes                                                    261
actor_3_facebook_likes                                                     520
actor_2_name                                                      Ayelet Zurer
actor_1_facebook_likes                                                   30000
gross                                                                      NaN
genres                                                               Drama|War
actor_1_name                                                   Veronica Ferres
movie_title                                                  Adam Resurrected 
num_voted_users                                                           3075
cast_total_facebook_likes                                                31325
actor_3_name                                                      Derek Jacobi
facenumber_in_poster                                                         2
plot_keywords                         circus|dog|entertainer|holocaust|patient
movie_imdb_link              http://www.imdb.com/title/tt0479341/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2008
actor_2_facebook_likes                                                     744
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       589
Name: 3249, dtype: object
color                                                                    Color
director_name                                              Benedikt Erlingsson
num_critic_for_reviews                                                      66
duration                                                                    81
director_facebook_likes                                                      4
actor_3_facebook_likes                                                       5
actor_2_name                                                  Charlotte Bøving
actor_1_facebook_likes                                                      63
gross                                                                    11835
genres                                                    Comedy|Drama|Romance
actor_1_name                                          Ingvar Eggert Sigurðsson
movie_title                                                 Of Horses and Men 
num_voted_users                                                           1920
cast_total_facebook_likes                                                   81
actor_3_name                                        Sigríður María Egilsdóttir
facenumber_in_poster                                                         0
plot_keywords                barbed wire|barbed wire fence|horse|nature|sno...
movie_imdb_link              http://www.imdb.com/title/tt3074732/?ref_=fn_t...
num_user_for_reviews                                                         7
language                                                             Icelandic
country                                                                Iceland
content_rating                                                             NaN
budget                                                                   1e+07
title_year                                                                2013
actor_2_facebook_likes                                                      10
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 3250, dtype: object
color                                                                    Color
director_name                                                  Gurinder Chadha
num_critic_for_reviews                                                      31
duration                                                                   100
director_facebook_likes                                                     98
actor_3_facebook_likes                                                      95
actor_2_name                                                         Mark Addy
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                             Comedy|Drama|Horror|Romance
actor_1_name                                                Sendhil Ramamurthy
movie_title                                        It's a Wonderful Afterlife 
num_voted_users                                                           1250
cast_total_facebook_likes                                                 2227
actor_3_name                                                      Shabana Azmi
facenumber_in_poster                                                         1
plot_keywords                  afterlife|indian|murder|overweight woman|police
movie_imdb_link              http://www.imdb.com/title/tt1319716/?ref_=fn_t...
num_user_for_reviews                                                        16
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2010
actor_2_facebook_likes                                                     891
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       695
Name: 3251, dtype: object
color                                                                    Color
director_name                                                    Jason Connery
num_critic_for_reviews                                                      32
duration                                                                    90
director_facebook_likes                                                    110
actor_3_facebook_likes                                                     711
actor_2_name                                                     Henry Rollins
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                    Action|Horror|Sci-Fi
actor_1_name                                                      Ray Winstone
movie_title                                                  The Devil's Tomb 
num_voted_users                                                           5715
cast_total_facebook_likes                                                 3937
actor_3_name                                                      Jason London
facenumber_in_poster                                                         4
plot_keywords                    desert|mercenary|priest|scientist|war veteran
movie_imdb_link              http://www.imdb.com/title/tt1147687/?ref_=fn_t...
num_user_for_reviews                                                        60
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2009
actor_2_facebook_likes                                                     898
imdb_score                                                                 3.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       486
Name: 3252, dtype: object
color                                                                    Color
director_name                                                        Vic Sarin
num_critic_for_reviews                                                      17
duration                                                                   116
director_facebook_likes                                                     24
actor_3_facebook_likes                                                      46
actor_2_name                                                        Jesse Moss
actor_1_facebook_likes                                                     183
gross                                                                      NaN
genres                                                           Drama|Romance
actor_1_name                                                       Jimi Mistry
movie_title                                                         Partition 
num_voted_users                                                           2223
cast_total_facebook_likes                                                  428
actor_3_name                                                        John Light
facenumber_in_poster                                                         2
plot_keywords                                  india|love|muslim|pakistan|sikh
movie_imdb_link              http://www.imdb.com/title/tt0213985/?ref_=fn_t...
num_user_for_reviews                                                        27
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2007
actor_2_facebook_likes                                                     136
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       746
Name: 3253, dtype: object
color                                                                    Color
director_name                                                         Jim Issa
num_critic_for_reviews                                                       4
duration                                                                    84
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     482
actor_2_name                                                        Luke Perry
actor_1_facebook_likes                                                     670
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                    Elaine Hendrix
movie_title                                                   Good Intentions 
num_voted_users                                                            553
cast_total_facebook_likes                                                 2739
actor_3_name                                                         Jon Gries
facenumber_in_poster                                                         5
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1070781/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2010
actor_2_facebook_likes                                                     608
imdb_score                                                                 5.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                       119
Name: 3254, dtype: object
color                                                                    Color
director_name                                                     Jee-woon Kim
num_critic_for_reviews                                                     152
duration                                                                   135
director_facebook_likes                                                    419
actor_3_facebook_likes                                                       7
actor_2_name                                                     Woo-sung Jung
actor_1_facebook_likes                                                     398
gross                                                                   128486
genres                                         Action|Adventure|Comedy|Western
actor_1_name                                                      Kang-ho Song
movie_title                                      The Good, the Bad, the Weird 
num_voted_users                                                          26156
cast_total_facebook_likes                                                  569
actor_3_name                                                         Dal-su Oh
facenumber_in_poster                                                         0
plot_keywords                       bounty hunter|manchuria|map|train|treasure
movie_imdb_link              http://www.imdb.com/title/tt0901487/?ref_=fn_t...
num_user_for_reviews                                                        74
language                                                                Korean
country                                                            South Korea
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2008
actor_2_facebook_likes                                                     149
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3255, dtype: object
color                                                                    Color
director_name                                              Douglas Aarniokoski
num_critic_for_reviews                                                     129
duration                                                                    84
director_facebook_likes                                                     36
actor_3_facebook_likes                                                     899
actor_2_name                                                    Katrina Bowden
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                         Horror|Thriller
actor_1_name                                                      Boris Kodjoe
movie_title                                                          Nurse 3D 
num_voted_users                                                           7286
cast_total_facebook_likes                                                 4686
actor_3_name                                                   Kathleen Turner
facenumber_in_poster                                                         0
plot_keywords                carnage|female nudity|purple panties|sexual at...
movie_imdb_link              http://www.imdb.com/title/tt1913166/?ref_=fn_t...
num_user_for_reviews                                                        75
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2013
actor_2_facebook_likes                                                     948
imdb_score                                                                 4.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3256, dtype: object
color                                                                    Color
director_name                                                 William Phillips
num_critic_for_reviews                                                      15
duration                                                                    89
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     499
actor_2_name                                                     Callum Rennie
actor_1_facebook_likes                                                     764
gross                                                                      NaN
genres                                             Action|Comedy|Drama|Western
actor_1_name                                                        Tyler Mane
movie_title                                                           Gunless 
num_voted_users                                                           3015
cast_total_facebook_likes                                                 2876
actor_3_name                                                   Dustin Milligan
facenumber_in_poster                                                         1
plot_keywords                blacksmith|bounty hunter|duel|gunslinger|wild ...
movie_imdb_link              http://www.imdb.com/title/tt1376195/?ref_=fn_t...
num_user_for_reviews                                                        27
language                                                               English
country                                                                 Canada
content_rating                                                             NaN
budget                                                                   1e+07
title_year                                                                2010
actor_2_facebook_likes                                                     716
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       850
Name: 3257, dtype: object
color                                                                    Color
director_name                                                     Greg Mottola
num_critic_for_reviews                                                     248
duration                                                                   107
director_facebook_likes                                                     99
actor_3_facebook_likes                                                     452
actor_2_name                                                      Martin Starr
actor_1_facebook_likes                                                   17000
gross                                                              1.60254e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                   Kristen Stewart
movie_title                                                     Adventureland 
num_voted_users                                                         131180
cast_total_facebook_likes                                                18983
actor_3_name                                                     Wendie Malick
facenumber_in_poster                                                         6
plot_keywords                amusement park|strong female character|summer ...
movie_imdb_link              http://www.imdb.com/title/tt1091722/?ref_=fn_t...
num_user_for_reviews                                                       220
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     985
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3258, dtype: object
color                                                                    Color
director_name                                                      Andy Garcia
num_critic_for_reviews                                                      52
duration                                                                   144
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     195
actor_2_name                                                     Victor Rivers
actor_1_facebook_likes                                                     786
gross                                                              2.48396e+06
genres                                                           Drama|Romance
actor_1_name                                                        Danny Pino
movie_title                                                     The Lost City 
num_voted_users                                                           8369
cast_total_facebook_likes                                                 1674
actor_3_name                                                  Enrique Murciano
facenumber_in_poster                                                         0
plot_keywords                   1950s|cuba|cuban flag|fidel castro|havana cuba
movie_imdb_link              http://www.imdb.com/title/tt0343996/?ref_=fn_t...
num_user_for_reviews                                                       165
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 9.6e+06
title_year                                                                2005
actor_2_facebook_likes                                                     228
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       957
Name: 3259, dtype: object
color                                                                    Color
director_name                                                       Steve Carr
num_critic_for_reviews                                                      55
duration                                                                    98
director_facebook_likes                                                     41
actor_3_facebook_likes                                                     525
actor_2_name                                                         Mike Epps
actor_1_facebook_likes                                                     723
gross                                                              5.71766e+07
genres                                                                  Comedy
actor_1_name                                                  John Witherspoon
movie_title                                                       Next Friday 
num_voted_users                                                          27492
cast_total_facebook_likes                                                 3939
actor_3_name                                                    Rolando Molina
facenumber_in_poster                                                         1
plot_keywords                african american|flashback|marijuana joint|por...
movie_imdb_link              http://www.imdb.com/title/tt0195945/?ref_=fn_t...
num_user_for_reviews                                                        84
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 9.5e+06
title_year                                                                2000
actor_2_facebook_likes                                                     706
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3260, dtype: object
color                                                                    Color
director_name                                                 Sarik Andreasyan
num_critic_for_reviews                                                      30
duration                                                                    94
director_facebook_likes                                                      9
actor_3_facebook_likes                                                     262
actor_2_name                                                  Jordana Brewster
actor_1_facebook_likes                                                    4000
gross                                                                      NaN
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                Hayden Christensen
movie_title                                                    American Heist 
num_voted_users                                                          12372
cast_total_facebook_likes                                                 9432
actor_3_name                                                              Akon
facenumber_in_poster                                                         1
plot_keywords                     bank|critically bashed|heist|mechanic|prison
movie_imdb_link              http://www.imdb.com/title/tt2923316/?ref_=fn_t...
num_user_for_reviews                                                        42
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2014
actor_2_facebook_likes                                                    4000
imdb_score                                                                 5.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 3261, dtype: object
color                                                                    Color
director_name                                                    Lewis Gilbert
num_critic_for_reviews                                                     130
duration                                                                   117
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     244
actor_2_name                                                        Burt Kwouk
actor_1_facebook_likes                                                     742
gross                                                                 4.31e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                  Donald Pleasence
movie_title                                               You Only Live Twice 
num_voted_users                                                          75280
cast_total_facebook_likes                                                 2127
actor_3_name                                                  Desmond Llewelyn
facenumber_in_poster                                                         0
plot_keywords                faked death|japan|japanese|poison|secret headq...
movie_imdb_link              http://www.imdb.com/title/tt0062512/?ref_=fn_t...
num_user_for_reviews                                                       267
language                                                               English
country                                                                     UK
content_rating                                                        Approved
budget                                                                 9.5e+06
title_year                                                                1967
actor_2_facebook_likes                                                     462
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3262, dtype: object
color                                                                    Color
director_name                                                    Julian Gilbey
num_critic_for_reviews                                                      29
duration                                                                   102
director_facebook_likes                                                      7
actor_3_facebook_likes                                                    1000
actor_2_name                                                       Alfie Allen
actor_1_facebook_likes                                                   31000
gross                                                                      NaN
genres                                               Action|Comedy|Crime|Drama
actor_1_name                                                         Mem Ferda
movie_title                                                           Plastic 
num_voted_users                                                           5865
cast_total_facebook_likes                                                35634
actor_3_name                                                        Malese Jow
facenumber_in_poster                                                         7
plot_keywords                             credit card fraud|lesbian kiss|miami
movie_imdb_link              http://www.imdb.com/title/tt2556874/?ref_=fn_t...
num_user_for_reviews                                                        12
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2014
actor_2_facebook_likes                                                    1000
imdb_score                                                                   6
aspect_ratio                                                               NaN
movie_facebook_likes                                                      1000
Name: 3263, dtype: object
color                                                                    Color
director_name                                                   Michael Haneke
num_critic_for_reviews                                                     447
duration                                                                   127
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     319
actor_2_name                                                   Emmanuelle Riva
actor_1_facebook_likes                                                     678
gross                                                                   225377
genres                                                           Drama|Romance
actor_1_name                                                  Isabelle Huppert
movie_title                                                             Amour 
num_voted_users                                                          70382
cast_total_facebook_likes                                                 1557
actor_3_name                                            Jean-Louis Trintignant
facenumber_in_poster                                                         1
plot_keywords                        aging|daughter|old couple|old love|stroke
movie_imdb_link              http://www.imdb.com/title/tt1602620/?ref_=fn_t...
num_user_for_reviews                                                       190
language                                                                French
country                                                                 France
content_rating                                                           PG-13
budget                                                                 8.9e+06
title_year                                                                2012
actor_2_facebook_likes                                                     432
imdb_score                                                                 7.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                     33000
Name: 3264, dtype: object
color                                                                    Color
director_name                                                     Gary Sherman
num_critic_for_reviews                                                      66
duration                                                                    98
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     770
actor_2_name                                                  Heather O'Rourke
actor_1_facebook_likes                                                    1000
gross                                                              1.41145e+07
genres                                                         Horror|Thriller
actor_1_name                                                      Tom Skerritt
movie_title                                                   Poltergeist III 
num_voted_users                                                          13190
cast_total_facebook_likes                                                 3827
actor_3_name                                                  Zelda Rubinstein
facenumber_in_poster                                                         0
plot_keywords                aunt niece relationship|brother sister relatio...
movie_imdb_link              http://www.imdb.com/title/tt0095889/?ref_=fn_t...
num_user_for_reviews                                                       114
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                1.05e+07
title_year                                                                1988
actor_2_facebook_likes                                                     887
imdb_score                                                                 4.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       616
Name: 3265, dtype: object
color                                                                    Color
director_name                                                     Valeri Milev
num_critic_for_reviews                                                      18
duration                                                                    88
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     200
actor_2_name                                                       Roger Cross
actor_1_facebook_likes                                                     557
gross                                                                      NaN
genres                                                           Action|Horror
actor_1_name                                                   Daniella Alonso
movie_title                                                           Re-Kill 
num_voted_users                                                           1763
cast_total_facebook_likes                                                 1702
actor_3_name                                                      Jesse Garcia
facenumber_in_poster                                                         0
plot_keywords                after dark|after dark horrorfest|fictional tv ...
movie_imdb_link              http://www.imdb.com/title/tt1612319/?ref_=fn_t...
num_user_for_reviews                                                        26
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 9.5e+06
title_year                                                                2015
actor_2_facebook_likes                                                     290
imdb_score                                                                 5.1
aspect_ratio                                                              1.78
movie_facebook_likes                                                       898
Name: 3266, dtype: object
color                                                                    Color
director_name                                                   Stanley Kramer
num_critic_for_reviews                                                      61
duration                                                                   197
director_facebook_likes                                                    176
actor_3_facebook_likes                                                     760
actor_2_name                                                        Sid Caesar
actor_1_facebook_likes                                                     924
gross                                                                 4.63e+07
genres                                           Action|Adventure|Comedy|Crime
actor_1_name                                                  Jonathan Winters
movie_title                                   It's a Mad, Mad, Mad, Mad World 
num_voted_users                                                          29323
cast_total_facebook_likes                                                 4109
actor_3_name                                                     Spencer Tracy
facenumber_in_poster                                                         0
plot_keywords                         california|desert|dying words|money|race
movie_imdb_link              http://www.imdb.com/title/tt0057193/?ref_=fn_t...
num_user_for_reviews                                                       344
language                                                               English
country                                                                    USA
content_rating                                                        Approved
budget                                                                 9.4e+06
title_year                                                                1963
actor_2_facebook_likes                                                     898
imdb_score                                                                 7.6
aspect_ratio                                                              2.76
movie_facebook_likes                                                         0
Name: 3267, dtype: object
color                                                                    Color
director_name                                                  Pedro Almodóvar
num_critic_for_reviews                                                     232
duration                                                                   121
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      82
actor_2_name                                                       Lola Dueñas
actor_1_facebook_likes                                                     148
gross                                                              1.28997e+07
genres                                              Comedy|Crime|Drama|Mystery
actor_1_name                                                      Carmen Maura
movie_title                                                            Volver 
num_voted_users                                                          76681
cast_total_facebook_likes                                                  448
actor_3_name                                               Antonio de la Torre
facenumber_in_poster                                                         1
plot_keywords                     abusive father|child abuse|death|rape|secret
movie_imdb_link              http://www.imdb.com/title/tt0441909/?ref_=fn_t...
num_user_for_reviews                                                       228
language                                                               Spanish
country                                                                  Spain
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2006
actor_2_facebook_likes                                                     114
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3268, dtype: object
color                                                                    Color
director_name                                                 Gerald Potterton
num_critic_for_reviews                                                      62
duration                                                                    90
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     123
actor_2_name                                                      Joe Flaherty
actor_1_facebook_likes                                                     187
gross                                                                      NaN
genres                               Adventure|Animation|Fantasy|Horror|Sci-Fi
actor_1_name                                                       John Vernon
movie_title                                                       Heavy Metal 
num_voted_users                                                          23516
cast_total_facebook_likes                                                  646
actor_3_name                                                       Don Francks
facenumber_in_poster                                                         0
plot_keywords                    anthology|girl|heavy metal|secretary|segments
movie_imdb_link              http://www.imdb.com/title/tt0082509/?ref_=fn_t...
num_user_for_reviews                                                       147
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                 9.3e+06
title_year                                                                1981
actor_2_facebook_likes                                                     176
imdb_score                                                                 6.7
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 3269, dtype: object
color                                                                    Color
director_name                                                       Jared Hess
num_critic_for_reviews                                                     106
duration                                                                    89
director_facebook_likes                                                    100
actor_3_facebook_likes                                                     327
actor_2_name                                                  Michael Angarano
actor_1_facebook_likes                                                   33000
gross                                                                   113155
genres                                                 Adventure|Comedy|Sci-Fi
actor_1_name                                                      Jizelle Jade
movie_title                                                 Gentlemen Broncos 
num_voted_users                                                           9006
cast_total_facebook_likes                                                34398
actor_3_name                                                    Héctor Jiménez
facenumber_in_poster                                                         7
plot_keywords                amateur film|sexual harassment|sexual innuendo...
movie_imdb_link              http://www.imdb.com/title/tt1161418/?ref_=fn_t...
num_user_for_reviews                                                        54
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     947
imdb_score                                                                 6.1
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 3270, dtype: object
color                                                                    Color
director_name                                                Richard Loncraine
num_critic_for_reviews                                                      56
duration                                                                   104
director_facebook_likes                                                     12
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Jim Broadbent
actor_1_facebook_likes                                                   21000
gross                                                                  2.6e+06
genres                                                               Drama|War
actor_1_name                                                 Robert Downey Jr.
movie_title                                                       Richard III 
num_voted_users                                                          11612
cast_total_facebook_likes                                                23962
actor_3_name                                              Kristin Scott Thomas
facenumber_in_poster                                                         3
plot_keywords                         1930s|abuse of power|england|king|murder
movie_imdb_link              http://www.imdb.com/title/tt0114279/?ref_=fn_t...
num_user_for_reviews                                                        88
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1995
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3271, dtype: object
color                                                                      NaN
director_name                                                      David Hackl
num_critic_for_reviews                                                      48
duration                                                                    94
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     129
actor_2_name                                                  Michaela McManus
actor_1_facebook_likes                                                     826
gross                                                                      NaN
genres                                                  Action|Horror|Thriller
actor_1_name                                                       Scott Glenn
movie_title                                             Into the Grizzly Maze 
num_voted_users                                                           4486
cast_total_facebook_likes                                                 1586
actor_3_name                                                  Luisa D'Oliveira
facenumber_in_poster                                                         4
plot_keywords                    bear|breasts|female nudity|grizzly|wilderness
movie_imdb_link              http://www.imdb.com/title/tt1694021/?ref_=fn_t...
num_user_for_reviews                                                        38
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2015
actor_2_facebook_likes                                                     476
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3272, dtype: object
color                                                                    Color
director_name                                                      Anurag Basu
num_critic_for_reviews                                                      41
duration                                                                    90
director_facebook_likes                                                    116
actor_3_facebook_likes                                                     303
actor_2_name                                            Steven Michael Quezada
actor_1_facebook_likes                                                     594
gross                                                              1.60247e+06
genres                                           Action|Drama|Romance|Thriller
actor_1_name                                                      Bárbara Mori
movie_title                                                             Kites 
num_voted_users                                                           9673
cast_total_facebook_likes                                                 1836
actor_3_name                                                        Kabir Bedi
facenumber_in_poster                                                         0
plot_keywords                          casino|desert|love|suicide|tragic event
movie_imdb_link              http://www.imdb.com/title/tt1198101/?ref_=fn_t...
num_user_for_reviews                                                       106
language                                                               English
country                                                                  India
content_rating                                                             NaN
budget                                                                   6e+08
title_year                                                                2010
actor_2_facebook_likes                                                     412
imdb_score                                                                   6
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 3273, dtype: object
color                                                                    Color
director_name                                                   Lars von Trier
num_critic_for_reviews                                                     439
duration                                                                   130
director_facebook_likes                                                   3000
actor_3_facebook_likes                                                     844
actor_2_name                                                     Kirsten Dunst
actor_1_facebook_likes                                                   10000
gross                                                              3.02987e+06
genres                                                            Drama|Sci-Fi
actor_1_name                                               Alexander Skarsgård
movie_title                                                       Melancholia 
num_voted_users                                                         128729
cast_total_facebook_likes                                                15835
actor_3_name                                                Charlotte Rampling
facenumber_in_poster                                                         1
plot_keywords                art director|breasts|depression|outdoor sex|ri...
movie_imdb_link              http://www.imdb.com/title/tt1527186/?ref_=fn_t...
num_user_for_reviews                                                       551
language                                                               English
country                                                                Denmark
content_rating                                                               R
budget                                                                 7.4e+06
title_year                                                                2011
actor_2_facebook_likes                                                    4000
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     50000
Name: 3274, dtype: object
color                                                                    Color
director_name                                                    Kriv Stenders
num_critic_for_reviews                                                      54
duration                                                                    92
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     110
actor_2_name                                              Keisha Castle-Hughes
actor_1_facebook_likes                                                     509
gross                                                                      NaN
genres                                   Biography|Comedy|Drama|Family|Romance
actor_1_name                                                       Noah Taylor
movie_title                                                           Red Dog 
num_voted_users                                                          13003
cast_total_facebook_likes                                                 1248
actor_3_name                                                         Luke Ford
facenumber_in_poster                                                         0
plot_keywords                  australian|based on true events|dog|love|search
movie_imdb_link              http://www.imdb.com/title/tt0803061/?ref_=fn_t...
num_user_for_reviews                                                        80
language                                                               English
country                                                              Australia
content_rating                                                              PG
budget                                                                 8.5e+06
title_year                                                                2011
actor_2_facebook_likes                                                     446
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 3275, dtype: object
color                                                                    Color
director_name                                                      Yash Chopra
num_critic_for_reviews                                                      50
duration                                                                   176
director_facebook_likes                                                    147
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Katrina Kaif
actor_1_facebook_likes                                                    8000
gross                                                              3.04754e+06
genres                                                           Drama|Romance
actor_1_name                                                    Shah Rukh Khan
movie_title                                                  Jab Tak Hai Jaan 
num_voted_users                                                          42296
cast_total_facebook_likes                                                13762
actor_3_name                                                       Vic Waghorn
facenumber_in_poster                                                         4
plot_keywords                              accident|army|bomb|indian army|love
movie_imdb_link              http://www.imdb.com/title/tt2176013/?ref_=fn_t...
num_user_for_reviews                                                       286
language                                                                 Hindi
country                                                                  India
content_rating                                                       Not Rated
budget                                                              7.2176e+06
title_year                                                                2012
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 3276, dtype: object
color                                                                    Color
director_name                                                     Ridley Scott
num_critic_for_reviews                                                     392
duration                                                                   116
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     513
actor_2_name                                                      Yaphet Kotto
actor_1_facebook_likes                                                    1000
gross                                                                 7.89e+07
genres                                                           Horror|Sci-Fi
actor_1_name                                                      Tom Skerritt
movie_title                                                             Alien 
num_voted_users                                                         563827
cast_total_facebook_likes                                                 2524
actor_3_name                                                     Bolaji Badejo
facenumber_in_poster                                                         0
plot_keywords                      alien|creature|future|outer space|spaceship
movie_imdb_link              http://www.imdb.com/title/tt0078748/?ref_=fn_t...
num_user_for_reviews                                                      1110
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.1e+07
title_year                                                                1979
actor_2_facebook_likes                                                     581
imdb_score                                                                 8.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     23000
Name: 3277, dtype: object
color                                                                    Color
director_name                                                      Tobe Hooper
num_critic_for_reviews                                                     277
duration                                                                    88
director_facebook_likes                                                    365
actor_3_facebook_likes                                                     177
actor_2_name                                                        Edwin Neal
actor_1_facebook_likes                                                     383
gross                                                               3.0859e+07
genres                                                         Horror|Thriller
actor_1_name                                                     Gunnar Hansen
movie_title                                      The Texas Chain Saw Massacre 
num_voted_users                                                          96410
cast_total_facebook_likes                                                 1094
actor_3_name                                                     Marilyn Burns
facenumber_in_poster                                                         0
plot_keywords                cannibal|chainsaw|hitchhiker|independent film|...
movie_imdb_link              http://www.imdb.com/title/tt0072271/?ref_=fn_t...
num_user_for_reviews                                                       826
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   83532
title_year                                                                1974
actor_2_facebook_likes                                                     371
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3278, dtype: object
color                                                                    Color
director_name                                                Floria Sigismondi
num_critic_for_reviews                                                     259
duration                                                                   106
director_facebook_likes                                                     50
actor_3_facebook_likes                                                     741
actor_2_name                                              Scout Taylor-Compton
actor_1_facebook_likes                                                   17000
gross                                                              3.57174e+06
genres                                                   Biography|Drama|Music
actor_1_name                                                   Kristen Stewart
movie_title                                                      The Runaways 
num_voted_users                                                          39260
cast_total_facebook_likes                                                21711
actor_3_name                                                      Johnny Lewis
facenumber_in_poster                                                         2
plot_keywords                band|box office flop|critically bashed|histori...
movie_imdb_link              http://www.imdb.com/title/tt1017451/?ref_=fn_t...
num_user_for_reviews                                                       129
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2010
actor_2_facebook_likes                                                     908
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3279, dtype: object
color                                                                    Color
director_name                                                   Norman Jewison
num_critic_for_reviews                                                      66
duration                                                                   181
director_facebook_likes                                                    278
actor_3_facebook_likes                                                      51
actor_2_name                                               Paul Michael Glaser
actor_1_facebook_likes                                                     402
gross                                                                    5e+07
genres                                            Drama|Family|Musical|Romance
actor_1_name                                                             Topol
movie_title                                               Fiddler on the Roof 
num_voted_users                                                          29839
cast_total_facebook_likes                                                  934
actor_3_name                                                   Rosalind Harris
facenumber_in_poster                                                         0
plot_keywords                immigration|jewish|pogrom|tradition|tradition ...
movie_imdb_link              http://www.imdb.com/title/tt0067093/?ref_=fn_t...
num_user_for_reviews                                                       150
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   9e+06
title_year                                                                1971
actor_2_facebook_likes                                                     343
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3280, dtype: object
color                                                                    Color
director_name                                                    Terence Young
num_critic_for_reviews                                                     129
duration                                                                   130
director_facebook_likes                                                     92
actor_3_facebook_likes                                                     177
actor_2_name                                                      Earl Cameron
actor_1_facebook_likes                                                     244
gross                                                                 6.36e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                  Desmond Llewelyn
movie_title                                                       Thunderball 
num_voted_users                                                          82073
cast_total_facebook_likes                                                 1164
actor_3_name                                                      Lois Maxwell
facenumber_in_poster                                                         1
plot_keywords                domino|fiery redhead|nassau|official james bon...
movie_imdb_link              http://www.imdb.com/title/tt0059800/?ref_=fn_t...
num_user_for_reviews                                                       275
language                                                               English
country                                                                     UK
content_rating                                                        Approved
budget                                                                   9e+06
title_year                                                                1965
actor_2_facebook_likes                                                     189
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3281, dtype: object
color                                                                    Color
director_name                                                      Joseph Kahn
num_critic_for_reviews                                                     115
duration                                                                    93
director_facebook_likes                                                     33
actor_3_facebook_likes                                                     123
actor_2_name                                                   Shanley Caswell
actor_1_facebook_likes                                                   14000
gross                                                                      NaN
genres                                                    Comedy|Horror|Sci-Fi
actor_1_name                                                   Josh Hutcherson
movie_title                                                         Detention 
num_voted_users                                                          12520
cast_total_facebook_likes                                                15014
actor_3_name                                                     Parker Bagley
facenumber_in_poster                                                         2
plot_keywords                blood splatter|detention|high school|overalls|...
movie_imdb_link              http://www.imdb.com/title/tt1701990/?ref_=fn_t...
num_user_for_reviews                                                        76
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2011
actor_2_facebook_likes                                                     383
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3282, dtype: object
color                                                                    Color
director_name                                                   Ferzan Ozpetek
num_critic_for_reviews                                                      81
duration                                                                   110
director_facebook_likes                                                    798
actor_3_facebook_likes                                                      16
actor_2_name                                               Alessandro Preziosi
actor_1_facebook_likes                                                     580
gross                                                                      NaN
genres                                                    Comedy|Drama|Romance
actor_1_name                                                Riccardo Scamarcio
movie_title                                                     Loose Cannons 
num_voted_users                                                           8667
cast_total_facebook_likes                                                  662
actor_3_name                                                    Lunetta Savino
facenumber_in_poster                                                         9
plot_keywords                gay|gay friend|grandmother grandson relationsh...
movie_imdb_link              http://www.imdb.com/title/tt1405810/?ref_=fn_t...
num_user_for_reviews                                                        29
language                                                               Italian
country                                                                  Italy
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                      26
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3283, dtype: object
color                                                                    Color
director_name                                                     F. Gary Gray
num_critic_for_reviews                                                      29
duration                                                                   123
director_facebook_likes                                                    473
actor_3_facebook_likes                                                     685
actor_2_name                                                Jada Pinkett Smith
actor_1_facebook_likes                                                     890
gross                                                              3.60491e+07
genres                                     Action|Crime|Drama|Romance|Thriller
actor_1_name                                                     Vivica A. Fox
movie_title                                                        Set It Off 
num_voted_users                                                          10139
cast_total_facebook_likes                                                 3661
actor_3_name                                                   Blair Underwood
facenumber_in_poster                                                         4
plot_keywords                bank|black comedy|main characters killed off|m...
movie_imdb_link              http://www.imdb.com/title/tt0117603/?ref_=fn_t...
num_user_for_reviews                                                        70
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                1996
actor_2_facebook_likes                                                     851
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3284, dtype: object
color                                                                    Color
director_name                                                   Malcolm D. Lee
num_critic_for_reviews                                                      32
duration                                                                   120
director_facebook_likes                                                     92
actor_3_facebook_likes                                                     862
actor_2_name                                                      Sanaa Lathan
actor_1_facebook_likes                                                    1000
gross                                                              3.40749e+07
genres                                                            Comedy|Drama
actor_1_name                                                  Harold Perrineau
movie_title                                                      The Best Man 
num_voted_users                                                           6525
cast_total_facebook_likes                                                 5420
actor_3_name                                                      Jarrod Bunch
facenumber_in_poster                                                         6
plot_keywords                african american|bachelor party|brooklyn bridg...
movie_imdb_link              http://www.imdb.com/title/tt0168501/?ref_=fn_t...
num_user_for_reviews                                                        79
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                1999
actor_2_facebook_likes                                                     886
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3285, dtype: object
color                                                                    Color
director_name                                                      Tom Holland
num_critic_for_reviews                                                     142
duration                                                                    87
director_facebook_likes                                                     85
actor_3_facebook_likes                                                     118
actor_2_name                                                      Alex Vincent
actor_1_facebook_likes                                                     311
gross                                                              3.32447e+07
genres                                                          Fantasy|Horror
actor_1_name                                                   Catherine Hicks
movie_title                                                      Child's Play 
num_voted_users                                                          62038
cast_total_facebook_likes                                                  760
actor_3_name                                                      Dinah Manoff
facenumber_in_poster                                                         0
plot_keywords                        birthday|doll|murder|serial killer|voodoo
movie_imdb_link              http://www.imdb.com/title/tt0094862/?ref_=fn_t...
num_user_for_reviews                                                       281
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                1988
actor_2_facebook_likes                                                     189
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3286, dtype: object
color                                                                    Color
director_name                                                    Michael Moore
num_critic_for_reviews                                                     263
duration                                                                   123
director_facebook_likes                                                    909
actor_3_facebook_likes                                                     184
actor_2_name                                                   Tucker Albrizzi
actor_1_facebook_likes                                                     909
gross                                                              2.45305e+07
genres                                                       Documentary|Drama
actor_1_name                                                     Michael Moore
movie_title                                                             Sicko 
num_voted_users                                                          66610
cast_total_facebook_likes                                                 1633
actor_3_name                                                      Bill Clinton
facenumber_in_poster                                                         1
plot_keywords                                canada|cuba|france|guantanamo|hmo
movie_imdb_link              http://www.imdb.com/title/tt0386032/?ref_=fn_t...
num_user_for_reviews                                                       429
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+06
title_year                                                                2007
actor_2_facebook_likes                                                     203
imdb_score                                                                   8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3287, dtype: object
color                                                                    Color
director_name                                                   James DeMonaco
num_critic_for_reviews                                                     285
duration                                                                   103
director_facebook_likes                                                     65
actor_3_facebook_likes                                                     908
actor_2_name                                                      Zach Gilford
actor_1_facebook_likes                                                    2000
gross                                                              7.15192e+07
genres                                           Action|Horror|Sci-Fi|Thriller
actor_1_name                                                     Noel Gugliemi
movie_title                                                The Purge: Anarchy 
num_voted_users                                                          92364
cast_total_facebook_likes                                                 6807
actor_3_name                                                Roberta Valderrama
facenumber_in_poster                                                         0
plot_keywords                held at gunpoint|machete|masked man|sequel|vio...
movie_imdb_link              http://www.imdb.com/title/tt2975578/?ref_=fn_t...
num_user_for_reviews                                                       244
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2014
actor_2_facebook_likes                                                     971
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 3288, dtype: object
color                                                                    Color
director_name                                                    Kris Isacsson
num_critic_for_reviews                                                      64
duration                                                                    91
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     407
actor_2_name                                                     Lauren German
actor_1_facebook_likes                                                    3000
gross                                                              2.00353e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                    Rosario Dawson
movie_title                                                       Down to You 
num_voted_users                                                          12324
cast_total_facebook_likes                                                 4409
actor_3_name                                                      Shawn Hatosy
facenumber_in_poster                                                         1
plot_keywords                        artist|cake|college|new york city|student
movie_imdb_link              http://www.imdb.com/title/tt0186975/?ref_=fn_t...
num_user_for_reviews                                                       173
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+06
title_year                                                                2000
actor_2_facebook_likes                                                     683
imdb_score                                                                 4.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       580
Name: 3289, dtype: object
color                                                                    Color
director_name                                                     Danny Leiner
num_critic_for_reviews                                                     150
duration                                                                    88
director_facebook_likes                                                      8
actor_3_facebook_likes                                                     587
actor_2_name                                                      Fred Willard
actor_1_facebook_likes                                                     982
gross                                                              1.82252e+07
genres                                                        Adventure|Comedy
actor_1_name                                                       Ethan Embry
movie_title                                 Harold & Kumar Go to White Castle 
num_voted_users                                                         155262
cast_total_facebook_likes                                                 3114
actor_3_name                                                      Paula Garcés
facenumber_in_poster                                                         2
plot_keywords                   marijuana|police|road trip|stoner|white castle
movie_imdb_link              http://www.imdb.com/title/tt0366551/?ref_=fn_t...
num_user_for_reviews                                                       316
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2004
actor_2_facebook_likes                                                     729
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3290, dtype: object
color                                                                    Color
director_name                                                        Rod Lurie
num_critic_for_reviews                                                     136
duration                                                                   126
director_facebook_likes                                                     37
actor_3_facebook_likes                                                     883
actor_2_name                                                       Gary Oldman
actor_1_facebook_likes                                                   12000
gross                                                              1.78043e+07
genres                                                          Drama|Thriller
actor_1_name                                                      Jeff Bridges
movie_title                                                     The Contender 
num_voted_users                                                          20449
cast_total_facebook_likes                                                25660
actor_3_name                                                  William Petersen
facenumber_in_poster                                                         0
plot_keywords                bridge|governor|political thriller|president|v...
movie_imdb_link              http://www.imdb.com/title/tt0208874/?ref_=fn_t...
num_user_for_reviews                                                       370
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   2e+07
title_year                                                                2000
actor_2_facebook_likes                                                   10000
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 3291, dtype: object
color                                                                    Color
director_name                                                      Ben Younger
num_critic_for_reviews                                                     132
duration                                                                   120
director_facebook_likes                                                     46
actor_3_facebook_likes                                                     701
actor_2_name                                                          Nia Long
actor_1_facebook_likes                                                   14000
gross                                                              1.69382e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                        Vin Diesel
movie_title                                                       Boiler Room 
num_voted_users                                                          41313
cast_total_facebook_likes                                                17336
actor_3_name                                                   Herbert Russell
facenumber_in_poster                                                         3
plot_keywords                           career|casino|judge|stock|stock broker
movie_imdb_link              http://www.imdb.com/title/tt0181984/?ref_=fn_t...
num_user_for_reviews                                                       246
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2000
actor_2_facebook_likes                                                     826
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3292, dtype: object
color                                                                    Color
director_name                                                      John Landis
num_critic_for_reviews                                                      71
duration                                                                   116
director_facebook_likes                                                    644
actor_3_facebook_likes                                                     199
actor_2_name                                                   Denholm Elliott
actor_1_facebook_likes                                                     392
gross                                                                 9.04e+07
genres                                                                  Comedy
actor_1_name                                                        Don Ameche
movie_title                                                    Trading Places 
num_voted_users                                                         102895
cast_total_facebook_likes                                                  845
actor_3_name                                                     Ralph Bellamy
facenumber_in_poster                                                         2
plot_keywords                interracial relationship|poverty|prostitute|sc...
movie_imdb_link              http://www.imdb.com/title/tt0086465/?ref_=fn_t...
num_user_for_reviews                                                       159
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1983
actor_2_facebook_likes                                                     249
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3293, dtype: object
color                                                                    Color
director_name                                                      Glen Morgan
num_critic_for_reviews                                                     186
duration                                                                    94
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     179
actor_2_name                                                      Crystal Lowe
actor_1_facebook_likes                                                     607
gross                                                              1.62353e+07
genres                                                                  Horror
actor_1_name                                                     Oliver Hudson
movie_title                                                   Black Christmas 
num_voted_users                                                          19918
cast_total_facebook_likes                                                 1611
actor_3_name                                                     Andrea Martin
facenumber_in_poster                                                         0
plot_keywords                            attic|christmas|house|incest|sorority
movie_imdb_link              http://www.imdb.com/title/tt0454082/?ref_=fn_t...
num_user_for_reviews                                                       278
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2006
actor_2_facebook_likes                                                     318
imdb_score                                                                 4.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3294, dtype: object
color                                                                    Color
director_name                                                   Daniel Taplitz
num_critic_for_reviews                                                      39
duration                                                                    85
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     127
actor_2_name                                                       Tate Taylor
actor_1_facebook_likes                                                     911
gross                                                              1.18273e+07
genres                                                          Comedy|Romance
actor_1_name                                                 Jennifer Esposito
movie_title                                            Breakin' All the Rules 
num_voted_users                                                           4247
cast_total_facebook_likes                                                 1345
actor_3_name                                                  Patrick Cranshaw
facenumber_in_poster                                                         1
plot_keywords                female to male foot in crotch|lingerie slip|lo...
movie_imdb_link              http://www.imdb.com/title/tt0349169/?ref_=fn_t...
num_user_for_reviews                                                        26
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2004
actor_2_facebook_likes                                                     150
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       266
Name: 3295, dtype: object
color                                                                    Color
director_name                                                  Kenneth Branagh
num_critic_for_reviews                                                      46
duration                                                                   137
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     130
actor_2_name                                                      Derek Jacobi
actor_1_facebook_likes                                                     591
gross                                                              1.01611e+07
genres                              Action|Biography|Drama|History|Romance|War
actor_1_name                                                     Brian Blessed
movie_title                                                           Henry V 
num_voted_users                                                          23441
cast_total_facebook_likes                                                 1341
actor_3_name                                                        Danny Webb
facenumber_in_poster                                                         1
plot_keywords                battle|battle of agincourt|king|shakespeare pl...
movie_imdb_link              http://www.imdb.com/title/tt0097499/?ref_=fn_t...
num_user_for_reviews                                                       108
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   9e+06
title_year                                                                1989
actor_2_facebook_likes                                                     520
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3296, dtype: object
color                                                                    Color
director_name                                                   Tamara Jenkins
num_critic_for_reviews                                                     201
duration                                                                   114
director_facebook_likes                                                     84
actor_3_facebook_likes                                                     338
actor_2_name                                                       David Zayas
actor_1_facebook_likes                                                   22000
gross                                                              6.61033e+06
genres                                                            Comedy|Drama
actor_1_name                                            Philip Seymour Hoffman
movie_title                                                       The Savages 
num_voted_users                                                          32188
cast_total_facebook_likes                                                23770
actor_3_name                                                  Gbenga Akinnagbe
facenumber_in_poster                                                         0
plot_keywords                arizona|dementia|married man|sun city arizona|...
movie_imdb_link              http://www.imdb.com/title/tt0775529/?ref_=fn_t...
num_user_for_reviews                                                       127
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2007
actor_2_facebook_likes                                                     929
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3297, dtype: object
color                                                                    Color
director_name                                                    Linda Mendoza
num_critic_for_reviews                                                      32
duration                                                                    76
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     571
actor_2_name                                                  Freddy Rodríguez
actor_1_facebook_likes                                                     591
gross                                                              6.12624e+06
genres                                                          Comedy|Romance
actor_1_name                                                      Carlos Ponce
movie_title                                                      Chasing Papi 
num_voted_users                                                           3419
cast_total_facebook_likes                                                 2851
actor_3_name                                             Maria Conchita Alonso
facenumber_in_poster                                                         3
plot_keywords                beauty pageant|bilingual|dating|latino|three w...
movie_imdb_link              http://www.imdb.com/title/tt0323572/?ref_=fn_t...
num_user_for_reviews                                                        41
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2003
actor_2_facebook_likes                                                     579
imdb_score                                                                 4.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       419
Name: 3298, dtype: object
color                                                                    Color
director_name                                            Christopher McQuarrie
num_critic_for_reviews                                                     117
duration                                                                   119
director_facebook_likes                                                    188
actor_3_facebook_likes                                                      35
actor_2_name                                                        Nicky Katt
actor_1_facebook_likes                                                     187
gross                                                              6.04786e+06
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                    Kristin Lehman
movie_title                                                The Way of the Gun 
num_voted_users                                                          27536
cast_total_facebook_likes                                                  358
actor_3_name                                                     Dylan Kussman
facenumber_in_poster                                                         4
plot_keywords                 criminal|drifter|gangster|money|surrogate mother
movie_imdb_link              http://www.imdb.com/title/tt0202677/?ref_=fn_t...
num_user_for_reviews                                                       327
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.5e+06
title_year                                                                2000
actor_2_facebook_likes                                                     127
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 3299, dtype: object
color                                                                    Color
director_name                                                      Burr Steers
num_critic_for_reviews                                                     136
duration                                                                    99
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     471
actor_2_name                                                       Rory Culkin
actor_1_facebook_likes                                                    1000
gross                                                               4.6815e+06
genres                                                            Comedy|Drama
actor_1_name                                                     Kieran Culkin
movie_title                                                    Igby Goes Down 
num_voted_users                                                          29058
cast_total_facebook_likes                                                 2478
actor_3_name                                                        Bill Irwin
facenumber_in_poster                                                         1
plot_keywords                          boy|mistress|money|schizophrenic|school
movie_imdb_link              http://www.imdb.com/title/tt0280760/?ref_=fn_t...
num_user_for_reviews                                                       238
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2002
actor_2_facebook_likes                                                     710
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       838
Name: 3300, dtype: object
color                                                                    Color
director_name                                                     Hart Bochner
num_critic_for_reviews                                                      15
duration                                                                    79
director_facebook_likes                                                    157
actor_3_facebook_likes                                                     219
actor_2_name                                                         Matt Ross
actor_1_facebook_likes                                                    4000
gross                                                              4.35077e+06
genres                                                                  Comedy
actor_1_name                                                       Jon Favreau
movie_title                                                               PCU 
num_voted_users                                                          10476
cast_total_facebook_likes                                                 4908
actor_3_name                                                       Chris Young
facenumber_in_poster                                                         3
plot_keywords                college|high school senior|meat|protest|univer...
movie_imdb_link              http://www.imdb.com/title/tt0110759/?ref_=fn_t...
num_user_for_reviews                                                        52
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                1994
actor_2_facebook_likes                                                     248
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3301, dtype: object
color                                                                    Color
director_name                                                Michael O. Sajbel
num_critic_for_reviews                                                      46
duration                                                                   114
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     633
actor_2_name                                                       Drew Fuller
actor_1_facebook_likes                                                     970
gross                                                              3.42087e+06
genres                                                    Drama|Family|Romance
actor_1_name                                                        Bill Cobbs
movie_title                                                 The Ultimate Gift 
num_voted_users                                                          14100
cast_total_facebook_likes                                                 3824
actor_3_name                                                     Mircea Monroe
facenumber_in_poster                                                         2
plot_keywords                billionaire|grandfather|playboy|trust fund bab...
movie_imdb_link              http://www.imdb.com/title/tt0482629/?ref_=fn_t...
num_user_for_reviews                                                        81
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2006
actor_2_facebook_likes                                                     906
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3302, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                       1
duration                                                                    30
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     140
actor_2_name                                              Katherine Kelly Lang
actor_1_facebook_likes                                                     177
gross                                                                      NaN
genres                                                           Drama|Romance
actor_1_name                                                         Ronn Moss
movie_title                            The Bold and the Beautiful             
num_voted_users                                                           5478
cast_total_facebook_likes                                                  639
actor_3_name                                                       Hunter Tylo
facenumber_in_poster                                                         0
plot_keywords                beverly hills california|family relationships|...
movie_imdb_link              http://www.imdb.com/title/tt0092325/?ref_=fn_t...
num_user_for_reviews                                                        54
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     170
imdb_score                                                                 3.5
aspect_ratio                                                              1.78
movie_facebook_likes                                                       748
Name: 3303, dtype: object
color                                                                    Color
director_name                                                  Stewart Raffill
num_critic_for_reviews                                                      41
duration                                                                    91
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     297
actor_2_name                                                    John Carradine
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                  Action|Adventure|Comedy|Romance|Sci-Fi
actor_1_name                                                   Anjelica Huston
movie_title                                                   The Ice Pirates 
num_voted_users                                                           7767
cast_total_facebook_likes                                                 1991
actor_3_name                                                      Robert Urich
facenumber_in_poster                                                         4
plot_keywords                 bar fight|cult film|ice|psychotronic|sword fight
movie_imdb_link              http://www.imdb.com/title/tt0087451/?ref_=fn_t...
num_user_for_reviews                                                        56
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   9e+06
title_year                                                                1984
actor_2_facebook_likes                                                     300
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3304, dtype: object
color                                                                    Color
director_name                                                 Davis Guggenheim
num_critic_for_reviews                                                      65
duration                                                                    95
director_facebook_likes                                                     49
actor_3_facebook_likes                                                     261
actor_2_name                                                        John Doman
actor_1_facebook_likes                                                     702
gross                                                              2.95504e+06
genres                                                   Biography|Drama|Sport
actor_1_name                                                         Emma Bell
movie_title                                                            Gracie 
num_voted_users                                                           3624
cast_total_facebook_likes                                                 2007
actor_3_name                                                   Carly Schroeder
facenumber_in_poster                                                         1
plot_keywords                 boy|girl|soccer|south orange new jersey|teenager
movie_imdb_link              http://www.imdb.com/title/tt0441007/?ref_=fn_t...
num_user_for_reviews                                                        27
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+06
title_year                                                                2007
actor_2_facebook_likes                                                     616
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       313
Name: 3305, dtype: object
color                                                                    Color
director_name                                                  Bart Freundlich
num_critic_for_reviews                                                     100
duration                                                                   103
director_facebook_likes                                                     38
actor_3_facebook_likes                                                     316
actor_2_name                                                   Garry Shandling
actor_1_facebook_likes                                                     745
gross                                                              1.53054e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Billy Crudup
movie_title                                                     Trust the Man 
num_voted_users                                                           7833
cast_total_facebook_likes                                                 1721
actor_3_name                                                 Dagmara Dominczyk
facenumber_in_poster                                                         3
plot_keywords                actress|lesbianism|manhattan new york city|uri...
movie_imdb_link              http://www.imdb.com/title/tt0427968/?ref_=fn_t...
num_user_for_reviews                                                        63
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2005
actor_2_facebook_likes                                                     591
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       215
Name: 3306, dtype: object
color                                                                    Color
director_name                                                   Andrew Fleming
num_critic_for_reviews                                                     129
duration                                                                    92
director_facebook_likes                                                     26
actor_3_facebook_likes                                                     611
actor_2_name                                                       Amy Poehler
actor_1_facebook_likes                                                    1000
gross                                                              4.88187e+06
genres                                                            Comedy|Music
actor_1_name                                                      Steve Coogan
movie_title                                                          Hamlet 2 
num_voted_users                                                          15200
cast_total_facebook_likes                                                 3767
actor_3_name                                                    David Arquette
facenumber_in_poster                                                         1
plot_keywords                gang banger|sequel|shakespeare's hamlet|studen...
movie_imdb_link              http://www.imdb.com/title/tt1104733/?ref_=fn_t...
num_user_for_reviews                                                        76
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2008
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 3307, dtype: object
color                                                                    Color
director_name                                                      Todd Haynes
num_critic_for_reviews                                                     103
duration                                                                   124
director_facebook_likes                                                    162
actor_3_facebook_likes                                                     277
actor_2_name                                                      Eddie Izzard
actor_1_facebook_likes                                                   23000
gross                                                              1.04349e+06
genres                                                             Drama|Music
actor_1_name                                                    Christian Bale
movie_title                                                   Velvet Goldmine 
num_voted_users                                                          27766
cast_total_facebook_likes                                                24102
actor_3_name                                                      Janet McTeer
facenumber_in_poster                                                         3
plot_keywords                1970s|glitter|political cover up|reference to ...
movie_imdb_link              http://www.imdb.com/title/tt0120879/?ref_=fn_t...
num_user_for_reviews                                                       314
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1998
actor_2_facebook_likes                                                     776
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3308, dtype: object
color                                                                    Color
director_name                                                      Hong-jin Na
num_critic_for_reviews                                                      77
duration                                                                   156
director_facebook_likes                                                     43
actor_3_facebook_likes                                                       0
actor_2_name                                                      Jun Kunimura
actor_1_facebook_likes                                                      45
gross                                                                   770629
genres                                         Fantasy|Horror|Mystery|Thriller
actor_1_name                                                    Jung-min Hwang
movie_title                                                       The Wailing 
num_voted_users                                                           2379
cast_total_facebook_likes                                                   50
actor_3_name                                                      Woo-hee Chun
facenumber_in_poster                                                         0
plot_keywords                 policeman|stranger|supernatural|village|vomiting
movie_imdb_link              http://www.imdb.com/title/tt5215952/?ref_=fn_t...
num_user_for_reviews                                                        24
language                                                                Korean
country                                                            South Korea
content_rating                                                       Not Rated
budget                                                                     NaN
title_year                                                                2016
actor_2_facebook_likes                                                       5
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3309, dtype: object
color                                                                    Color
director_name                                                 Kevin Tancharoen
num_critic_for_reviews                                                      67
duration                                                                    84
director_facebook_likes                                                     64
actor_3_facebook_likes                                                     748
actor_2_name                                                    Heather Morris
actor_1_facebook_likes                                                    2000
gross                                                              1.18608e+07
genres                                                       Documentary|Music
actor_1_name                                                       Lea Michele
movie_title                                        Glee: The 3D Concert Movie 
num_voted_users                                                           5156
cast_total_facebook_likes                                                 4617
actor_3_name                                                      Kevin McHale
facenumber_in_poster                                                         0
plot_keywords                concert|live in concert recording|live perform...
movie_imdb_link              http://www.imdb.com/title/tt1922612/?ref_=fn_t...
num_user_for_reviews                                                        21
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   9e+06
title_year                                                                2011
actor_2_facebook_likes                                                     892
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3310, dtype: object
color                                                                    Color
director_name                                              Chatrichalerm Yukol
num_critic_for_reviews                                                      31
duration                                                                   300
director_facebook_likes                                                      6
actor_3_facebook_likes                                                       6
actor_2_name                                              Chatchai Plengpanich
actor_1_facebook_likes                                                       7
gross                                                                   454255
genres                                      Action|Adventure|Drama|History|War
actor_1_name                                              Sarunyu Wongkrachang
movie_title                                          The Legend of Suriyothai 
num_voted_users                                                           1666
cast_total_facebook_likes                                                   32
actor_3_name                                                   Mai Charoenpura
facenumber_in_poster                                                         3
plot_keywords                     16th century|burmese|invasion|queen|thailand
movie_imdb_link              http://www.imdb.com/title/tt0290879/?ref_=fn_t...
num_user_for_reviews                                                        47
language                                                                  Thai
country                                                               Thailand
content_rating                                                               R
budget                                                                   4e+08
title_year                                                                2001
actor_2_facebook_likes                                                       6
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       124
Name: 3311, dtype: object
color                                                                    Color
director_name                                                    Dario Argento
num_critic_for_reviews                                                      76
duration                                                                   120
director_facebook_likes                                                    930
actor_3_facebook_likes                                                     433
actor_2_name                                                  Adrienne Barbeau
actor_1_facebook_likes                                                     982
gross                                                                   349618
genres                                                                  Horror
actor_1_name                                                         John Amos
movie_title                                                     Two Evil Eyes 
num_voted_users                                                           4302
cast_total_facebook_likes                                                 2942
actor_3_name                                                    Sally Kirkland
facenumber_in_poster                                                         1
plot_keywords                           black cat|cat|evil|photographer|undead
movie_imdb_link              http://www.imdb.com/title/tt0100827/?ref_=fn_t...
num_user_for_reviews                                                        45
language                                                               English
country                                                                  Italy
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                1990
actor_2_facebook_likes                                                     602
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       375
Name: 3312, dtype: object
color                                                                    Color
director_name                                                     Eric Lavaine
num_critic_for_reviews                                                      17
duration                                                                    98
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       5
actor_2_name                                                 Julie Engelbrecht
actor_1_facebook_likes                                                     186
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                    Lambert Wilson
movie_title                                                          Barbecue 
num_voted_users                                                           1673
cast_total_facebook_likes                                                  253
actor_3_name                                                  Lionel Abelanski
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3202120/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                                French
country                                                                 France
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2014
actor_2_facebook_likes                                                      41
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       348
Name: 3313, dtype: object
color                                                                    Color
director_name                                                       Mike Leigh
num_critic_for_reviews                                                      81
duration                                                                   121
director_facebook_likes                                                    608
actor_3_facebook_likes                                                      25
actor_2_name                                                        Ruth Sheen
actor_1_facebook_likes                                                     149
gross                                                                   112935
genres                                                                   Drama
actor_1_name                                                   Lesley Manville
movie_title                                                    All or Nothing 
num_voted_users                                                           8161
cast_total_facebook_likes                                                  251
actor_3_name                                                     Gary McDonald
facenumber_in_poster                                                         0
plot_keywords                love|neighbor|single parent|supermarket|workin...
movie_imdb_link              http://www.imdb.com/title/tt0286261/?ref_=fn_t...
num_user_for_reviews                                                        94
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2002
actor_2_facebook_likes                                                      44
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       484
Name: 3314, dtype: object
color                                                                    Color
director_name                                                       Marc Forby
num_critic_for_reviews                                                      26
duration                                                                    97
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     204
actor_2_name                                                       Will Patton
actor_1_facebook_likes                                                     679
gross                                                                   883887
genres                                                                   Drama
actor_1_name                                                 Q'orianka Kilcher
movie_title                                                 Princess Kaiulani 
num_voted_users                                                           1201
cast_total_facebook_likes                                                 1426
actor_3_name                                                       Shaun Evans
facenumber_in_poster                                                         3
plot_keywords                hawaii|hawaiian|historically inaccurate|prince...
movie_imdb_link              http://www.imdb.com/title/tt1185344/?ref_=fn_t...
num_user_for_reviews                                                        14
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   9e+06
title_year                                                                2009
actor_2_facebook_likes                                                     537
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3315, dtype: object
color                                                                    Color
director_name                                                   Peter Cattaneo
num_critic_for_reviews                                                      24
duration                                                                    86
director_facebook_likes                                                     11
actor_3_facebook_likes                                                      18
actor_2_name                                                    Vince Colosimo
actor_1_facebook_likes                                                     185
gross                                                                    13751
genres                                                            Drama|Family
actor_1_name                                               Jacqueline McKenzie
movie_title                                                        Opal Dream 
num_voted_users                                                            813
cast_total_facebook_likes                                                  299
actor_3_name                                                      Peter Callan
facenumber_in_poster                                                         0
plot_keywords                        friend|girl|imaginary friend|outback|town
movie_imdb_link              http://www.imdb.com/title/tt0420835/?ref_=fn_t...
num_user_for_reviews                                                         6
language                                                               English
country                                                              Australia
content_rating                                                              PG
budget                                                                1.14e+07
title_year                                                                2006
actor_2_facebook_likes                                                      62
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       135
Name: 3316, dtype: object
color                                                                    Color
director_name                                                       Scott Mann
num_critic_for_reviews                                                      44
duration                                                                    93
director_facebook_likes                                                      8
actor_3_facebook_likes                                                     558
actor_2_name                                                      Joshua Mikel
actor_1_facebook_likes                                                   22000
gross                                                                      NaN
genres                                                   Action|Crime|Thriller
actor_1_name                                                    Robert De Niro
movie_title                                                             Heist 
num_voted_users                                                          16198
cast_total_facebook_likes                                                24154
actor_3_name                                                      D.B. Sweeney
facenumber_in_poster                                                         1
plot_keywords                                            bus|die hard scenario
movie_imdb_link              http://www.imdb.com/title/tt3276924/?ref_=fn_t...
num_user_for_reviews                                                        57
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.9e+07
title_year                                                                2015
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3317, dtype: object
color                                                                    Color
director_name                                             Ole Christian Madsen
num_critic_for_reviews                                                      80
duration                                                                    45
director_facebook_likes                                                     28
actor_3_facebook_likes                                                     104
actor_2_name                                                   Thure Lindhardt
actor_1_facebook_likes                                                     573
gross                                                                   145109
genres                                              Drama|History|Thriller|War
actor_1_name                                                    Lars Mikkelsen
movie_title                                                  Flame and Citron 
num_voted_users                                                          14247
cast_total_facebook_likes                                                 1098
actor_3_name                                                  Christian Berkel
facenumber_in_poster                                                         1
plot_keywords                danish|double agent|nazi|nazi occupation|resis...
movie_imdb_link              http://www.imdb.com/title/tt0920458/?ref_=fn_t...
num_user_for_reviews                                                        44
language                                                                Danish
country                                                                Denmark
content_rating                                                       Not Rated
budget                                                                 4.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                     197
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3318, dtype: object
color                                                                    Color
director_name                                                      Meiert Avis
num_critic_for_reviews                                                      41
duration                                                                    97
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     230
actor_2_name                                                        Kip Pardue
actor_1_facebook_likes                                                     922
gross                                                              1.04617e+06
genres                                                    Comedy|Music|Romance
actor_1_name                                                    Fisher Stevens
movie_title                                                      Undiscovered 
num_voted_users                                                           2599
cast_total_facebook_likes                                                 1835
actor_3_name                                                     Perrey Reeves
facenumber_in_poster                                                         4
plot_keywords                bare chested male|box office flop|diner|german...
movie_imdb_link              http://www.imdb.com/title/tt0434424/?ref_=fn_t...
num_user_for_reviews                                                        45
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                   9e+06
title_year                                                                2005
actor_2_facebook_likes                                                     374
imdb_score                                                                 4.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       128
Name: 3319, dtype: object
color                                                                    Color
director_name                                                   Julian Jarrold
num_critic_for_reviews                                                      91
duration                                                                   102
director_facebook_likes                                                     11
actor_3_facebook_likes                                                      35
actor_2_name                                                     Warren Clarke
actor_1_facebook_likes                                                   10000
gross                                                                      NaN
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                   Andrew Garfield
movie_title                          Red Riding: In the Year of Our Lord 1974 
num_voted_users                                                           9305
cast_total_facebook_likes                                                10369
actor_3_name                                                      John Henshaw
facenumber_in_poster                                                         0
plot_keywords                ejected from a moving vehicle|gun held to head...
movie_imdb_link              http://www.imdb.com/title/tt1259574/?ref_=fn_t...
num_user_for_reviews                                                        44
language                                                               English
country                                                                     UK
content_rating                                                       Not Rated
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     281
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3320, dtype: object
color                                                                    Color
director_name                                                    André Téchiné
num_critic_for_reviews                                                      66
duration                                                                   105
director_facebook_likes                                                     25
actor_3_facebook_likes                                                      98
actor_2_name                                                    Ronit Elkabetz
actor_1_facebook_likes                                                     963
gross                                                                     2874
genres                                                                   Drama
actor_1_name                                                 Catherine Deneuve
movie_title                                             The Girl on the Train 
num_voted_users                                                           1219
cast_total_facebook_likes                                                 1375
actor_3_name                                                   Émilie Dequenne
facenumber_in_poster                                                         1
plot_keywords                         bar mitzvah|lawyer|train|wealth|wrestler
movie_imdb_link              http://www.imdb.com/title/tt1183672/?ref_=fn_t...
num_user_for_reviews                                                        14
language                                                                French
country                                                                 France
content_rating                                                         Unrated
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     168
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       120
Name: 3321, dtype: object
color                                                                    Color
director_name                                                      Emily Young
num_critic_for_reviews                                                      19
duration                                                                   103
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     664
actor_2_name                                                 Erika Christensen
actor_1_facebook_likes                                                    4000
gross                                                                      NaN
genres                                                           Drama|Romance
actor_1_name                                             Sarah Michelle Gellar
movie_title                                           Veronika Decides to Die 
num_voted_users                                                          10100
cast_total_facebook_likes                                                 6426
actor_3_name                                                   Jonathan Tucker
facenumber_in_poster                                                         1
plot_keywords                boyfriend girlfriend relationship|female prota...
movie_imdb_link              http://www.imdb.com/title/tt1068678/?ref_=fn_t...
num_user_for_reviews                                                        42
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2009
actor_2_facebook_likes                                                     931
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                      3000
Name: 3322, dtype: object
color                                                                    Color
director_name                                                     Peter Faiman
num_critic_for_reviews                                                      35
duration                                                                    93
director_facebook_likes                                                      4
actor_3_facebook_likes                                                      93
actor_2_name                                                   Linda Kozlowski
actor_1_facebook_likes                                                     442
gross                                                              1.74635e+08
genres                                                        Adventure|Comedy
actor_1_name                                                        Paul Hogan
movie_title                                                  Crocodile Dundee 
num_voted_users                                                          74743
cast_total_facebook_likes                                                  822
actor_3_name                                                    David Gulpilil
facenumber_in_poster                                                         1
plot_keywords                australian outback|crocodile|female reporter|j...
movie_imdb_link              http://www.imdb.com/title/tt0090555/?ref_=fn_t...
num_user_for_reviews                                                        93
language                                                               English
country                                                              Australia
content_rating                                                           PG-13
budget                                                                 8.8e+06
title_year                                                                1986
actor_2_facebook_likes                                                     162
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3323, dtype: object
color                                                                    Color
director_name                                                      Martyn Pick
num_critic_for_reviews                                                      19
duration                                                                    76
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     151
actor_2_name                                                 Steven Waddington
actor_1_facebook_likes                                                     722
gross                                                                      NaN
genres                       Action|Animation|Fantasy|Horror|Mystery|Sci-Fi...
actor_1_name                                                      Sean Pertwee
movie_title                            Ultramarines: A Warhammer 40,000 Movie 
num_voted_users                                                           4990
cast_total_facebook_likes                                                 1254
actor_3_name                                                    Donald Sumpter
facenumber_in_poster                                                         0
plot_keywords                grimdark|mutilated corpse|space marine|ultrama...
movie_imdb_link              http://www.imdb.com/title/tt1679332/?ref_=fn_t...
num_user_for_reviews                                                        64
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                     212
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3324, dtype: object
color                                                                    Color
director_name                                              Roland Suso Richter
num_critic_for_reviews                                                      33
duration                                                                    90
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     327
actor_2_name                                                      Sarah Polley
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                 Mystery|Sci-Fi|Thriller
actor_1_name                                                    Stephen Graham
movie_title                                                      The I Inside 
num_voted_users                                                           9296
cast_total_facebook_likes                                                 2310
actor_3_name                                                       Stephen Rea
facenumber_in_poster                                                         2
plot_keywords                2000s|hospital|man in a wheelchair|year 2000|y...
movie_imdb_link              http://www.imdb.com/title/tt0325596/?ref_=fn_t...
num_user_for_reviews                                                        57
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 8.8e+06
title_year                                                                2004
actor_2_facebook_likes                                                     900
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       458
Name: 3325, dtype: object
color                                                                    Color
director_name                                                      Jeremy Sims
num_critic_for_reviews                                                      17
duration                                                                   122
director_facebook_likes                                                      8
actor_3_facebook_likes                                                      59
actor_2_name                                                    Gyton Grantley
actor_1_facebook_likes                                                     174
gross                                                                      NaN
genres                                                       Drama|History|War
actor_1_name                                               Harrison Gilbertson
movie_title                                                   Beneath Hill 60 
num_voted_users                                                           5741
cast_total_facebook_likes                                                  498
actor_3_name                                                 Steve Le Marquand
facenumber_in_poster                                                        12
plot_keywords                blue clay|diversion|ends with biographical not...
movie_imdb_link              http://www.imdb.com/title/tt1418646/?ref_=fn_t...
num_user_for_reviews                                                        39
language                                                               English
country                                                              Australia
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2010
actor_2_facebook_likes                                                     109
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3326, dtype: object
color                                                                    Color
director_name                                                          Maïwenn
num_critic_for_reviews                                                     163
duration                                                                   127
director_facebook_likes                                                    236
actor_3_facebook_likes                                                      68
actor_2_name                                                           Maïwenn
actor_1_facebook_likes                                                     580
gross                                                                   171320
genres                                                             Crime|Drama
actor_1_name                                                Riccardo Scamarcio
movie_title                                                           Polisse 
num_voted_users                                                          10796
cast_total_facebook_likes                                                 1129
actor_3_name                                                       Karin Viard
facenumber_in_poster                                                         1
plot_keywords                abusive parent|child molester|child protection...
movie_imdb_link              http://www.imdb.com/title/tt1661420/?ref_=fn_t...
num_user_for_reviews                                                        33
language                                                                French
country                                                                 France
content_rating                                                       Not Rated
budget                                                                     NaN
title_year                                                                2011
actor_2_facebook_likes                                                     236
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3327, dtype: object
color                                                                    Color
director_name                                                      Joby Harold
num_critic_for_reviews                                                     133
duration                                                                    84
director_facebook_likes                                                      8
actor_3_facebook_likes                                                     896
actor_2_name                                                    Fisher Stevens
actor_1_facebook_likes                                                    4000
gross                                                              1.43738e+07
genres                                                  Crime|Mystery|Thriller
actor_1_name                                                Hayden Christensen
movie_title                                                             Awake 
num_voted_users                                                          63216
cast_total_facebook_likes                                                 6954
actor_3_name                                                      Denis O'Hare
facenumber_in_poster                                                         0
plot_keywords                anesthetic|anesthetic awareness|heart|heart su...
movie_imdb_link              http://www.imdb.com/title/tt0211933/?ref_=fn_t...
num_user_for_reviews                                                       196
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.6e+06
title_year                                                                2007
actor_2_facebook_likes                                                     922
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3328, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      47
duration                                                                    23
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     265
actor_2_name                                               James Arnold Taylor
actor_1_facebook_likes                                                     668
gross                                                                      NaN
genres                         Action|Adventure|Animation|Drama|Fantasy|Sci-Fi
actor_1_name                                                 Dee Bradley Baker
movie_title                             Star Wars: The Clone Wars             
num_voted_users                                                          28190
cast_total_facebook_likes                                                 1484
actor_3_name                                                          Tom Kane
facenumber_in_poster                                                         0
plot_keywords                begins with narration|female warrior|inbetwequ...
movie_imdb_link              http://www.imdb.com/title/tt0458290/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                               English
country                                                                    USA
content_rating                                                           TV-PG
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     296
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 3329, dtype: object
color                                                                    Color
director_name                                              Ekachai Uekrongtham
num_critic_for_reviews                                                      66
duration                                                                    96
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     305
actor_2_name                                                        Mike Dopud
actor_1_facebook_likes                                                    2000
gross                                                                      162
genres                                                   Action|Crime|Thriller
actor_1_name                                                 Michael Jai White
movie_title                                                        Skin Trade 
num_voted_users                                                           5228
cast_total_facebook_likes                                                 2802
actor_3_name                                                       Celina Jade
facenumber_in_poster                                                         5
plot_keywords                bangkok thailand|detective|human trafficking|r...
movie_imdb_link              http://www.imdb.com/title/tt1641841/?ref_=fn_t...
num_user_for_reviews                                                        38
language                                                               English
country                                                               Thailand
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2014
actor_2_facebook_likes                                                     368
imdb_score                                                                 5.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3330, dtype: object
color                                                                    Color
director_name                                                  Joel Schumacher
num_critic_for_reviews                                                     147
duration                                                                    97
director_facebook_likes                                                    541
actor_3_facebook_likes                                                     673
actor_2_name                                                        Jami Gertz
actor_1_facebook_likes                                                     967
gross                                                              3.22226e+07
genres                                                   Comedy|Fantasy|Horror
actor_1_name                                                      Dianne Wiest
movie_title                                                     The Lost Boys 
num_voted_users                                                          92924
cast_total_facebook_likes                                                 4458
actor_3_name                                                      Jason Patric
facenumber_in_poster                                                         3
plot_keywords                        1980s|california|death|small town|vampire
movie_imdb_link              http://www.imdb.com/title/tt0093437/?ref_=fn_t...
num_user_for_reviews                                                       339
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1987
actor_2_facebook_likes                                                     847
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     19000
Name: 3331, dtype: object
color                                                                    Color
director_name                                                     Scott Cooper
num_critic_for_reviews                                                     273
duration                                                                   112
director_facebook_likes                                                    108
actor_3_facebook_likes                                                     175
actor_2_name                                                        Beth Grant
actor_1_facebook_likes                                                   12000
gross                                                              3.94624e+07
genres                                                     Drama|Music|Romance
actor_1_name                                                      Jeff Bridges
movie_title                                                       Crazy Heart 
num_voted_users                                                          67760
cast_total_facebook_likes                                                13172
actor_3_name                                                 Debrianna Mansini
facenumber_in_poster                                                         0
plot_keywords                country music|country western singer|journalis...
movie_imdb_link              http://www.imdb.com/title/tt1263670/?ref_=fn_t...
num_user_for_reviews                                                       226
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2009
actor_2_facebook_likes                                                     628
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3332, dtype: object
color                                                                    Color
director_name                                                      Mark Rydell
num_critic_for_reviews                                                      32
duration                                                                   125
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     122
actor_2_name                                                  Frederic Forrest
actor_1_facebook_likes                                                     563
gross                                                                 2.92e+07
genres                                                     Drama|Music|Romance
actor_1_name                                                       David Keith
movie_title                                                          The Rose 
num_voted_users                                                           6142
cast_total_facebook_likes                                                 1097
actor_3_name                                                        Alan Bates
facenumber_in_poster                                                         0
plot_keywords                                   awol|demand|driver|drugs|roses
movie_imdb_link              http://www.imdb.com/title/tt0079826/?ref_=fn_t...
num_user_for_reviews                                                        52
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.5e+06
title_year                                                                1979
actor_2_facebook_likes                                                     236
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 3333, dtype: object
color                                                                    Color
director_name                                                 David E. Talbert
num_critic_for_reviews                                                      52
duration                                                                    96
director_facebook_likes                                                     68
actor_3_facebook_likes                                                    1000
actor_2_name                                                  Christina Milian
actor_1_facebook_likes                                                    3000
gross                                                              2.15646e+07
genres                                                                  Comedy
actor_1_name                                                    Djimon Hounsou
movie_title                                                     Baggage Claim 
num_voted_users                                                           7098
cast_total_facebook_likes                                                 8097
actor_3_name                                                      Boris Kodjoe
facenumber_in_poster                                                         9
plot_keywords                                 woman wearing only a man's shirt
movie_imdb_link              http://www.imdb.com/title/tt1171222/?ref_=fn_t...
num_user_for_reviews                                                        41
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.5e+06
title_year                                                                2013
actor_2_facebook_likes                                                    1000
imdb_score                                                                   5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3334, dtype: object
color                                                                    Color
director_name                                                      Roger Vadim
num_critic_for_reviews                                                     107
duration                                                                    98
director_facebook_likes                                                     35
actor_3_facebook_likes                                                     170
actor_2_name                                                    David Hemmings
actor_1_facebook_likes                                                     949
gross                                                                      NaN
genres                                         Adventure|Comedy|Fantasy|Sci-Fi
actor_1_name                                                        Jane Fonda
movie_title                                                        Barbarella 
num_voted_users                                                          24436
cast_total_facebook_likes                                                 1510
actor_3_name                                                       Milo O'Shea
facenumber_in_poster                                                         2
plot_keywords                  41st century|angel|future|laser gun|space opera
movie_imdb_link              http://www.imdb.com/title/tt0062711/?ref_=fn_t...
num_user_for_reviews                                                       186
language                                                               English
country                                                                 France
content_rating                                                              PG
budget                                                                   9e+06
title_year                                                                1968
actor_2_facebook_likes                                                     178
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3335, dtype: object
color                                                                    Color
director_name                                                        Nils Gaup
num_critic_for_reviews                                                       6
duration                                                                    92
director_facebook_likes                                                      8
actor_3_facebook_likes                                                       3
actor_2_name                                              Louisa Milwood-Haigh
actor_1_facebook_likes                                                      35
gross                                                                      NaN
genres                                                        Adventure|Family
actor_1_name                                                   Bjørn Sundquist
movie_title                                                       Shipwrecked 
num_voted_users                                                           1984
cast_total_facebook_likes                                                   47
actor_3_name                                                     Stian Smestad
facenumber_in_poster                                                         2
plot_keywords                                  boy|island|pirate|ship|treasure
movie_imdb_link              http://www.imdb.com/title/tt0099816/?ref_=fn_t...
num_user_for_reviews                                                        14
language                                                               English
country                                                                 Norway
content_rating                                                              PG
budget                                                                   6e+07
title_year                                                                1990
actor_2_facebook_likes                                                       6
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       278
Name: 3336, dtype: object
color                                                                    Color
director_name                                                  Alexander Payne
num_critic_for_reviews                                                     175
duration                                                                   103
director_facebook_likes                                                    729
actor_3_facebook_likes                                                     133
actor_2_name                                                       Chris Klein
actor_1_facebook_likes                                                    2000
gross                                                              1.48796e+07
genres                                                            Comedy|Drama
actor_1_name                                                 Matthew Broderick
movie_title                                                          Election 
num_voted_users                                                          73640
cast_total_facebook_likes                                                 3516
actor_3_name                                                       Molly Hagan
facenumber_in_poster                                                         0
plot_keywords                female protagonist|high school|self destructiv...
movie_imdb_link              http://www.imdb.com/title/tt0126886/?ref_=fn_t...
num_user_for_reviews                                                       441
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1999
actor_2_facebook_likes                                                     841
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3337, dtype: object
color                                                                    Color
director_name                                                        Mira Nair
num_critic_for_reviews                                                     167
duration                                                                   122
director_facebook_likes                                                    300
actor_3_facebook_likes                                                     341
actor_2_name                                                      Brooke Smith
actor_1_facebook_likes                                                     579
gross                                                              1.35692e+07
genres                                                                   Drama
actor_1_name                                                   Jacinda Barrett
movie_title                                                      The Namesake 
num_voted_users                                                          16530
cast_total_facebook_likes                                                 1637
actor_3_name                                                              Tabu
facenumber_in_poster                                                         1
plot_keywords                bengali|india|reference to gogol|train|train c...
movie_imdb_link              http://www.imdb.com/title/tt0433416/?ref_=fn_t...
num_user_for_reviews                                                       117
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2006
actor_2_facebook_likes                                                     405
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3338, dtype: object
color                                                                    Color
director_name                                                       Ari Sandel
num_critic_for_reviews                                                     132
duration                                                                   101
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     429
actor_2_name                                                      Romany Malco
actor_1_facebook_likes                                                   35000
gross                                                              3.40179e+07
genres                                                                  Comedy
actor_1_name                                                      Bella Thorne
movie_title                                                          The DUFF 
num_voted_users                                                          51326
cast_total_facebook_likes                                                36892
actor_3_name                                                    Skyler Samuels
facenumber_in_poster                                                         4
plot_keywords                cartoon on tv|generation y|high school|overall...
movie_imdb_link              http://www.imdb.com/title/tt1666801/?ref_=fn_t...
num_user_for_reviews                                                       116
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.5e+06
title_year                                                                2015
actor_2_facebook_likes                                                     966
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                      8000
Name: 3339, dtype: object
color                                                                    Color
director_name                                               Vondie Curtis-Hall
num_critic_for_reviews                                                      66
duration                                                                   104
director_facebook_likes                                                    170
actor_3_facebook_likes                                                     202
actor_2_name                                                       Max Beesley
actor_1_facebook_likes                                                     736
gross                                                              4.27337e+06
genres                                                     Drama|Music|Romance
actor_1_name                                                      Mariah Carey
movie_title                                                           Glitter 
num_voted_users                                                          19412
cast_total_facebook_likes                                                 1854
actor_3_name                                                 Valarie Pettiford
facenumber_in_poster                                                         1
plot_keywords                cult film|disc jockey|female protagonist|music...
movie_imdb_link              http://www.imdb.com/title/tt0118589/?ref_=fn_t...
num_user_for_reviews                                                       308
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 2.2e+07
title_year                                                                2001
actor_2_facebook_likes                                                     218
imdb_score                                                                 2.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3340, dtype: object
color                                                                    Color
director_name                                                       Tom Elkins
num_critic_for_reviews                                                      79
duration                                                                   101
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     559
actor_2_name                                                      Cicely Tyson
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                           Drama|Horror|Mystery|Thriller
actor_1_name                                                   Abigail Spencer
movie_title                  The Haunting in Connecticut 2: Ghosts of Georgia 
num_voted_users                                                          13167
cast_total_facebook_likes                                                 3164
actor_3_name                                                        Brad James
facenumber_in_poster                                                         0
plot_keywords                            daughter|georgia|mother|slave|trailer
movie_imdb_link              http://www.imdb.com/title/tt1457765/?ref_=fn_t...
num_user_for_reviews                                                        57
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2013
actor_2_facebook_likes                                                     907
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3341, dtype: object
color                                                                    Color
director_name                                                     Woo-Suk Kang
num_critic_for_reviews                                                      15
duration                                                                   135
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      13
actor_2_name                                                      Sung-kee Ahn
actor_1_facebook_likes                                                      28
gross                                                                      NaN
genres                                                            Action|Drama
actor_1_name                                                       Yu-mi Jeong
movie_title                                                           Silmido 
num_voted_users                                                           3290
cast_total_facebook_likes                                                   97
actor_3_name                                                      Kyung-gu Sol
facenumber_in_poster                                                         0
plot_keywords                based on book|based on true story|rape|title s...
movie_imdb_link              http://www.imdb.com/title/tt0387596/?ref_=fn_t...
num_user_for_reviews                                                        17
language                                                                Korean
country                                                            South Korea
content_rating                                                             NaN
budget                                                                   8e+06
title_year                                                                2003
actor_2_facebook_likes                                                      15
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       387
Name: 3342, dtype: object
color                                                                    Color
director_name                                                     Jane Campion
num_critic_for_reviews                                                     222
duration                                                                   119
director_facebook_likes                                                    319
actor_3_facebook_likes                                                     179
actor_2_name                                                    Paul Schneider
actor_1_facebook_likes                                                    2000
gross                                                              4.44006e+06
genres                                                 Biography|Drama|Romance
actor_1_name                                                     Abbie Cornish
movie_title                                                       Bright Star 
num_voted_users                                                          21360
cast_total_facebook_likes                                                 3279
actor_3_name                                                     Samuel Roukin
facenumber_in_poster                                                         0
plot_keywords                      19th century|friend|john keats|passion|poet
movie_imdb_link              http://www.imdb.com/title/tt0810784/?ref_=fn_t...
num_user_for_reviews                                                       110
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 8.5e+06
title_year                                                                2009
actor_2_facebook_likes                                                     552
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3343, dtype: object
color                                                                    Color
director_name                                                      Karan Johar
num_critic_for_reviews                                                     210
duration                                                                   128
director_facebook_likes                                                    160
actor_3_facebook_likes                                                      81
actor_2_name                                                    Jimmy Shergill
actor_1_facebook_likes                                                    8000
gross                                                               4.0187e+06
genres                                                Adventure|Drama|Thriller
actor_1_name                                                    Shah Rukh Khan
movie_title                                                   My Name Is Khan 
num_voted_users                                                          69759
cast_total_facebook_likes                                                 8532
actor_3_name                                             Christopher B. Duncan
facenumber_in_poster                                                         2
plot_keywords                airport|asperger's syndrome|autism|muslim|raci...
movie_imdb_link              http://www.imdb.com/title/tt1188996/?ref_=fn_t...
num_user_for_reviews                                                       235
language                                                                 Hindi
country                                                                  India
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2010
actor_2_facebook_likes                                                     327
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     27000
Name: 3344, dtype: object
color                                                                    Color
director_name                                                     Herbert Ross
num_critic_for_reviews                                                      60
duration                                                                   107
director_facebook_likes                                                     71
actor_3_facebook_likes                                                     304
actor_2_name                                                        Chris Penn
actor_1_facebook_likes                                                     967
gross                                                                    8e+07
genres                                                     Drama|Music|Romance
actor_1_name                                                      Dianne Wiest
movie_title                                                         Footloose 
num_voted_users                                                          51459
cast_total_facebook_likes                                                 1962
actor_3_name                                                       Lori Singer
facenumber_in_poster                                                         0
plot_keywords                church|cowboy boots|dancing|high school dance|...
movie_imdb_link              http://www.imdb.com/title/tt0087277/?ref_=fn_t...
num_user_for_reviews                                                       113
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 8.2e+06
title_year                                                                1984
actor_2_facebook_likes                                                     455
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3345, dtype: object
color                                                                    Color
director_name                                                     J.C. Chandor
num_critic_for_reviews                                                     346
duration                                                                   106
director_facebook_likes                                                     78
actor_3_facebook_likes                                                     NaN
actor_2_name                                                               NaN
actor_1_facebook_likes                                                       0
gross                                                              6.26294e+06
genres                                                  Action|Adventure|Drama
actor_1_name                                                    Robert Redford
movie_title                                                       All Is Lost 
num_voted_users                                                          59545
cast_total_facebook_likes                                                    0
actor_3_name                                                               NaN
facenumber_in_poster                                                         0
plot_keywords                      boat|container|sea|shipping container|storm
movie_imdb_link              http://www.imdb.com/title/tt2017038/?ref_=fn_t...
num_user_for_reviews                                                       312
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   9e+06
title_year                                                                2013
actor_2_facebook_likes                                                     NaN
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 3346, dtype: object
color                                                                    Color
director_name                                                      John Sayles
num_critic_for_reviews                                                      46
duration                                                                   126
director_facebook_likes                                                    407
actor_3_facebook_likes                                                      39
actor_2_name                                                   Casey Siemaszko
actor_1_facebook_likes                                                     638
gross                                                              1.99781e+06
genres                                                Adventure|Drama|Thriller
actor_1_name                                       Mary Elizabeth Mastrantonio
movie_title                                                             Limbo 
num_voted_users                                                           5158
cast_total_facebook_likes                                                  823
actor_3_name                                                  Vanessa Martinez
facenumber_in_poster                                                         0
plot_keywords                        alaska|island|motorboat|singer|wilderness
movie_imdb_link              http://www.imdb.com/title/tt0164085/?ref_=fn_t...
num_user_for_reviews                                                       140
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1999
actor_2_facebook_likes                                                     107
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       196
Name: 3347, dtype: object
color                                                                    Color
director_name                                              Vipul Amrutlal Shah
num_critic_for_reviews                                                      15
duration                                                                   128
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     119
actor_2_name                                                     Clive Standen
actor_1_facebook_likes                                                    3000
gross                                                              1.20701e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Katrina Kaif
movie_title                                                   Namastey London 
num_voted_users                                                          13577
cast_total_facebook_likes                                                 4004
actor_3_name                                                  Riteish Deshmukh
facenumber_in_poster                                                         2
plot_keywords                india|london england|marriage|stereotype|sugar...
movie_imdb_link              http://www.imdb.com/title/tt0795434/?ref_=fn_t...
num_user_for_reviews                                                        47
language                                                                 Hindi
country                                                                  India
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2007
actor_2_facebook_likes                                                     687
imdb_score                                                                 7.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                       341
Name: 3348, dtype: object
color                                                                    Color
director_name                                                        Ken Loach
num_critic_for_reviews                                                     169
duration                                                                   127
director_facebook_likes                                                    644
actor_3_facebook_likes                                                       6
actor_2_name                                                   Orla Fitzgerald
actor_1_facebook_likes                                                      97
gross                                                              1.82914e+06
genres                                                               Drama|War
actor_1_name                                                   Padraic Delaney
movie_title                                   The Wind That Shakes the Barley 
num_voted_users                                                          36846
cast_total_facebook_likes                                                  128
actor_3_name                                                      Martin Lucey
facenumber_in_poster                                                         1
plot_keywords                civil war|colonialism|hatred|independence|rura...
movie_imdb_link              http://www.imdb.com/title/tt0460989/?ref_=fn_t...
num_user_for_reviews                                                       222
language                                                               English
country                                                                Ireland
content_rating                                                       Not Rated
budget                                                                     NaN
title_year                                                                2006
actor_2_facebook_likes                                                       8
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3349, dtype: object
color                                                                    Color
director_name                                                     Ayan Mukerji
num_critic_for_reviews                                                      25
duration                                                                   160
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     417
actor_2_name                                                     Madhuri Dixit
actor_1_facebook_likes                                                     964
gross                                                              3.82747e+06
genres                                            Comedy|Drama|Musical|Romance
actor_1_name                                                     Ranbir Kapoor
movie_title                                           Yeh Jawaani Hai Deewani 
num_voted_users                                                          25122
cast_total_facebook_likes                                                 2350
actor_3_name                                                 Aditya Roy Kapoor
facenumber_in_poster                                                         2
plot_keywords                jealousy|jumping into sea|love|swimming pool|w...
movie_imdb_link              http://www.imdb.com/title/tt2178470/?ref_=fn_t...
num_user_for_reviews                                                       102
language                                                                 Hindi
country                                                                  India
content_rating                                                       Not Rated
budget                                                                     NaN
title_year                                                                2013
actor_2_facebook_likes                                                     551
imdb_score                                                                 6.9
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 3350, dtype: object
color                                                                    Color
director_name                                                 John G. Avildsen
num_critic_for_reviews                                                      81
duration                                                                   126
director_facebook_likes                                                     80
actor_3_facebook_likes                                                     225
actor_2_name                                                     William Zabka
actor_1_facebook_likes                                                     668
gross                                                                 9.08e+07
genres                                               Action|Drama|Family|Sport
actor_1_name                                                       Martin Kove
movie_title                                                    The Karate Kid 
num_voted_users                                                         126916
cast_total_facebook_likes                                                 2004
actor_3_name                                                   William Bassett
facenumber_in_poster                                                         0
plot_keywords                              apartment|bully|fight|karate|master
movie_imdb_link              http://www.imdb.com/title/tt0087538/?ref_=fn_t...
num_user_for_reviews                                                       235
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+06
title_year                                                                1984
actor_2_facebook_likes                                                     641
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3351, dtype: object
color                                                                    Color
director_name                                                     Mervyn LeRoy
num_critic_for_reviews                                                      54
duration                                                                   171
director_facebook_likes                                                     54
actor_3_facebook_likes                                                     346
actor_2_name                                                      Deborah Kerr
actor_1_facebook_likes                                                     440
gross                                                                      NaN
genres                                         Biography|Drama|History|Romance
actor_1_name                                                     Peter Ustinov
movie_title                                                         Quo Vadis 
num_voted_users                                                           9808
cast_total_facebook_likes                                                 1373
actor_3_name                                                     Robert Taylor
facenumber_in_poster                                                         0
plot_keywords                           christian|emperor|general|hostage|nero
movie_imdb_link              http://www.imdb.com/title/tt0043949/?ref_=fn_t...
num_user_for_reviews                                                        90
language                                                               English
country                                                                    USA
content_rating                                                          Passed
budget                                                               7.623e+06
title_year                                                                1951
actor_2_facebook_likes                                                     426
imdb_score                                                                 7.2
aspect_ratio                                                              1.37
movie_facebook_likes                                                      1000
Name: 3352, dtype: object
color                                                                    Color
director_name                                              Darren Lynn Bousman
num_critic_for_reviews                                                     147
duration                                                                   150
director_facebook_likes                                                    163
actor_3_facebook_likes                                                     636
actor_2_name                                                      Paris Hilton
actor_1_facebook_likes                                                    2000
gross                                                                   140244
genres                                                   Horror|Musical|Sci-Fi
actor_1_name                                                    Alexa PenaVega
movie_title                                           Repo! The Genetic Opera 
num_voted_users                                                          20419
cast_total_facebook_likes                                                 4168
actor_3_name                                                      Paul Sorvino
facenumber_in_poster                                                         1
plot_keywords                         future|murder|opera|repossession|surgery
movie_imdb_link              http://www.imdb.com/title/tt0963194/?ref_=fn_t...
num_user_for_reviews                                                       259
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.5e+06
title_year                                                                2008
actor_2_facebook_likes                                                     716
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                      8000
Name: 3353, dtype: object
color                                                                    Color
director_name                                                      Serdar Akar
num_critic_for_reviews                                                      16
duration                                                                   122
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     173
actor_2_name                                                    Bergüzar Korel
actor_1_facebook_likes                                                     205
gross                                                                      NaN
genres                                                        Action|Adventure
actor_1_name                                                     Necati Sasmaz
movie_title                                        Valley of the Wolves: Iraq 
num_voted_users                                                          14486
cast_total_facebook_likes                                                  808
actor_3_name                                                   Ghassan Massoud
facenumber_in_poster                                                         3
plot_keywords                         abu ghraib|bomb|christian|explosion|iraq
movie_imdb_link              http://www.imdb.com/title/tt0493264/?ref_=fn_t...
num_user_for_reviews                                                       159
language                                                                Arabic
country                                                                 Turkey
content_rating                                                             NaN
budget                                                                 8.3e+06
title_year                                                                2006
actor_2_facebook_likes                                                     197
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       467
Name: 3354, dtype: object
color                                                                    Color
director_name                                                Quentin Tarantino
num_critic_for_reviews                                                     215
duration                                                                   178
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     857
actor_2_name                                                       Eric Stoltz
actor_1_facebook_likes                                                   13000
gross                                                               1.0793e+08
genres                                                             Crime|Drama
actor_1_name                                                      Bruce Willis
movie_title                                                      Pulp Fiction 
num_voted_users                                                        1324680
cast_total_facebook_likes                                                16557
actor_3_name                                                       Phil LaMarr
facenumber_in_poster                                                         1
plot_keywords                black comedy|cunnilingus|neo noir|nonlinear ti...
movie_imdb_link              http://www.imdb.com/title/tt0110912/?ref_=fn_t...
num_user_for_reviews                                                      2195
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1994
actor_2_facebook_likes                                                     902
imdb_score                                                                 8.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     45000
Name: 3355, dtype: object
color                                                                    Color
director_name                                                    James Frawley
num_critic_for_reviews                                                      63
duration                                                                    95
director_facebook_likes                                                     21
actor_3_facebook_likes                                                     842
actor_2_name                                                        Jim Henson
actor_1_facebook_likes                                                    1000
gross                                                               7.6657e+07
genres                                         Adventure|Comedy|Family|Musical
actor_1_name                                                     Madeline Kahn
movie_title                                                  The Muppet Movie 
num_voted_users                                                          25498
cast_total_facebook_likes                                                 5673
actor_3_name                                                       Dom DeLuise
facenumber_in_poster                                                         0
plot_keywords                friend|frog leg|on the road|restaurant|the mup...
movie_imdb_link              http://www.imdb.com/title/tt0079588/?ref_=fn_t...
num_user_for_reviews                                                        92
language                                                               English
country                                                                     UK
content_rating                                                               G
budget                                                                     NaN
title_year                                                                1979
actor_2_facebook_likes                                                     985
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3356, dtype: object
color                                                                    Color
director_name                                                       Dan Gilroy
num_critic_for_reviews                                                     534
duration                                                                   117
director_facebook_likes                                                     66
actor_3_facebook_likes                                                      85
actor_2_name                                                  Michael Papajohn
actor_1_facebook_likes                                                   15000
gross                                                                3.228e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                   Jake Gyllenhaal
movie_title                                                      Nightcrawler 
num_voted_users                                                         293304
cast_total_facebook_likes                                                15554
actor_3_name                                                       James Huang
facenumber_in_poster                                                         1
plot_keywords                employer employee relationship|ethics|journali...
movie_imdb_link              http://www.imdb.com/title/tt2872718/?ref_=fn_t...
num_user_for_reviews                                                       552
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.5e+06
title_year                                                                2014
actor_2_facebook_likes                                                     241
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     65000
Name: 3357, dtype: object
color                                                                    Color
director_name                                                Jay Chandrasekhar
num_critic_for_reviews                                                      66
duration                                                                   119
director_facebook_likes                                                    422
actor_3_facebook_likes                                                     422
actor_2_name                                                     Lindsay Price
actor_1_facebook_likes                                                     861
gross                                                              4.99216e+06
genres                                                  Comedy|Horror|Thriller
actor_1_name                                                   Brittany Daniel
movie_title                                                        Club Dread 
num_voted_users                                                          23823
cast_total_facebook_likes                                                 3306
actor_3_name                                                 Jay Chandrasekhar
facenumber_in_poster                                                         2
plot_keywords                          beach|island|party|resort|serial killer
movie_imdb_link              http://www.imdb.com/title/tt0331953/?ref_=fn_t...
num_user_for_reviews                                                       201
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                8.55e+06
title_year                                                                2004
actor_2_facebook_likes                                                     499
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       713
Name: 3358, dtype: object
color                                                                    Color
director_name                                                      Robert Wise
num_critic_for_reviews                                                     119
duration                                                                   174
director_facebook_likes                                                    338
actor_3_facebook_likes                                                     195
actor_2_name                                                 Angela Cartwright
actor_1_facebook_likes                                                     354
gross                                                              1.63214e+08
genres                                  Biography|Drama|Family|Musical|Romance
actor_1_name                                                    Eleanor Parker
movie_title                                                The Sound of Music 
num_voted_users                                                         148172
cast_total_facebook_likes                                                 1495
actor_3_name                                                  Nicholas Hammond
facenumber_in_poster                                                         3
plot_keywords                austria|children|governess|love|orchestral mus...
movie_imdb_link              http://www.imdb.com/title/tt0059742/?ref_=fn_t...
num_user_for_reviews                                                       406
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 8.2e+06
title_year                                                                1965
actor_2_facebook_likes                                                     209
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 3359, dtype: object
color                                                                    Color
director_name                                                       Ron Howard
num_critic_for_reviews                                                      43
duration                                                                   111
director_facebook_likes                                                   2000
actor_3_facebook_likes                                                      51
actor_2_name                                                     Howard Morris
actor_1_facebook_likes                                                   15000
gross                                                                 6.98e+07
genres                                                  Comedy|Fantasy|Romance
actor_1_name                                                         Tom Hanks
movie_title                                                            Splash 
num_voted_users                                                          54723
cast_total_facebook_likes                                                15361
actor_3_name                                                    Patrick Cronin
facenumber_in_poster                                                         2
plot_keywords                cmnf|cmnf scene|mermaid|new york city|public n...
movie_imdb_link              http://www.imdb.com/title/tt0088161/?ref_=fn_t...
num_user_for_reviews                                                        99
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+06
title_year                                                                1984
actor_2_facebook_likes                                                     161
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3360, dtype: object
color                                                                    Color
director_name                                                  Jonathan Dayton
num_critic_for_reviews                                                     270
duration                                                                   101
director_facebook_likes                                                     36
actor_3_facebook_likes                                                      27
actor_2_name                                         Steven Christopher Parker
actor_1_facebook_likes                                                    7000
gross                                                              5.98899e+07
genres                                                            Comedy|Drama
actor_1_name                                                      Steve Carell
movie_title                                              Little Miss Sunshine 
num_voted_users                                                         355810
cast_total_facebook_likes                                                 7227
actor_3_name                                                       Jill Talley
facenumber_in_poster                                                         1
plot_keywords                gay|graduate student|sister sister relationshi...
movie_imdb_link              http://www.imdb.com/title/tt0449059/?ref_=fn_t...
num_user_for_reviews                                                       889
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2006
actor_2_facebook_likes                                                     150
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 3361, dtype: object
color                                                                    Color
director_name                                                       Rob Reiner
num_critic_for_reviews                                                      99
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     107
actor_2_name                                                Frances Lee McCain
actor_1_facebook_likes                                                     217
gross                                                              5.22874e+07
genres                                                         Adventure|Drama
actor_1_name                                                     Marshall Bell
movie_title                                                       Stand by Me 
num_voted_users                                                         271794
cast_total_facebook_likes                                                  644
actor_3_name                                                   Casey Siemaszko
facenumber_in_poster                                                         2
plot_keywords                friendship|summertime|treehouse|walking on tra...
movie_imdb_link              http://www.imdb.com/title/tt0092005/?ref_=fn_t...
num_user_for_reviews                                                       584
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1986
actor_2_facebook_likes                                                     107
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     24000
Name: 3362, dtype: object
color                                                                    Color
director_name                                                      Danny Boyle
num_critic_for_reviews                                                     224
duration                                                                   113
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      27
actor_2_name                                                       Megan Burns
actor_1_facebook_likes                                                     133
gross                                                              4.50639e+07
genres                                            Drama|Horror|Sci-Fi|Thriller
actor_1_name                                                      Noah Huntley
movie_title                                                  28 Days Later... 
num_voted_users                                                         297250
cast_total_facebook_likes                                                  241
actor_3_name                                                   David Schneider
facenumber_in_poster                                                         0
plot_keywords                laboratory|london england|military|virus|zombi...
movie_imdb_link              http://www.imdb.com/title/tt0289043/?ref_=fn_t...
num_user_for_reviews                                                      1441
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2002
actor_2_facebook_likes                                                      32
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 3363, dtype: object
color                                                                    Color
director_name                                                     Chris Stokes
num_critic_for_reviews                                                      58
duration                                                                    95
director_facebook_likes                                                    548
actor_3_facebook_likes                                                     360
actor_2_name                                                   Marques Houston
actor_1_facebook_likes                                                     389
gross                                                              4.00665e+07
genres                                                             Drama|Music
actor_1_name                                                  Jennifer Freeman
movie_title                                                    You Got Served 
num_voted_users                                                          23671
cast_total_facebook_likes                                                 1792
actor_3_name                                                      Steve Harvey
facenumber_in_poster                                                         0
plot_keywords                competition|dance contest|friend|money|street ...
movie_imdb_link              http://www.imdb.com/title/tt0365957/?ref_=fn_t...
num_user_for_reviews                                                       247
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                2004
actor_2_facebook_likes                                                     363
imdb_score                                                                 3.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3364, dtype: object
color                                                                    Color
director_name                                                       Don Siegel
num_critic_for_reviews                                                      53
duration                                                                   112
director_facebook_likes                                                    152
actor_3_facebook_likes                                                     459
actor_2_name                                                  Patrick McGoohan
actor_1_facebook_likes                                                   16000
gross                                                                 3.65e+07
genres                                                   Biography|Crime|Drama
actor_1_name                                                    Clint Eastwood
movie_title                                              Escape from Alcatraz 
num_voted_users                                                          87090
cast_total_facebook_likes                                                17568
actor_3_name                                                         Fred Ward
facenumber_in_poster                                                         0
plot_keywords                             alcatraz|escape|inmate|island|prison
movie_imdb_link              http://www.imdb.com/title/tt0079116/?ref_=fn_t...
num_user_for_reviews                                                       142
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+06
title_year                                                                1979
actor_2_facebook_likes                                                     466
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3365, dtype: object
color                                                                    Color
director_name                                                    Rick Famuyiwa
num_critic_for_reviews                                                      37
duration                                                                   109
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     458
actor_2_name                                                      Sanaa Lathan
actor_1_facebook_likes                                                    1000
gross                                                              2.73627e+07
genres                                              Comedy|Drama|Music|Romance
actor_1_name                                                      Boris Kodjoe
movie_title                                                       Brown Sugar 
num_voted_users                                                           5971
cast_total_facebook_likes                                                 3199
actor_3_name                                                    Wendell Pierce
facenumber_in_poster                                                         1
plot_keywords                basketball|hip hop|rap music|record company|wr...
movie_imdb_link              http://www.imdb.com/title/tt0297037/?ref_=fn_t...
num_user_for_reviews                                                        60
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                2002
actor_2_facebook_likes                                                     886
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3366, dtype: object
color                                                                    Color
director_name                                                  Martin Lawrence
num_critic_for_reviews                                                      11
duration                                                                   108
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     388
actor_2_name                                                    Lynn Whitfield
actor_1_facebook_likes                                                     585
gross                                                              3.47461e+07
genres                                     Comedy|Crime|Drama|Romance|Thriller
actor_1_name                                                       Faizon Love
movie_title                                 A Thin Line Between Love and Hate 
num_voted_users                                                           3122
cast_total_facebook_likes                                                 3023
actor_3_name                                                       Della Reese
facenumber_in_poster                                                         2
plot_keywords                african american|dating|independent film|irrev...
movie_imdb_link              http://www.imdb.com/title/tt0117891/?ref_=fn_t...
num_user_for_reviews                                                        14
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1996
actor_2_facebook_likes                                                     434
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       559
Name: 3367, dtype: object
color                                                                    Color
director_name                                                  Jonathan Levine
num_critic_for_reviews                                                     327
duration                                                                   100
director_facebook_likes                                                    129
actor_3_facebook_likes                                                    3000
actor_2_name                                                     Anna Kendrick
actor_1_facebook_likes                                                   23000
gross                                                               3.4964e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                              Joseph Gordon-Levitt
movie_title                                                             50/50 
num_voted_users                                                         270441
cast_total_facebook_likes                                                39807
actor_3_name                                               Bryce Dallas Howard
facenumber_in_poster                                                         2
plot_keywords                best friend|cancer|survival rate|therapist|vom...
movie_imdb_link              http://www.imdb.com/title/tt1306980/?ref_=fn_t...
num_user_for_reviews                                                       378
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2011
actor_2_facebook_likes                                                   10000
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     40000
Name: 3368, dtype: object
color                                                                    Color
director_name                                                  Masayuki Ochiai
num_critic_for_reviews                                                     135
duration                                                                    90
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     297
actor_2_name                                                      David Denman
actor_1_facebook_likes                                                     449
gross                                                              2.59265e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                       James Kyson
movie_title                                                           Shutter 
num_voted_users                                                          26609
cast_total_facebook_likes                                                 1534
actor_3_name                                                       Daisy Betts
facenumber_in_poster                                                         1
plot_keywords                car accident|japan|newlywed|photograph|photogr...
movie_imdb_link              http://www.imdb.com/title/tt0482599/?ref_=fn_t...
num_user_for_reviews                                                       148
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                2008
actor_2_facebook_likes                                                     332
imdb_score                                                                 5.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3369, dtype: object
color                                                                    Color
director_name                                                 George A. Romero
num_critic_for_reviews                                                     127
duration                                                                   130
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     602
actor_2_name                                                      Hal Holbrook
actor_1_facebook_likes                                                     875
gross                                                                      NaN
genres                                                   Comedy|Fantasy|Horror
actor_1_name                                                        Ted Danson
movie_title                                                         Creepshow 
num_voted_users                                                          29935
cast_total_facebook_likes                                                 2662
actor_3_name                                                  Adrienne Barbeau
facenumber_in_poster                                                         0
plot_keywords                anthology|child abuse|critically acclaimed|dea...
movie_imdb_link              http://www.imdb.com/title/tt0083767/?ref_=fn_t...
num_user_for_reviews                                                       211
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1982
actor_2_facebook_likes                                                     826
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3370, dtype: object
color                                                                    Color
director_name                                                     Tom Gormican
num_critic_for_reviews                                                     164
duration                                                                    94
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     117
actor_2_name                                                     Lola Glaudini
actor_1_facebook_likes                                                     363
gross                                                              2.60491e+07
genres                                                          Comedy|Romance
actor_1_name                                                   Mackenzie Davis
movie_title                                               That Awkward Moment 
num_voted_users                                                          76791
cast_total_facebook_likes                                                 1024
actor_3_name                                                         Josh Pais
facenumber_in_poster                                                         3
plot_keywords                dating|divorce|father daughter relationship|mo...
movie_imdb_link              http://www.imdb.com/title/tt1800246/?ref_=fn_t...
num_user_for_reviews                                                       100
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2014
actor_2_facebook_likes                                                     342
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3371, dtype: object
color                                                                    Color
director_name                                                      Ken Shapiro
num_critic_for_reviews                                                      14
duration                                                                    93
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     213
actor_2_name                                                    Dabney Coleman
actor_1_facebook_likes                                                     484
gross                                                                      NaN
genres                                                   Comedy|Fantasy|Sci-Fi
actor_1_name                                                Brian Doyle-Murray
movie_title                                                   Modern Problems 
num_voted_users                                                           3904
cast_total_facebook_likes                                                 1455
actor_3_name                                                    Mary Kay Place
facenumber_in_poster                                                         1
plot_keywords                air traffic controller|nuclear waste|orgasm|te...
movie_imdb_link              http://www.imdb.com/title/tt0082763/?ref_=fn_t...
num_user_for_reviews                                                        48
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+06
title_year                                                                1981
actor_2_facebook_likes                                                     345
imdb_score                                                                   5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       495
Name: 3372, dtype: object
color                                                                    Color
director_name                                                   Justin Tipping
num_critic_for_reviews                                                       6
duration                                                                    80
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     102
actor_2_name                                          Natalie Stephany Aguilar
actor_1_facebook_likes                                                     861
gross                                                                      NaN
genres                                                               Adventure
actor_1_name                                                       Tina Gilton
movie_title                                                             Kicks 
num_voted_users                                                             59
cast_total_facebook_likes                                                 1279
actor_3_name                                                       Justin Hall
facenumber_in_poster                                                       NaN
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt4254584/?ref_=fn_t...
num_user_for_reviews                                                         6
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2016
actor_2_facebook_likes                                                     163
imdb_score                                                                 7.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                       240
Name: 3373, dtype: object
color                                                                    Color
director_name                                                  Kenneth Branagh
num_critic_for_reviews                                                      41
duration                                                                   111
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     591
actor_2_name                                                 Denzel Washington
actor_1_facebook_likes                                                   18000
gross                                                               2.2551e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Keanu Reeves
movie_title                                            Much Ado About Nothing 
num_voted_users                                                          37269
cast_total_facebook_likes                                                37645
actor_3_name                                                     Brian Blessed
facenumber_in_poster                                                         0
plot_keywords                16th century|bachelor|dishonor|masquerade part...
movie_imdb_link              http://www.imdb.com/title/tt0107616/?ref_=fn_t...
num_user_for_reviews                                                       165
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                1993
actor_2_facebook_likes                                                   18000
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3374, dtype: object
color                                                                    Color
director_name                                                    Peter R. Hunt
num_critic_for_reviews                                                     143
duration                                                                   142
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     244
actor_2_name                                                    George Lazenby
actor_1_facebook_likes                                                     803
gross                                                                 2.28e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                     Telly Savalas
movie_title                                   On Her Majesty's Secret Service 
num_voted_users                                                          59941
cast_total_facebook_likes                                                 1769
actor_3_name                                                  Desmond Llewelyn
facenumber_in_poster                                                         2
plot_keywords                   bond girl|british|mission|portugal|switzerland
movie_imdb_link              http://www.imdb.com/title/tt0064757/?ref_=fn_t...
num_user_for_reviews                                                       452
language                                                               English
country                                                                     UK
content_rating                                                               M
budget                                                                   7e+06
title_year                                                                1969
actor_2_facebook_likes                                                     314
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3375, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                       9
duration                                                                    60
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     460
actor_2_name                                                 Philip Winchester
actor_1_facebook_likes                                                     666
gross                                                                      NaN
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                     Nick Wechsler
movie_title                                            The Player             
num_voted_users                                                           5817
cast_total_facebook_likes                                                 4043
actor_3_name                                                       Jeff Marlow
facenumber_in_poster                                                         2
plot_keywords                          bet|friend|pit boss|secret|surveillance
movie_imdb_link              http://www.imdb.com/title/tt4474310/?ref_=fn_t...
num_user_for_reviews                                                        25
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     579
imdb_score                                                                 7.1
aspect_ratio                                                                16
movie_facebook_likes                                                         0
Name: 3376, dtype: object
color                                                                    Color
director_name                                                       Wes Craven
num_critic_for_reviews                                                     109
duration                                                                   107
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     112
actor_2_name                                                Heather Langenkamp
actor_1_facebook_likes                                                     969
gross                                                              1.80902e+07
genres                                         Fantasy|Horror|Mystery|Thriller
actor_1_name                                                       Miko Hughes
movie_title                                                     New Nightmare 
num_voted_users                                                          38191
cast_total_facebook_likes                                                 1775
actor_3_name                                                  Tracy Middendorf
facenumber_in_poster                                                         0
plot_keywords                earthquake|elm street|freddy krueger|nightmare...
movie_imdb_link              http://www.imdb.com/title/tt0111686/?ref_=fn_t...
num_user_for_reviews                                                       271
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1994
actor_2_facebook_likes                                                     449
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3377, dtype: object
color                                                                    Color
director_name                                                     John Schultz
num_critic_for_reviews                                                      59
duration                                                                    91
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     292
actor_2_name                                                       Mark Webber
actor_1_facebook_likes                                                     452
gross                                                              1.78434e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                   Stephen Collins
movie_title                                                    Drive Me Crazy 
num_voted_users                                                          14904
cast_total_facebook_likes                                                 1760
actor_3_name                                                   Keri Lynn Pratt
facenumber_in_poster                                                         2
plot_keywords                   centennial|girl|next door neighbor|prom|school
movie_imdb_link              http://www.imdb.com/title/tt0164114/?ref_=fn_t...
num_user_for_reviews                                                       147
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                1999
actor_2_facebook_likes                                                     442
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3378, dtype: object
color                                                                    Color
director_name                                                    Doug Atchison
num_critic_for_reviews                                                      95
duration                                                                   112
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     268
actor_2_name                                               Sean Michael Afable
actor_1_facebook_likes                                                     876
gross                                                              1.88111e+07
genres                                                                   Drama
actor_1_name                                                  Curtis Armstrong
movie_title                                               Akeelah and the Bee 
num_voted_users                                                          15337
cast_total_facebook_likes                                                 2832
actor_3_name                                                            Tzi Ma
facenumber_in_poster                                                         0
plot_keywords                national spelling bee|principal|school princip...
movie_imdb_link              http://www.imdb.com/title/tt0437800/?ref_=fn_t...
num_user_for_reviews                                                       172
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2006
actor_2_facebook_likes                                                     801
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3379, dtype: object
color                                                                    Color
director_name                                                      Tamra Davis
num_critic_for_reviews                                                      40
duration                                                                    82
director_facebook_likes                                                     33
actor_3_facebook_likes                                                     475
actor_2_name                                                  Harland Williams
actor_1_facebook_likes                                                     744
gross                                                               1.7279e+07
genres                                                            Comedy|Crime
actor_1_name                                                    Dave Chappelle
movie_title                                                        Half Baked 
num_voted_users                                                          48225
cast_total_facebook_likes                                                 2400
actor_3_name                                             Clarence Williams III
facenumber_in_poster                                                         0
plot_keywords                     bail|diabetic|friend|jail|pharmaceutical lab
movie_imdb_link              http://www.imdb.com/title/tt0120693/?ref_=fn_t...
num_user_for_reviews                                                       164
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1998
actor_2_facebook_likes                                                     503
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3380, dtype: object
color                                                                    Color
director_name                                                      Jonas Elmer
num_critic_for_reviews                                                     121
duration                                                                    97
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     631
actor_2_name                                                    Frances Conroy
actor_1_facebook_likes                                                   24000
gross                                                              1.66997e+07
genres                                                          Comedy|Romance
actor_1_name                                                      J.K. Simmons
movie_title                                                       New in Town 
num_voted_users                                                          17461
cast_total_facebook_likes                                                25792
actor_3_name                                                 Harry Connick Jr.
facenumber_in_poster                                                         1
plot_keywords                    love|manufacturing|minnesota|plant|small town
movie_imdb_link              http://www.imdb.com/title/tt1095174/?ref_=fn_t...
num_user_for_reviews                                                        78
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+06
title_year                                                                2009
actor_2_facebook_likes                                                     827
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3381, dtype: object
color                                                                    Color
director_name                                                   Stephen Gaghan
num_critic_for_reviews                                                     358
duration                                                                   128
director_facebook_likes                                                     79
actor_3_facebook_likes                                                     414
actor_2_name                                                         Amr Waked
actor_1_facebook_likes                                                   13000
gross                                                              5.08153e+07
genres                                                          Drama|Thriller
actor_1_name                                                        Matt Damon
movie_title                                                           Syriana 
num_voted_users                                                         109191
cast_total_facebook_likes                                                14747
actor_3_name                                                      Kayvan Novak
facenumber_in_poster                                                         0
plot_keywords                                 cia|hezbollah|lebanon|oil|prince
movie_imdb_link              http://www.imdb.com/title/tt0365737/?ref_=fn_t...
num_user_for_reviews                                                       625
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2005
actor_2_facebook_likes                                                     903
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3382, dtype: object
color                                                                    Color
director_name                                                      Mary Harron
num_critic_for_reviews                                                     288
duration                                                                   102
director_facebook_likes                                                    126
actor_3_facebook_likes                                                     517
actor_2_name                                                    Justin Theroux
actor_1_facebook_likes                                                   23000
gross                                                              1.50474e+07
genres                                                             Crime|Drama
actor_1_name                                                    Christian Bale
movie_title                                                   American Psycho 
num_voted_users                                                         357275
cast_total_facebook_likes                                                25462
actor_3_name                                                   Samantha Mathis
facenumber_in_poster                                                         1
plot_keywords                1980s|business card|male rear nudity|materiali...
movie_imdb_link              http://www.imdb.com/title/tt0144084/?ref_=fn_t...
num_user_for_reviews                                                      1061
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2000
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 3383, dtype: object
color                                                                    Color
director_name                                                    Miguel Arteta
num_critic_for_reviews                                                     107
duration                                                                    93
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     596
actor_2_name                                                   Zooey Deschanel
actor_1_facebook_likes                                                   15000
gross                                                              1.40158e+07
genres                                                           Drama|Romance
actor_1_name                                                   Jake Gyllenhaal
movie_title                                                     The Good Girl 
num_voted_users                                                          37952
cast_total_facebook_likes                                                27646
actor_3_name                                                  Tim Blake Nelson
facenumber_in_poster                                                         3
plot_keywords                dysfunctional marriage|marijuana|small town|st...
movie_imdb_link              http://www.imdb.com/title/tt0279113/?ref_=fn_t...
num_user_for_reviews                                                       298
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2002
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       938
Name: 3384, dtype: object
color                                                                    Color
director_name                                                      Erik Canuel
num_critic_for_reviews                                                      28
duration                                                                   116
director_facebook_likes                                                     31
actor_3_facebook_likes                                                      50
actor_2_name                                                   Richard Howland
actor_1_facebook_likes                                                     539
gross                                                                      NaN
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                                        Colm Feore
movie_title                                                   Bon Cop Bad Cop 
num_voted_users                                                           8616
cast_total_facebook_likes                                                  895
actor_3_name                                                     Sarain Boylan
facenumber_in_poster                                                         2
plot_keywords                               border|hockey|killer|police|tattoo
movie_imdb_link              http://www.imdb.com/title/tt0479647/?ref_=fn_t...
num_user_for_reviews                                                        90
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2006
actor_2_facebook_likes                                                     290
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       758
Name: 3385, dtype: object
color                                                                    Color
director_name                                                       Troy Duffy
num_critic_for_reviews                                                      91
duration                                                                   138
director_facebook_likes                                                     78
actor_3_facebook_likes                                                     968
actor_2_name                                                        Julie Benz
actor_1_facebook_likes                                                   12000
gross                                                              1.02693e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                     Norman Reedus
movie_title                            The Boondock Saints II: All Saints Day 
num_voted_users                                                          53251
cast_total_facebook_likes                                                17524
actor_3_name                                               Clifton Collins Jr.
facenumber_in_poster                                                         0
plot_keywords                      final showdown|ireland|justice|priest|sheep
movie_imdb_link              http://www.imdb.com/title/tt1300851/?ref_=fn_t...
num_user_for_reviews                                                       188
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2009
actor_2_facebook_likes                                                    3000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3386, dtype: object
color                                                                    Color
director_name                                                      James Ivory
num_critic_for_reviews                                                      55
duration                                                                   117
director_facebook_likes                                                    133
actor_3_facebook_likes                                                      86
actor_2_name                                                     Omar Metwally
actor_1_facebook_likes                                                     471
gross                                                                      NaN
genres                                                           Drama|Romance
actor_1_name                                              Alexandra Maria Lara
movie_title                                The City of Your Final Destination 
num_voted_users                                                           2311
cast_total_facebook_likes                                                  858
actor_3_name                                                   Diego Velazquez
facenumber_in_poster                                                         1
plot_keywords                            child|student|university|widow|writer
movie_imdb_link              http://www.imdb.com/title/tt0896923/?ref_=fn_t...
num_user_for_reviews                                                        25
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 8.3e+06
title_year                                                                2009
actor_2_facebook_likes                                                     277
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       638
Name: 3387, dtype: object
color                                                                    Color
director_name                                                Nicole Holofcener
num_critic_for_reviews                                                     231
duration                                                                    93
director_facebook_likes                                                    132
actor_3_facebook_likes                                                     216
actor_2_name                                                       Ben Falcone
actor_1_facebook_likes                                                     434
gross                                                              1.75368e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                        Christopher Nicholas Smith
movie_title                                                       Enough Said 
num_voted_users                                                          49240
cast_total_facebook_likes                                                 1183
actor_3_name                                                  Michaela Watkins
facenumber_in_poster                                                         2
plot_keywords                         dating|divorcee|ex husband|ex wife|party
movie_imdb_link              http://www.imdb.com/title/tt2390361/?ref_=fn_t...
num_user_for_reviews                                                       142
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                2013
actor_2_facebook_likes                                                     265
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     12000
Name: 3388, dtype: object
color                                                                    Color
director_name                                                       Will Gluck
num_critic_for_reviews                                                     262
duration                                                                    92
director_facebook_likes                                                     87
actor_3_facebook_likes                                                     424
actor_2_name                                                          Dan Byrd
actor_1_facebook_likes                                                   15000
gross                                                              5.84015e+07
genres                                                          Comedy|Romance
actor_1_name                                                        Emma Stone
movie_title                                                            Easy A 
num_voted_users                                                         276746
cast_total_facebook_likes                                                16982
actor_3_name                                                      Fred Armisen
facenumber_in_poster                                                         1
plot_keywords                      gay|gay interest|high school|school|student
movie_imdb_link              http://www.imdb.com/title/tt1282140/?ref_=fn_t...
num_user_for_reviews                                                       264
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                2010
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     19000
Name: 3389, dtype: object
color                                                                    Color
director_name                                                       Matty Rich
num_critic_for_reviews                                                       7
duration                                                                   110
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     582
actor_2_name                                                        Joe Morton
actor_1_facebook_likes                                                     851
gross                                                              8.88070e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                Jada Pinkett Smith
movie_title                                                       The Inkwell 
num_voted_users                                                           1103
cast_total_facebook_likes                                                 3293
actor_3_name                                                       Larenz Tate
facenumber_in_poster                                                         0
plot_keywords                fire|marriage|martha's vineyard|teenager|vacation
movie_imdb_link              http://www.imdb.com/title/tt0110137/?ref_=fn_t...
num_user_for_reviews                                                        11
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1994
actor_2_facebook_likes                                                     780
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       160
Name: 3390, dtype: object
color                                                          Black and White
director_name                                                 E. Elias Merhige
num_critic_for_reviews                                                     196
duration                                                                    92
director_facebook_likes                                                     54
actor_3_facebook_likes                                                     306
actor_2_name                                                          Udo Kier
actor_1_facebook_likes                                                     776
gross                                                              8.27902e+06
genres                                                            Drama|Horror
actor_1_name                                                      Eddie Izzard
movie_title                                             Shadow of the Vampire 
num_voted_users                                                          34191
cast_total_facebook_likes                                                 1761
actor_3_name                                               Catherine McCormack
facenumber_in_poster                                                         1
plot_keywords                     actor|breasts|film actress|nosferatu|vampire
movie_imdb_link              http://www.imdb.com/title/tt0189998/?ref_=fn_t...
num_user_for_reviews                                                       339
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2000
actor_2_facebook_likes                                                     595
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3391, dtype: object
color                                                                    Color
director_name                                                     Joe Nussbaum
num_critic_for_reviews                                                      83
duration                                                                   104
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     741
actor_2_name                                                   Thomas McDonell
actor_1_facebook_likes                                                    1000
gross                                                              1.01062e+07
genres                                                            Comedy|Drama
actor_1_name                                                  Cameron Monaghan
movie_title                                                              Prom 
num_voted_users                                                          12702
cast_total_facebook_likes                                                 5190
actor_3_name                                                   Aimee Teegarden
facenumber_in_poster                                                         0
plot_keywords                decoration|father daughter relationship|high s...
movie_imdb_link              http://www.imdb.com/title/tt1604171/?ref_=fn_t...
num_user_for_reviews                                                        32
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   8e+06
title_year                                                                2011
actor_2_facebook_likes                                                     962
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3392, dtype: object
color                                                                    Color
director_name                                                      Matt Reeves
num_critic_for_reviews                                                      18
duration                                                                    98
director_facebook_likes                                                    198
actor_3_facebook_likes                                                     636
actor_2_name                                                  Michael Rapaport
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                          Comedy|Romance
actor_1_name                                                     Mark Margolis
movie_title                                                    The Pallbearer 
num_voted_users                                                           6124
cast_total_facebook_likes                                                 3502
actor_3_name                                                        Carol Kane
facenumber_in_poster                                                         2
plot_keywords                bachelor party|directorial debut|funeral|pallb...
movie_imdb_link              http://www.imdb.com/title/tt0117283/?ref_=fn_t...
num_user_for_reviews                                                        55
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                1996
actor_2_facebook_likes                                                     975
imdb_score                                                                 4.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       125
Name: 3393, dtype: object
color                                                                    Color
director_name                                                       Steve Rash
num_critic_for_reviews                                                      11
duration                                                                    89
director_facebook_likes                                                     15
actor_3_facebook_likes                                                     660
actor_2_name                                                          Nia Long
actor_1_facebook_likes                                                     883
gross                                                              4.69281e+06
genres                                                                  Comedy
actor_1_name                                                      Barry Corbin
movie_title                                                           Held Up 
num_voted_users                                                           2870
cast_total_facebook_likes                                                 3291
actor_3_name                                                        Jake Busey
facenumber_in_poster                                                         2
plot_keywords                hold up|hostage|stockholm syndrome|swat team|v...
movie_imdb_link              http://www.imdb.com/title/tt0165831/?ref_=fn_t...
num_user_for_reviews                                                        34
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                1999
actor_2_facebook_likes                                                     826
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                        77
Name: 3394, dtype: object
color                                                                    Color
director_name                                                      Fina Torres
num_critic_for_reviews                                                      72
duration                                                                    92
director_facebook_likes                                                     26
actor_3_facebook_likes                                                     417
actor_2_name                                                    John de Lancie
actor_1_facebook_likes                                                    1000
gross                                                              5.01845e+06
genres                                                  Comedy|Fantasy|Romance
actor_1_name                                                  Harold Perrineau
movie_title                                                      Woman on Top 
num_voted_users                                                           8546
cast_total_facebook_likes                                                 2687
actor_3_name                                                   Mark Feuerstein
facenumber_in_poster                                                         0
plot_keywords                cross dresser|food|friend|motion sickness|rest...
movie_imdb_link              http://www.imdb.com/title/tt0206420/?ref_=fn_t...
num_user_for_reviews                                                        86
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2000
actor_2_facebook_likes                                                     905
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       859
Name: 3395, dtype: object
color                                                                    Color
director_name                                                      James Ivory
num_critic_for_reviews                                                      51
duration                                                                   140
director_facebook_likes                                                    133
actor_3_facebook_likes                                                     136
actor_2_name                                                  Vanessa Redgrave
actor_1_facebook_likes                                                   12000
gross                                                               2.5967e+07
genres                                                           Drama|Romance
actor_1_name                                                   Anthony Hopkins
movie_title                                                       Howards End 
num_voted_users                                                          21254
cast_total_facebook_likes                                                13180
actor_3_name                                                       Samuel West
facenumber_in_poster                                                         3
plot_keywords                england|friendship|prejudice|upper class|worki...
movie_imdb_link              http://www.imdb.com/title/tt0104454/?ref_=fn_t...
num_user_for_reviews                                                        86
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                1992
actor_2_facebook_likes                                                     898
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       788
Name: 3396, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      18
duration                                                                    60
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     648
actor_2_name                                                     Joseph Gilgun
actor_1_facebook_likes                                                    3000
gross                                                                      NaN
genres                                         Adventure|Drama|Fantasy|Mystery
actor_1_name                                                    Dominic Cooper
movie_title                                              Preacher             
num_voted_users                                                          22848
cast_total_facebook_likes                                                 6034
actor_3_name                                                        Ruth Negga
facenumber_in_poster                                                         0
plot_keywords                heaven and hell|preacher|supernatural|vampire|...
movie_imdb_link              http://www.imdb.com/title/tt5016504/?ref_=fn_t...
num_user_for_reviews                                                        85
language                                                               English
country                                                                    NaN
content_rating                                                           TV-MA
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     788
imdb_score                                                                 8.3
aspect_ratio                                                                16
movie_facebook_likes                                                     18000
Name: 3397, dtype: object
color                                                                    Color
director_name                                                     Duke Johnson
num_critic_for_reviews                                                     328
duration                                                                    90
director_facebook_likes                                                     26
actor_3_facebook_likes                                                       0
actor_2_name                                                        Tom Noonan
actor_1_facebook_likes                                                    1000
gross                                                              3.44282e+06
genres                                          Animation|Comedy|Drama|Romance
actor_1_name                                              Jennifer Jason Leigh
movie_title                                                         Anomalisa 
num_voted_users                                                          31489
cast_total_facebook_likes                                                 1442
actor_3_name                                                     David Thewlis
facenumber_in_poster                                                         0
plot_keywords                full frontal male nudity|hotel room|multiple c...
movie_imdb_link              http://www.imdb.com/title/tt2401878/?ref_=fn_t...
num_user_for_reviews                                                       140
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2015
actor_2_facebook_likes                                                     442
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3398, dtype: object
color                                                                    Color
director_name                                                       Mike Leigh
num_critic_for_reviews                                                     248
duration                                                                   129
director_facebook_likes                                                    608
actor_3_facebook_likes                                                     386
actor_2_name                                                   Imelda Staunton
actor_1_facebook_likes                                                    1000
gross                                                              3.20524e+06
genres                                                            Comedy|Drama
actor_1_name                                                     Jim Broadbent
movie_title                                                      Another Year 
num_voted_users                                                          23629
cast_total_facebook_likes                                                 2265
actor_3_name                                                        Phil Davis
facenumber_in_poster                                                         0
plot_keywords                autumn|four seasons|friend|looking at one's se...
movie_imdb_link              http://www.imdb.com/title/tt1431181/?ref_=fn_t...
num_user_for_reviews                                                       141
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                2010
actor_2_facebook_likes                                                     579
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3399, dtype: object
color                                                                    Color
director_name                                                    François Ozon
num_critic_for_reviews                                                     128
duration                                                                   111
director_facebook_likes                                                    341
actor_3_facebook_likes                                                     569
actor_2_name                                                  Isabelle Huppert
actor_1_facebook_likes                                                     963
gross                                                              3.07642e+06
genres                                            Comedy|Crime|Musical|Romance
actor_1_name                                                 Catherine Deneuve
movie_title                                                           8 Women 
num_voted_users                                                          23660
cast_total_facebook_likes                                                 3543
actor_3_name                                                  Emmanuelle Béart
facenumber_in_poster                                                         1
plot_keywords                      cook|industrialist|secret|snowstorm|suspect
movie_imdb_link              http://www.imdb.com/title/tt0283832/?ref_=fn_t...
num_user_for_reviews                                                       162
language                                                                French
country                                                                 France
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2002
actor_2_facebook_likes                                                     678
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3400, dtype: object
color                                                                    Color
director_name                                                   Mark L. Lester
num_critic_for_reviews                                                      45
duration                                                                    79
director_facebook_likes                                                     73
actor_3_facebook_likes                                                     112
actor_2_name                                                       Tia Carrere
actor_1_facebook_likes                                                    1000
gross                                                              2.27556e+06
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                              Cary-Hiroyuki Tagawa
movie_title                                          Showdown in Little Tokyo 
num_voted_users                                                          12561
cast_total_facebook_likes                                                 2404
actor_3_name                                                     Vernee Watson
facenumber_in_poster                                                         2
plot_keywords                bare chested male|detective|electric torture|j...
movie_imdb_link              http://www.imdb.com/title/tt0102915/?ref_=fn_t...
num_user_for_reviews                                                       102
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1991
actor_2_facebook_likes                                                    1000
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3401, dtype: object
color                                                                    Color
director_name                                                     David Dobkin
num_critic_for_reviews                                                      49
duration                                                                   104
director_facebook_likes                                                     71
actor_3_facebook_likes                                                     168
actor_2_name                                                      Vince Vieluf
actor_1_facebook_likes                                                    1000
gross                                                              1.78989e+06
genres                                                            Comedy|Crime
actor_1_name                                                  Janeane Garofalo
movie_title                                                      Clay Pigeons 
num_voted_users                                                           9494
cast_total_facebook_likes                                                 1795
actor_3_name                                                        Kevin Rahm
facenumber_in_poster                                                         1
plot_keywords                  breasts|serial killer|small town|vomiting|widow
movie_imdb_link              http://www.imdb.com/title/tt0118863/?ref_=fn_t...
num_user_for_reviews                                                       109
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1998
actor_2_facebook_likes                                                     261
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       515
Name: 3402, dtype: object
color                                                                    Color
director_name                                                       Anna Boden
num_critic_for_reviews                                                     163
duration                                                                   101
director_facebook_likes                                                     16
actor_3_facebook_likes                                                     472
actor_2_name                                                     Jeremy Davies
actor_1_facebook_likes                                                     943
gross                                                              6.35006e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                       Zoë Kravitz
movie_title                                        It's Kind of a Funny Story 
num_voted_users                                                         106098
cast_total_facebook_likes                                                 2786
actor_3_name                                                      Jim Gaffigan
facenumber_in_poster                                                         3
plot_keywords                based on novel|depression|psychiatric ward|sui...
movie_imdb_link              http://www.imdb.com/title/tt0804497/?ref_=fn_t...
num_user_for_reviews                                                       150
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                2010
actor_2_facebook_likes                                                     769
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     20000
Name: 3403, dtype: object
color                                                                    Color
director_name                                                       Nigel Cole
num_critic_for_reviews                                                     163
duration                                                                   113
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     594
actor_2_name                                                        Robbie Kay
actor_1_facebook_likes                                                    5000
gross                                                               1.0948e+06
genres                                          Biography|Comedy|Drama|History
actor_1_name                                                       Bob Hoskins
movie_title                                                  Made in Dagenham 
num_voted_users                                                          11158
cast_total_facebook_likes                                                 7692
actor_3_name                                                     Sally Hawkins
facenumber_in_poster                                                         6
plot_keywords                         equal pay|machinist|minister|protest|sex
movie_imdb_link              http://www.imdb.com/title/tt1371155/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 7.2e+06
title_year                                                                2010
actor_2_facebook_likes                                                     629
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3404, dtype: object
color                                                                    Color
director_name                                                     Anand Tucker
num_critic_for_reviews                                                      90
duration                                                                    92
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     291
actor_2_name                                                     Jim Broadbent
actor_1_facebook_likes                                                   14000
gross                                                              1.07124e+06
genres                                                         Biography|Drama
actor_1_name                                                       Colin Firth
movie_title                                When Did You Last See Your Father? 
num_voted_users                                                           3571
cast_total_facebook_likes                                                15848
actor_3_name                                                        Gina McKee
facenumber_in_poster                                                         2
plot_keywords                       cancer|children|death|terminal cancer|time
movie_imdb_link              http://www.imdb.com/title/tt0829098/?ref_=fn_t...
num_user_for_reviews                                                        34
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                2007
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       429
Name: 3405, dtype: object
color                                                                    Color
director_name                                                      Steve James
num_critic_for_reviews                                                      23
duration                                                                   106
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     200
actor_2_name                                                   Laurel Holloman
actor_1_facebook_likes                                                    1000
gross                                                                   532190
genres                                           Biography|Drama|Romance|Sport
actor_1_name                                                    Kurtwood Smith
movie_title                                                       Prefontaine 
num_voted_users                                                           5673
cast_total_facebook_likes                                                 1610
actor_3_name                                                        Amy Locane
facenumber_in_poster                                                         2
plot_keywords                long distance runner|olympics|oregon|runner|wa...
movie_imdb_link              http://www.imdb.com/title/tt0119937/?ref_=fn_t...
num_user_for_reviews                                                        37
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                1997
actor_2_facebook_likes                                                     273
imdb_score                                                                 6.8
aspect_ratio                                                              1.66
movie_facebook_likes                                                         0
Name: 3406, dtype: object
color                                                                    Color
director_name                                                   Michael Winner
num_critic_for_reviews                                                      17
duration                                                                    98
director_facebook_likes                                                    136
actor_3_facebook_likes                                                     249
actor_2_name                                                     Marina Sirtis
actor_1_facebook_likes                                                     977
gross                                                                      NaN
genres                                                         Adventure|Drama
actor_1_name                                                      Faye Dunaway
movie_title                                                   The Wicked Lady 
num_voted_users                                                            802
cast_total_facebook_likes                                                 2413
actor_3_name                                                      John Gielgud
facenumber_in_poster                                                         0
plot_keywords                female nudity|highwayman|nell gwynne|nudity|wh...
movie_imdb_link              http://www.imdb.com/title/tt0086582/?ref_=fn_t...
num_user_for_reviews                                                        15
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1983
actor_2_facebook_likes                                                     649
imdb_score                                                                   4
aspect_ratio                                                              1.85
movie_facebook_likes                                                        79
Name: 3407, dtype: object
color                                                                    Color
director_name                                                       Tomm Moore
num_critic_for_reviews                                                     118
duration                                                                    75
director_facebook_likes                                                     45
actor_3_facebook_likes                                                       4
actor_2_name                                                        Mick Lally
actor_1_facebook_likes                                                      61
gross                                                                   686383
genres                                      Adventure|Animation|Family|Fantasy
actor_1_name                                                       Sean Lennon
movie_title                                               The Secret of Kells 
num_voted_users                                                          22811
cast_total_facebook_likes                                                   75
actor_3_name                                                      Evan McGuire
facenumber_in_poster                                                         0
plot_keywords                 barbarian|fairy|forest|monastery|unfinished book
movie_imdb_link              http://www.imdb.com/title/tt0485601/?ref_=fn_t...
num_user_for_reviews                                                        71
language                                                               English
country                                                                 France
content_rating                                                       Not Rated
budget                                                                 6.5e+06
title_year                                                                2009
actor_2_facebook_likes                                                       5
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 3408, dtype: object
color                                                                    Color
director_name                                                      John Carney
num_critic_for_reviews                                                     283
duration                                                                   104
director_facebook_likes                                                    109
actor_3_facebook_likes                                                       7
actor_2_name                                                     Karen Pittman
actor_1_facebook_likes                                                     480
gross                                                              1.61687e+07
genres                                                             Drama|Music
actor_1_name                                                      James Corden
movie_title                                                       Begin Again 
num_voted_users                                                          99430
cast_total_facebook_likes                                                  517
actor_3_name                                           Mary Catherine Garrison
facenumber_in_poster                                                         1
plot_keywords                manhattan new york city|new york city|record l...
movie_imdb_link              http://www.imdb.com/title/tt1980929/?ref_=fn_t...
num_user_for_reviews                                                       182
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2013
actor_2_facebook_likes                                                      12
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     43000
Name: 3409, dtype: object
color                                                                    Color
director_name                                                   David Jacobson
num_critic_for_reviews                                                      74
duration                                                                   108
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     710
actor_2_name                                                        Bruce Dern
actor_1_facebook_likes                                                    2000
gross                                                                   568695
genres                                                  Drama|Romance|Thriller
actor_1_name                                                    Hunter Parrish
movie_title                                                Down in the Valley 
num_voted_users                                                          16617
cast_total_facebook_likes                                                 3921
actor_3_name                                                       Rory Culkin
facenumber_in_poster                                                         2
plot_keywords                       beach|cowboy|cowboy hat|neo western|valley
movie_imdb_link              http://www.imdb.com/title/tt0398027/?ref_=fn_t...
num_user_for_reviews                                                       110
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2005
actor_2_facebook_likes                                                     844
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       412
Name: 3410, dtype: object
color                                                                    Color
director_name                                                 Michael Corrente
num_critic_for_reviews                                                      41
duration                                                                    99
director_facebook_likes                                                     30
actor_3_facebook_likes                                                     209
actor_2_name                                                        Tony Devon
actor_1_facebook_likes                                                     480
gross                                                                   398420
genres                                                             Crime|Drama
actor_1_name                                                     Jerry Ferrara
movie_title                                                    Brooklyn Rules 
num_voted_users                                                           5049
cast_total_facebook_likes                                                 1234
actor_3_name                                                      Alexa Havins
facenumber_in_poster                                                         3
plot_keywords                            1980s|friend|friendship|loyalty|mafia
movie_imdb_link              http://www.imdb.com/title/tt0283503/?ref_=fn_t...
num_user_for_reviews                                                        48
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2007
actor_2_facebook_likes                                                     257
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       226
Name: 3411, dtype: object
color                                                                    Color
director_name                                                      Edward Hall
num_critic_for_reviews                                                      17
duration                                                                   180
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     844
actor_2_name                                                     Hayley Atwell
actor_1_facebook_likes                                                    3000
gross                                                                      NaN
genres                                                           Drama|Romance
actor_1_name                                                      Rufus Sewell
movie_title                                                          Restless 
num_voted_users                                                           2098
cast_total_facebook_likes                                                 6343
actor_3_name                                                Charlotte Rampling
facenumber_in_poster                                                         2
plot_keywords                espionage|motel|mother son relationship|murder...
movie_imdb_link              http://www.imdb.com/title/tt2241676/?ref_=fn_t...
num_user_for_reviews                                                        12
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2012
actor_2_facebook_likes                                                    2000
imdb_score                                                                 7.2
aspect_ratio                                                                16
movie_facebook_likes                                                       434
Name: 3412, dtype: object
color                                                                    Color
director_name                                                     Keith Gordon
num_critic_for_reviews                                                      66
duration                                                                   109
director_facebook_likes                                                    200
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Robin Wright
actor_1_facebook_likes                                                   21000
gross                                                                   336456
genres                                            Comedy|Crime|Musical|Mystery
actor_1_name                                                 Robert Downey Jr.
movie_title                                             The Singing Detective 
num_voted_users                                                           7116
cast_total_facebook_likes                                                41645
actor_3_name                                                     Alfre Woodard
facenumber_in_poster                                                         2
plot_keywords                detective|detective novel|fantasy sequence|hal...
movie_imdb_link              http://www.imdb.com/title/tt0314676/?ref_=fn_t...
num_user_for_reviews                                                        79
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2003
actor_2_facebook_likes                                                   18000
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       494
Name: 3413, dtype: object
color                                                                    Color
director_name                                                     David Leland
num_critic_for_reviews                                                      36
duration                                                                   111
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     227
actor_2_name                                               Catherine McCormack
actor_1_facebook_likes                                                     735
gross                                                                   146083
genres                                                       Drama|Romance|War
actor_1_name                                                        Anna Friel
movie_title                                                    The Land Girls 
num_voted_users                                                           1591
cast_total_facebook_likes                                                 1378
actor_3_name                                                 Steven Mackintosh
facenumber_in_poster                                                         3
plot_keywords                        dorset|farm|friend|love|women's land army
movie_imdb_link              http://www.imdb.com/title/tt0119494/?ref_=fn_t...
num_user_for_reviews                                                        27
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1998
actor_2_facebook_likes                                                     306
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                        75
Name: 3414, dtype: object
color                                                          Black and White
director_name                                                    Andrew Currie
num_critic_for_reviews                                                     140
duration                                                                    93
director_facebook_likes                                                      8
actor_3_facebook_likes                                                      33
actor_2_name                                                      Henry Czerny
actor_1_facebook_likes                                                     553
gross                                                                   298110
genres                                              Comedy|Drama|Horror|Sci-Fi
actor_1_name                                                       Alexia Fast
movie_title                                                              Fido 
num_voted_users                                                          25055
cast_total_facebook_likes                                                  786
actor_3_name                                                       Kesun Loder
facenumber_in_poster                                                         1
plot_keywords                decapitation|neighbor|neighborhood|next door n...
movie_imdb_link              http://www.imdb.com/title/tt0457572/?ref_=fn_t...
num_user_for_reviews                                                        98
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2006
actor_2_facebook_likes                                                     177
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3415, dtype: object
color                                                                    Color
director_name                                                    Andrew Wilson
num_critic_for_reviews                                                      32
duration                                                                    99
director_facebook_likes                                                    387
actor_3_facebook_likes                                                     399
actor_2_name                                                     Eddie Griffin
actor_1_facebook_likes                                                    8000
gross                                                                   127144
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Will Ferrell
movie_title                                           The Wendell Baker Story 
num_voted_users                                                           5159
cast_total_facebook_likes                                                 9608
actor_3_name                                                      Jacob Vargas
facenumber_in_poster                                                         4
plot_keywords                directorial debut|fantasy sequence|nurse|old a...
movie_imdb_link              http://www.imdb.com/title/tt0373445/?ref_=fn_t...
num_user_for_reviews                                                        27
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                2005
actor_2_facebook_likes                                                     489
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       143
Name: 3416, dtype: object
color                                                                    Color
director_name                                                    Jonathan Lynn
num_critic_for_reviews                                                      68
duration                                                                    98
director_facebook_likes                                                     36
actor_3_facebook_likes                                                     405
actor_2_name                                                    Rupert Everett
actor_1_facebook_likes                                                   10000
gross                                                                   117190
genres                                                     Action|Comedy|Crime
actor_1_name                                                      Rupert Grint
movie_title                                                       Wild Target 
num_voted_users                                                          29994
cast_total_facebook_likes                                                11770
actor_3_name                                                        Geoff Bell
facenumber_in_poster                                                         4
plot_keywords                    apprentice|assassin|hitman|kleptomaniac|thief
movie_imdb_link              http://www.imdb.com/title/tt1235189/?ref_=fn_t...
num_user_for_reviews                                                        86
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                2010
actor_2_facebook_likes                                                     692
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3417, dtype: object
color                                                                    Color
director_name                                                 Marc Schölermann
num_critic_for_reviews                                                      79
duration                                                                    95
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     448
actor_2_name                                                       Larry Drake
actor_1_facebook_likes                                                     905
gross                                                                   108662
genres                                                   Crime|Horror|Thriller
actor_1_name                                                    John de Lancie
movie_title                                                         Pathology 
num_voted_users                                                          26849
cast_total_facebook_likes                                                 3185
actor_3_name                                                  Johnny Whitworth
facenumber_in_poster                                                         0
plot_keywords                corpse|dark humor|medical school|murder|pathology
movie_imdb_link              http://www.imdb.com/title/tt0964539/?ref_=fn_t...
num_user_for_reviews                                                       107
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2008
actor_2_facebook_likes                                                     513
imdb_score                                                                   6
aspect_ratio                                                              2.35
movie_facebook_likes                                                      3000
Name: 3418, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                       9
duration                                                                   142
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     427
actor_2_name                                                    Jack O'Connell
actor_1_facebook_likes                                                   27000
gross                                                                      NaN
genres                                                           Drama|Romance
actor_1_name                                                         Tom Hardy
movie_title                                     Wuthering Heights             
num_voted_users                                                           6053
cast_total_facebook_likes                                                29196
actor_3_name                                                     Kevin McNally
facenumber_in_poster                                                         2
plot_keywords                abuse|love|moor the landscape|revenge|tv mini ...
movie_imdb_link              http://www.imdb.com/title/tt1238834/?ref_=fn_t...
num_user_for_reviews                                                        33
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     698
imdb_score                                                                 7.7
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 3419, dtype: object
color                                                                    Color
director_name                                                   Robert Moresco
num_critic_for_reviews                                                      26
duration                                                                   107
director_facebook_likes                                                     53
actor_3_facebook_likes                                                     463
actor_2_name                                                       Brad Renfro
actor_1_facebook_likes                                                     954
gross                                                                    53481
genres                                                    Crime|Drama|Thriller
actor_1_name                                                     Brian Dennehy
movie_title                                                       10th & Wolf 
num_voted_users                                                           5557
cast_total_facebook_likes                                                 2512
actor_3_name                                                        Dash Mihok
facenumber_in_poster                                                         5
plot_keywords                desert storm|fbi|fbi agent|fragmentation grena...
movie_imdb_link              http://www.imdb.com/title/tt0360323/?ref_=fn_t...
num_user_for_reviews                                                        34
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2006
actor_2_facebook_likes                                                     551
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       294
Name: 3420, dtype: object
color                                                                    Color
director_name                                                Thomas Vinterberg
num_critic_for_reviews                                                     100
duration                                                                   102
director_facebook_likes                                                    346
actor_3_facebook_likes                                                     488
actor_2_name                                                        Chris Owen
actor_1_facebook_likes                                                     947
gross                                                                    23106
genres                                              Comedy|Crime|Drama|Romance
actor_1_name                                                  Michael Angarano
movie_title                                                        Dear Wendy 
num_voted_users                                                           9003
cast_total_facebook_likes                                                 2572
actor_3_name                                                  William Hootkins
facenumber_in_poster                                                         0
plot_keywords                                      gang|gun|loner|love|outcast
movie_imdb_link              http://www.imdb.com/title/tt0342272/?ref_=fn_t...
num_user_for_reviews                                                        58
language                                                               English
country                                                                  Italy
content_rating                                                         Unrated
budget                                                                   5e+07
title_year                                                                2004
actor_2_facebook_likes                                                     526
imdb_score                                                                 6.6
aspect_ratio                                                              1.66
movie_facebook_likes                                                       532
Name: 3421, dtype: object
color                                                                    Color
director_name                                                    Claudia Llosa
num_critic_for_reviews                                                      56
duration                                                                    97
director_facebook_likes                                                     43
actor_3_facebook_likes                                                      47
actor_2_name                                                       Zen McGrath
actor_1_facebook_likes                                                     144
gross                                                                    52961
genres                                                                   Drama
actor_1_name                                                        Ian Tracey
movie_title                                                             Aloft 
num_voted_users                                                           2103
cast_total_facebook_likes                                                  326
actor_3_name                                                   William Shimell
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2494384/?ref_=fn_t...
num_user_for_reviews                                                        11
language                                                               English
country                                                                  Spain
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2014
actor_2_facebook_likes                                                      63
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       675
Name: 3422, dtype: object
color                                                                    Color
director_name                                                  Katsuhiro Ôtomo
num_critic_for_reviews                                                     150
duration                                                                   124
director_facebook_likes                                                     78
actor_3_facebook_likes                                                       4
actor_2_name                                                     Takeshi Kusao
actor_1_facebook_likes                                                       6
gross                                                                   439162
genres                                                 Action|Animation|Sci-Fi
actor_1_name                                                      Mitsuo Iwata
movie_title                                                             Akira 
num_voted_users                                                         106160
cast_total_facebook_likes                                                   28
actor_3_name                                                      Tesshô Genda
facenumber_in_poster                                                         0
plot_keywords                based on manga|biker gang|gifted child|post th...
movie_imdb_link              http://www.imdb.com/title/tt0094625/?ref_=fn_t...
num_user_for_reviews                                                       430
language                                                              Japanese
country                                                                  Japan
content_rating                                                               R
budget                                                                 1.1e+09
title_year                                                                1988
actor_2_facebook_likes                                                       5
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3423, dtype: object
color                                                                    Color
director_name                                                    John Herzfeld
num_critic_for_reviews                                                      30
duration                                                                    97
director_facebook_likes                                                     17
actor_3_facebook_likes                                                    1000
actor_2_name                                                      Olivia Wilde
actor_1_facebook_likes                                                   23000
gross                                                                      NaN
genres                                                   Action|Crime|Thriller
actor_1_name                                                       Paul Walker
movie_title                                     The Death and Life of Bobby Z 
num_voted_users                                                          12078
cast_total_facebook_likes                                                37457
actor_3_name                                                     Jason Flemyng
facenumber_in_poster                                                         2
plot_keywords                     drug lord|on the run|prison|vegan|vegetarian
movie_imdb_link              http://www.imdb.com/title/tt0473188/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 2.2e+07
title_year                                                                2007
actor_2_facebook_likes                                                   10000
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3424, dtype: object
color                                                                    Color
director_name                                                   Charles Binamé
num_critic_for_reviews                                                      20
duration                                                                   124
director_facebook_likes                                                      2
actor_3_facebook_likes                                                      23
actor_2_name                                                        Roy Dupuis
actor_1_facebook_likes                                                     413
gross                                                                      NaN
genres                                                   Biography|Drama|Sport
actor_1_name                                                  Stephen McHattie
movie_title                          The Rocket: The Legend of Rocket Richard 
num_voted_users                                                           4412
cast_total_facebook_likes                                                  733
actor_3_name                                                    Julie LeBreton
facenumber_in_poster                                                         0
plot_keywords                fan|french canadian|hockey|hockey player|machi...
movie_imdb_link              http://www.imdb.com/title/tt0460505/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                                French
country                                                                 Canada
content_rating                                                              PG
budget                                                                   8e+06
title_year                                                                2005
actor_2_facebook_likes                                                     265
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       520
Name: 3425, dtype: object
color                                                                    Color
director_name                                                     Keith Parmer
num_critic_for_reviews                                                      21
duration                                                                    96
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     600
actor_2_name                                                    Josh Henderson
actor_1_facebook_likes                                                   31000
gross                                                                      NaN
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                Rachel Ann Mullins
movie_title                                                           Swelter 
num_voted_users                                                           1965
cast_total_facebook_likes                                                33858
actor_3_name                                                      Grant Bowler
facenumber_in_poster                                                         6
plot_keywords                police officer killed|police officer shot in t...
movie_imdb_link              http://www.imdb.com/title/tt2112277/?ref_=fn_t...
num_user_for_reviews                                                        24
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2014
actor_2_facebook_likes                                                     920
imdb_score                                                                 4.6
aspect_ratio                                                               NaN
movie_facebook_likes                                                       438
Name: 3426, dtype: object
color                                                                    Color
director_name                                                    Dennie Gordon
num_critic_for_reviews                                                      11
duration                                                                   114
director_facebook_likes                                                     29
actor_3_facebook_likes                                                      11
actor_2_name                                                          Ruby Lin
actor_1_facebook_likes                                                     163
gross                                                                    50000
genres                                         Action|Adventure|Comedy|Romance
actor_1_name                                                       Leehom Wang
movie_title                                                     My Lucky Star 
num_voted_users                                                            322
cast_total_facebook_likes                                                  219
actor_3_name                                                          Jack Kao
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2102502/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               Chinese
country                                                                  China
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2013
actor_2_facebook_likes                                                      20
imdb_score                                                                 5.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                        81
Name: 3427, dtype: object
color                                                                    Color
director_name                                                        Ol Parker
num_critic_for_reviews                                                      85
duration                                                                    90
director_facebook_likes                                                     21
actor_3_facebook_likes                                                     112
actor_2_name                                                         Ben Miles
actor_1_facebook_likes                                                     186
gross                                                                   671240
genres                                                    Comedy|Drama|Romance
actor_1_name                                                       Celia Imrie
movie_title                                                  Imagine Me & You 
num_voted_users                                                          23023
cast_total_facebook_likes                                                  619
actor_3_name                                                       Darren Boyd
facenumber_in_poster                                                         0
plot_keywords                           florist|friend|friendship|lesbian|love
movie_imdb_link              http://www.imdb.com/title/tt0421994/?ref_=fn_t...
num_user_for_reviews                                                       149
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 7.9e+06
title_year                                                                2005
actor_2_facebook_likes                                                     119
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3428, dtype: object
color                                                                    Color
director_name                                                  Bruce Beresford
num_critic_for_reviews                                                       5
duration                                                                   104
director_facebook_likes                                                     78
actor_3_facebook_likes                                                     189
actor_2_name                                                          Lucy Fry
actor_1_facebook_likes                                                     502
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                     Mckenna Grace
movie_title                                                        Mr. Church 
num_voted_users                                                             63
cast_total_facebook_likes                                                 1546
actor_3_name                                                  Natalie Coughlin
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt4196848/?ref_=fn_t...
num_user_for_reviews                                                         5
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   8e+06
title_year                                                                2016
actor_2_facebook_likes                                                     206
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                       205
Name: 3429, dtype: object
color                                                                    Color
director_name                                                    François Ozon
num_critic_for_reviews                                                     160
duration                                                                   102
director_facebook_likes                                                    341
actor_3_facebook_likes                                                      15
actor_2_name                                                  Ludivine Sagnier
actor_1_facebook_likes                                                     844
gross                                                              1.01055e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                Charlotte Rampling
movie_title                                                     Swimming Pool 
num_voted_users                                                          35065
cast_total_facebook_likes                                                 1389
actor_3_name                                                 Jean-Claude Lecas
facenumber_in_poster                                                         0
plot_keywords                  luberon|mystery writer|night|publisher|swimming
movie_imdb_link              http://www.imdb.com/title/tt0324133/?ref_=fn_t...
num_user_for_reviews                                                       288
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2003
actor_2_facebook_likes                                                     521
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3430, dtype: object
color                                                                    Color
director_name                                                       James Nunn
num_critic_for_reviews                                                      25
duration                                                                    93
director_facebook_likes                                                     16
actor_3_facebook_likes                                                     376
actor_2_name                                                      Mark Wingett
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                            Action|Drama
actor_1_name                                                   Spencer Wilding
movie_title                                   Green Street 3: Never Back Down 
num_voted_users                                                           3740
cast_total_facebook_likes                                                 2284
actor_3_name                                                      Kacey Clarke
facenumber_in_poster                                                         2
plot_keywords                bare breasts|firm|hooliganism|training|west ha...
movie_imdb_link              http://www.imdb.com/title/tt2628316/?ref_=fn_t...
num_user_for_reviews                                                        13
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2013
actor_2_facebook_likes                                                     524
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3431, dtype: object
color                                                                    Color
director_name                                               David Webb Peoples
num_critic_for_reviews                                                      21
duration                                                                    90
director_facebook_likes                                                     73
actor_3_facebook_likes                                                      26
actor_2_name                                                         Joan Chen
actor_1_facebook_likes                                                     848
gross                                                                   882290
genres                                                     Action|Sci-Fi|Sport
actor_1_name                                                      Delroy Lindo
movie_title                                               The Blood of Heroes 
num_voted_users                                                           4792
cast_total_facebook_likes                                                 1526
actor_3_name                                                     Anna Katarina
facenumber_in_poster                                                         2
plot_keywords                       battle|blood splatter|combat|game|showdown
movie_imdb_link              http://www.imdb.com/title/tt0094764/?ref_=fn_t...
num_user_for_reviews                                                        43
language                                                               English
country                                                              Australia
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                1989
actor_2_facebook_likes                                                     643
imdb_score                                                                 6.5
aspect_ratio                                                              1.33
movie_facebook_likes                                                       999
Name: 3432, dtype: object
color                                                                    Color
director_name                                                  Michael Winnick
num_critic_for_reviews                                                      15
duration                                                                   106
director_facebook_likes                                                    155
actor_3_facebook_likes                                                     391
actor_2_name                                                   Helena Mattsson
actor_1_facebook_likes                                                     981
gross                                                                      NaN
genres                                                                  Action
actor_1_name                                                      Scott Takeda
movie_title                                                     Code of Honor 
num_voted_users                                                            662
cast_total_facebook_likes                                                 2741
actor_3_name                                                     Craig Sheffer
facenumber_in_poster                                                         0
plot_keywords                           gun|mayor|nightclub|police|vigilantism
movie_imdb_link              http://www.imdb.com/title/tt4060866/?ref_=fn_t...
num_user_for_reviews                                                        14
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2016
actor_2_facebook_likes                                                     505
imdb_score                                                                 4.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                       689
Name: 3433, dtype: object
color                                                                    Color
director_name                                                  Bruce Beresford
num_critic_for_reviews                                                      61
duration                                                                    99
director_facebook_likes                                                     78
actor_3_facebook_likes                                                     325
actor_2_name                                                     Jessica Tandy
actor_1_facebook_likes                                                   11000
gross                                                              1.06593e+08
genres                                                     Comedy|Drama|Family
actor_1_name                                                    Morgan Freeman
movie_title                                                Driving Miss Daisy 
num_voted_users                                                          72324
cast_total_facebook_likes                                                12619
actor_3_name                                                      Patti LuPone
facenumber_in_poster                                                         1
plot_keywords                      1950s|african american|jewish|old age|widow
movie_imdb_link              http://www.imdb.com/title/tt0097239/?ref_=fn_t...
num_user_for_reviews                                                       134
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.5e+06
title_year                                                                1989
actor_2_facebook_likes                                                     509
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      3000
Name: 3434, dtype: object
color                                                                    Color
director_name                                               George Tillman Jr.
num_critic_for_reviews                                                      34
duration                                                                   115
director_facebook_likes                                                     88
actor_3_facebook_likes                                                     890
actor_2_name                                                      Mekhi Phifer
actor_1_facebook_likes                                                    1000
gross                                                              4.34901e+07
genres                                                            Comedy|Drama
actor_1_name                                                  Vanessa Williams
movie_title                                                         Soul Food 
num_voted_users                                                           5275
cast_total_facebook_likes                                                 4737
actor_3_name                                                     Vivica A. Fox
facenumber_in_poster                                                         6
plot_keywords                1990s|family relationships|food in title|siste...
movie_imdb_link              http://www.imdb.com/title/tt0120169/?ref_=fn_t...
num_user_for_reviews                                                        30
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+06
title_year                                                                1997
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       508
Name: 3435, dtype: object
color                                                                    Color
director_name                                                     Stanley Tong
num_critic_for_reviews                                                      62
duration                                                                    89
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      36
actor_2_name                                                         Anita Mui
actor_1_facebook_likes                                                     186
gross                                                              3.23339e+07
genres                                                           Action|Comedy
actor_1_name                                                     Françoise Yip
movie_title                                               Rumble in the Bronx 
num_voted_users                                                          29843
cast_total_facebook_likes                                                  407
actor_3_name                                                      Garvin Cross
facenumber_in_poster                                                         1
plot_keywords                             fight|gang|greed|street gang|wedding
movie_imdb_link              http://www.imdb.com/title/tt0113326/?ref_=fn_t...
num_user_for_reviews                                                        81
language                                                             Cantonese
country                                                              Hong Kong
content_rating                                                               R
budget                                                                 7.5e+06
title_year                                                                1995
actor_2_facebook_likes                                                     147
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3436, dtype: object
color                                                                    Color
director_name                                                  David Oelhoffen
num_critic_for_reviews                                                     102
duration                                                                   101
director_facebook_likes                                                      2
actor_3_facebook_likes                                                      40
actor_2_name                                                        Reda Kateb
actor_1_facebook_likes                                                   10000
gross                                                                      NaN
genres                                                       Drama|War|Western
actor_1_name                                                   Viggo Mortensen
movie_title                                                      Far from Men 
num_voted_users                                                           4035
cast_total_facebook_likes                                                10218
actor_3_name                                                     Ángela Molina
facenumber_in_poster                                                         0
plot_keywords                algerian war|based on short story|hostage|teac...
movie_imdb_link              http://www.imdb.com/title/tt2936180/?ref_=fn_t...
num_user_for_reviews                                                        19
language                                                                French
country                                                                 France
content_rating                                                             NaN
budget                                                                 7.7e+06
title_year                                                                2014
actor_2_facebook_likes                                                     154
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 3437, dtype: object
color                                                                    Color
director_name                                                    Jason Reitman
num_critic_for_reviews                                                     239
duration                                                                    92
director_facebook_likes                                                    655
actor_3_facebook_likes                                                      88
actor_2_name                                                    Cameron Bright
actor_1_facebook_likes                                                   24000
gross                                                              2.47921e+07
genres                                                            Comedy|Drama
actor_1_name                                                      J.K. Simmons
movie_title                                             Thank You for Smoking 
num_voted_users                                                         191998
cast_total_facebook_likes                                                25092
actor_3_name                                                       Todd Louiso
facenumber_in_poster                                                         0
plot_keywords                cigarette smoking|lobbyist|political satire|re...
movie_imdb_link              http://www.imdb.com/title/tt0427944/?ref_=fn_t...
num_user_for_reviews                                                       323
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                2005
actor_2_facebook_likes                                                     829
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3438, dtype: object
color                                                                    Color
director_name                                                         Eli Roth
num_critic_for_reviews                                                     252
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     658
actor_2_name                                                     Lauren German
actor_1_facebook_likes                                                    1000
gross                                                              1.75448e+07
genres                                                                  Horror
actor_1_name                                                     Jay Hernandez
movie_title                                                   Hostel: Part II 
num_voted_users                                                          69989
cast_total_facebook_likes                                                 4707
actor_3_name                                                Stanislav Ianevski
facenumber_in_poster                                                         0
plot_keywords                           american|hostel|slovakia|torture|train
movie_imdb_link              http://www.imdb.com/title/tt0498353/?ref_=fn_t...
num_user_for_reviews                                                       384
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2007
actor_2_facebook_likes                                                     683
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3439, dtype: object
color                                                                    Color
director_name                                                    Lone Scherfig
num_critic_for_reviews                                                     278
duration                                                                   100
director_facebook_likes                                                     92
actor_3_facebook_likes                                                     221
actor_2_name                                                   Olivia Williams
actor_1_facebook_likes                                                    3000
gross                                                              1.25747e+07
genres                                                                   Drama
actor_1_name                                                    Dominic Cooper
movie_title                                                      An Education 
num_voted_users                                                         112138
cast_total_facebook_likes                                                 4198
actor_3_name                                                    Ellie Kendrick
facenumber_in_poster                                                         0
plot_keywords                1960s|age difference|france|loss of virginity|...
movie_imdb_link              http://www.imdb.com/title/tt1174732/?ref_=fn_t...
num_user_for_reviews                                                       237
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 4.5e+06
title_year                                                                2009
actor_2_facebook_likes                                                     766
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 3440, dtype: object
color                                                                    Color
director_name                                                     Anand Tucker
num_critic_for_reviews                                                     124
duration                                                                   106
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     161
actor_2_name                                          Bridgette Wilson-Sampras
actor_1_facebook_likes                                                     827
gross                                                              1.02816e+07
genres                                                           Drama|Romance
actor_1_name                                                    Frances Conroy
movie_title                                                          Shopgirl 
num_voted_users                                                          21225
cast_total_facebook_likes                                                 1871
actor_3_name                                                     Clyde Kusatsu
facenumber_in_poster                                                         3
plot_keywords                     artist|depression|gloves|photography|slacker
movie_imdb_link              http://www.imdb.com/title/tt0338427/?ref_=fn_t...
num_user_for_reviews                                                       268
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2005
actor_2_facebook_likes                                                     545
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 3441, dtype: object
color                                                                    Color
director_name                                                  Tony Richardson
num_critic_for_reviews                                                       9
duration                                                                   109
director_facebook_likes                                                     62
actor_3_facebook_likes                                                     518
actor_2_name                                                      Beau Bridges
actor_1_facebook_likes                                                     584
gross                                                                  5.1e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                  Joely Richardson
movie_title                                           The Hotel New Hampshire 
num_voted_users                                                           6595
cast_total_facebook_likes                                                 2024
actor_3_name                                                  Nastassja Kinski
facenumber_in_poster                                                         0
plot_keywords                       football|hotel|teenage girl|terrorist|wien
movie_imdb_link              http://www.imdb.com/title/tt0087428/?ref_=fn_t...
num_user_for_reviews                                                        61
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 7.5e+06
title_year                                                                1984
actor_2_facebook_likes                                                     552
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       345
Name: 3442, dtype: object
color                                                                    Color
director_name                                                     Joe Carnahan
num_critic_for_reviews                                                     127
duration                                                                   105
director_facebook_likes                                                    248
actor_3_facebook_likes                                                     147
actor_2_name                                                       Chi McBride
actor_1_facebook_likes                                                     673
gross                                                              1.04601e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                      Jason Patric
movie_title                                                              Narc 
num_voted_users                                                          34098
cast_total_facebook_likes                                                 1442
actor_3_name                                                   Alan Van Sprang
facenumber_in_poster                                                         1
plot_keywords                blood splatter|cover up|murder|police shootout...
movie_imdb_link              http://www.imdb.com/title/tt0272207/?ref_=fn_t...
num_user_for_reviews                                                       214
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 7.5e+06
title_year                                                                2002
actor_2_facebook_likes                                                     466
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 3443, dtype: object
color                                                                    Color
director_name                                                       Paul Gross
num_critic_for_reviews                                                       9
duration                                                                   102
director_facebook_likes                                                    329
actor_3_facebook_likes                                                     280
actor_2_name                                                        Paul Gross
actor_1_facebook_likes                                                     611
gross                                                              4.23977e+06
genres                                              Comedy|Drama|Romance|Sport
actor_1_name                                                      Molly Parker
movie_title                                                   Men with Brooms 
num_voted_users                                                           3709
cast_total_facebook_likes                                                 1834
actor_3_name                                                     Kari Matchett
facenumber_in_poster                                                         3
plot_keywords                championship|coach|curling|marriage|rural setting
movie_imdb_link              http://www.imdb.com/title/tt0263734/?ref_=fn_t...
num_user_for_reviews                                                        83
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                 7.5e+06
title_year                                                                2002
actor_2_facebook_likes                                                     329
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3444, dtype: object
color                                                                    Color
director_name                                            Charles Robert Carner
num_critic_for_reviews                                                      35
duration                                                                    97
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     742
actor_2_name                                                    Jenny McCarthy
actor_1_facebook_likes                                                     834
gross                                                              4.13164e+06
genres                                                            Comedy|Crime
actor_1_name                                                   Ivana Milicevic
movie_title                                                Witless Protection 
num_voted_users                                                           5463
cast_total_facebook_likes                                                 4091
actor_3_name                                                      Richard Bull
facenumber_in_poster                                                         2
plot_keywords                                  fbi|polo|possum|sheriff|shotgun
movie_imdb_link              http://www.imdb.com/title/tt1001562/?ref_=fn_t...
num_user_for_reviews                                                        20
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+06
title_year                                                                2008
actor_2_facebook_likes                                                     749
imdb_score                                                                 3.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       140
Name: 3445, dtype: object
color                                                                    Color
director_name                                                     Russell Holt
num_critic_for_reviews                                                       6
duration                                                                   118
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     249
actor_2_name                                                     Brenda Strong
actor_1_facebook_likes                                                     373
gross                                                              3.34744e+06
genres                                                           Drama|Romance
actor_1_name                                                      Eric Johnson
movie_title                                            The Work and the Glory 
num_voted_users                                                            833
cast_total_facebook_likes                                                 1233
actor_3_name                                                    Tiffany Dupont
facenumber_in_poster                                                         1
plot_keywords                1830s|baptism|intolerance|mormon church|siblin...
movie_imdb_link              http://www.imdb.com/title/tt0410454/?ref_=fn_t...
num_user_for_reviews                                                        33
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.5e+06
title_year                                                                2004
actor_2_facebook_likes                                                     266
imdb_score                                                                 6.9
aspect_ratio                                                               NaN
movie_facebook_likes                                                        31
Name: 3446, dtype: object
color                                                                    Color
director_name                                                       Mike Judge
num_critic_for_reviews                                                     192
duration                                                                    92
director_facebook_likes                                                    406
actor_3_facebook_likes                                                     968
actor_2_name                                                        Mila Kunis
actor_1_facebook_likes                                                   24000
gross                                                              1.08142e+07
genres                                                    Comedy|Crime|Romance
actor_1_name                                                      J.K. Simmons
movie_title                                                           Extract 
num_voted_users                                                          37530
cast_total_facebook_likes                                                41867
actor_3_name                                               Clifton Collins Jr.
facenumber_in_poster                                                         6
plot_keywords                freak accident|gigolo|hit in the crotch|nosy n...
movie_imdb_link              http://www.imdb.com/title/tt1225822/?ref_=fn_t...
num_user_for_reviews                                                       106
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2009
actor_2_facebook_likes                                                   15000
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3447, dtype: object
color                                                                    Color
director_name                                                    Larry Charles
num_critic_for_reviews                                                      51
duration                                                                   112
director_facebook_likes                                                    119
actor_3_facebook_likes                                                     844
actor_2_name                                                      Cheech Marin
actor_1_facebook_likes                                                   12000
gross                                                                   533344
genres                                                      Comedy|Drama|Music
actor_1_name                                                      Jeff Bridges
movie_title                                              Masked and Anonymous 
num_voted_users                                                           3972
cast_total_facebook_likes                                                15396
actor_3_name                                                        Bruce Dern
facenumber_in_poster                                                         0
plot_keywords                        concert|jail|journalist|revolution|singer
movie_imdb_link              http://www.imdb.com/title/tt0319829/?ref_=fn_t...
num_user_for_reviews                                                        95
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2003
actor_2_facebook_likes                                                     844
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       655
Name: 3448, dtype: object
color                                                                    Color
director_name                                                    Claude Miller
num_critic_for_reviews                                                      38
duration                                                                   103
director_facebook_likes                                                     27
actor_3_facebook_likes                                                      59
actor_2_name                                                      Edouard Baer
actor_1_facebook_likes                                                      71
gross                                                                   206400
genres                                     Comedy|Crime|Drama|Romance|Thriller
actor_1_name                                                Sandrine Kiberlain
movie_title                                                       Alias Betty 
num_voted_users                                                           1439
cast_total_facebook_likes                                                  262
actor_3_name                                                       Roschdy Zem
facenumber_in_poster                                                         0
plot_keywords                         child|criminal|death|depression|novelist
movie_imdb_link              http://www.imdb.com/title/tt0269329/?ref_=fn_t...
num_user_for_reviews                                                        26
language                                                                French
country                                                                 France
content_rating                                                             NaN
budget                                                                   5e+07
title_year                                                                2001
actor_2_facebook_likes                                                      59
imdb_score                                                                 6.9
aspect_ratio                                                               NaN
movie_facebook_likes                                                        26
Name: 3449, dtype: object
color                                                                    Color
director_name                                             Michael Winterbottom
num_critic_for_reviews                                                     133
duration                                                                    93
director_facebook_likes                                                    187
actor_3_facebook_likes                                                     158
actor_2_name                                                           Om Puri
actor_1_facebook_likes                                                     631
gross                                                                   197148
genres                                           Drama|Romance|Sci-Fi|Thriller
actor_1_name                                                   Samantha Morton
movie_title                                                           Code 46 
num_voted_users                                                          18109
cast_total_facebook_likes                                                 1176
actor_3_name                                                   Natalie Mendoza
facenumber_in_poster                                                         0
plot_keywords                           genetics|i.d.|love|sphinx|totalitarian
movie_imdb_link              http://www.imdb.com/title/tt0345061/?ref_=fn_t...
num_user_for_reviews                                                       150
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 7.5e+06
title_year                                                                2003
actor_2_facebook_likes                                                     163
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3450, dtype: object
color                                                                    Color
director_name                                                    Sacha Bennett
num_critic_for_reviews                                                       4
duration                                                                   101
director_facebook_likes                                                     22
actor_3_facebook_likes                                                     447
actor_2_name                                                     Jenny Agutter
actor_1_facebook_likes                                                    5000
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                       Bob Hoskins
movie_title                                                       Outside Bet 
num_voted_users                                                            243
cast_total_facebook_likes                                                 7206
actor_3_name                                                     Vincent Regan
facenumber_in_poster                                                         3
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1772422/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                 7.5e+06
title_year                                                                2012
actor_2_facebook_likes                                                     659
imdb_score                                                                 4.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                       223
Name: 3451, dtype: object
color                                                                    Color
director_name                                                      Paul Haggis
num_critic_for_reviews                                                     287
duration                                                                   115
director_facebook_likes                                                    549
actor_3_facebook_likes                                                     911
actor_2_name                                                    Loretta Devine
actor_1_facebook_likes                                                    3000
gross                                                              5.45573e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                       Don Cheadle
movie_title                                                             Crash 
num_voted_users                                                         361169
cast_total_facebook_likes                                                 5732
actor_3_name                                                 Jennifer Esposito
facenumber_in_poster                                                         0
plot_keywords                race relations|racism|racist|social problem|st...
movie_imdb_link              http://www.imdb.com/title/tt0375679/?ref_=fn_t...
num_user_for_reviews                                                      1624
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                2004
actor_2_facebook_likes                                                     912
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 3452, dtype: object
color                                                                    Color
director_name                                                   Rodrigo García
num_critic_for_reviews                                                     222
duration                                                                   113
director_facebook_likes                                                    127
actor_3_facebook_likes                                                     373
actor_2_name                                                Michael McElhatton
actor_1_facebook_likes                                                    3000
gross                                                              3.01454e+06
genres                                                                   Drama
actor_1_name                                                    Mia Wasikowska
movie_title                                                      Albert Nobbs 
num_voted_users                                                          19616
cast_total_facebook_likes                                                 4370
actor_3_name                                                     Mark Williams
facenumber_in_poster                                                         3
plot_keywords                19th century|hotel|painter|waiter|woman preten...
movie_imdb_link              http://www.imdb.com/title/tt1602098/?ref_=fn_t...
num_user_for_reviews                                                        98
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                2011
actor_2_facebook_likes                                                     415
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3453, dtype: object
color                                                                    Color
director_name                                                       Jeta Amata
num_critic_for_reviews                                                       6
duration                                                                    95
director_facebook_likes                                                     20
actor_3_facebook_likes                                                      36
actor_2_name                                                     Nathin Butler
actor_1_facebook_likes                                                     262
gross                                                                      NaN
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                              Akon
movie_title                                                    Black November 
num_voted_users                                                            385
cast_total_facebook_likes                                                  409
actor_3_name                                                      Razaaq Adoti
facenumber_in_poster                                                         3
plot_keywords                    color in title|number in title|two word title
movie_imdb_link              http://www.imdb.com/title/tt2147225/?ref_=fn_t...
num_user_for_reviews                                                         4
language                                                               English
country                                                                Nigeria
content_rating                                                             NaN
budget                                                                 7.5e+06
title_year                                                                2012
actor_2_facebook_likes                                                      65
imdb_score                                                                 5.6
aspect_ratio                                                               NaN
movie_facebook_likes                                                       389
Name: 3454, dtype: object
color                                                                    Color
director_name                                                  Siddharth Anand
num_critic_for_reviews                                                      16
duration                                                                   153
director_facebook_likes                                                      5
actor_3_facebook_likes                                                      60
actor_2_name                                                       Mary Goggin
actor_1_facebook_likes                                                     532
gross                                                                   872643
genres                                                   Comedy|Family|Romance
actor_1_name                                                     Saif Ali Khan
movie_title                                                     Ta Ra Rum Pum 
num_voted_users                                                           2909
cast_total_facebook_likes                                                  902
actor_3_name                                                        Vic Aviles
facenumber_in_poster                                                         3
plot_keywords                comeback|family relationships|marriage|new yor...
movie_imdb_link              http://www.imdb.com/title/tt0833553/?ref_=fn_t...
num_user_for_reviews                                                        37
language                                                                 Hindi
country                                                                    USA
content_rating                                                             NaN
budget                                                                   6e+06
title_year                                                                2007
actor_2_facebook_likes                                                     249
imdb_score                                                                 5.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                       108
Name: 3455, dtype: object
color                                                                    Color
director_name                                                Vincent Paronnaud
num_critic_for_reviews                                                     242
duration                                                                    89
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     106
actor_2_name                                                     Gena Rowlands
actor_1_facebook_likes                                                     963
gross                                                               4.4434e+06
genres                                           Animation|Biography|Drama|War
actor_1_name                                                 Catherine Deneuve
movie_title                                                        Persepolis 
num_voted_users                                                          70194
cast_total_facebook_likes                                                 1754
actor_3_name                                                 Danielle Darrieux
facenumber_in_poster                                                         0
plot_keywords                    dream|girl|iran|islamic revolution|revolution
movie_imdb_link              http://www.imdb.com/title/tt0808417/?ref_=fn_t...
num_user_for_reviews                                                       158
language                                                                French
country                                                                 France
content_rating                                                           PG-13
budget                                                                 7.3e+06
title_year                                                                2007
actor_2_facebook_likes                                                     545
imdb_score                                                                   8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 3456, dtype: object
color                                                                    Color
director_name                                                        Joe Dante
num_critic_for_reviews                                                     147
duration                                                                    92
director_facebook_likes                                                    287
actor_3_facebook_likes                                                     664
actor_2_name                                                         Teri Polo
actor_1_facebook_likes                                                     844
gross                                                                      NaN
genres                                              Adventure|Fantasy|Thriller
actor_1_name                                                        Bruce Dern
movie_title                                                          The Hole 
num_voted_users                                                          19157
cast_total_facebook_likes                                                 4099
actor_3_name                                                     Haley Bennett
facenumber_in_poster                                                         2
plot_keywords                basement|family relationships|hole|no opening ...
movie_imdb_link              http://www.imdb.com/title/tt1085779/?ref_=fn_t...
num_user_for_reviews                                                        69
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2009
actor_2_facebook_likes                                                     708
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3457, dtype: object
color                                                                    Color
director_name                                                    Dennis Gansel
num_critic_for_reviews                                                      93
duration                                                                   107
director_facebook_likes                                                     23
actor_3_facebook_likes                                                      93
actor_2_name                                                     Elyas M'Barek
actor_1_facebook_likes                                                     287
gross                                                                      NaN
genres                                                          Drama|Thriller
actor_1_name                                                       Max Riemelt
movie_title                                                          The Wave 
num_voted_users                                                          80639
cast_total_facebook_likes                                                  635
actor_3_name                                                   Jennifer Ulrich
facenumber_in_poster                                                         0
plot_keywords                autocracy|based on real events|dictatorship|ge...
movie_imdb_link              http://www.imdb.com/title/tt1063669/?ref_=fn_t...
num_user_for_reviews                                                        96
language                                                                German
country                                                                Germany
content_rating                                                             NaN
budget                                                                   5e+06
title_year                                                                2008
actor_2_facebook_likes                                                     150
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     25000
Name: 3458, dtype: object
color                                                                    Color
director_name                                             Nicolas Winding Refn
num_critic_for_reviews                                                     253
duration                                                                   118
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     500
actor_2_name                                                   Bella Heathcote
actor_1_facebook_likes                                                   18000
gross                                                              1.33083e+06
genres                                                         Horror|Thriller
actor_1_name                                                      Keanu Reeves
movie_title                                                    The Neon Demon 
num_voted_users                                                           9866
cast_total_facebook_likes                                                19879
actor_3_name                                                     Charles Baker
facenumber_in_poster                                                         2
plot_keywords                         beauty|cannibalism|fashion|lesbian|model
movie_imdb_link              http://www.imdb.com/title/tt1974419/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                               English
country                                                                 France
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2016
actor_2_facebook_likes                                                     860
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3459, dtype: object
color                                                                    Color
director_name                                                    Daniel Barber
num_critic_for_reviews                                                     224
duration                                                                    97
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     641
actor_2_name                                                    Jack O'Connell
actor_1_facebook_likes                                                     788
gross                                                              1.81868e+06
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                     Joseph Gilgun
movie_title                                                       Harry Brown 
num_voted_users                                                          74435
cast_total_facebook_likes                                                 2486
actor_3_name                                                       Sean Harris
facenumber_in_poster                                                         1
plot_keywords                        bayonet|death|police|self defense|widower
movie_imdb_link              http://www.imdb.com/title/tt1289406/?ref_=fn_t...
num_user_for_reviews                                                       224
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 7.3e+06
title_year                                                                2009
actor_2_facebook_likes                                                     698
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3460, dtype: object
color                                                                    Color
director_name                                                        Sam Raimi
num_critic_for_reviews                                                     392
duration                                                                   156
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    4000
actor_2_name                                                      James Franco
actor_1_facebook_likes                                                   24000
gross                                                               3.3653e+08
genres                                                Action|Adventure|Romance
actor_1_name                                                      J.K. Simmons
movie_title                                                      Spider-Man 3 
num_voted_users                                                         383071
cast_total_facebook_likes                                                46055
actor_3_name                                                     Kirsten Dunst
facenumber_in_poster                                                         0
plot_keywords                        sandman|spider man|symbiote|venom|villain
movie_imdb_link              http://www.imdb.com/title/tt0413300/?ref_=fn_t...
num_user_for_reviews                                                      1902
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                2.58e+08
title_year                                                                2007
actor_2_facebook_likes                                                   11000
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3461, dtype: object
color                                                                    Color
director_name                                                Robert Marcarelli
num_critic_for_reviews                                                      39
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     440
actor_2_name                                                  William Hootkins
actor_1_facebook_likes                                                     488
gross                                                              1.26106e+07
genres                                Action|Adventure|Fantasy|Sci-Fi|Thriller
actor_1_name                                                        George Coe
movie_title                                                    The Omega Code 
num_voted_users                                                           4682
cast_total_facebook_likes                                                 2428
actor_3_name                                                         Ayla Kell
facenumber_in_poster                                                         0
plot_keywords                    code|evil|false accusation|megalomaniac|torah
movie_imdb_link              http://www.imdb.com/title/tt0203408/?ref_=fn_t...
num_user_for_reviews                                                       206
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+06
title_year                                                                1999
actor_2_facebook_likes                                                     488
imdb_score                                                                 3.5
aspect_ratio                                                              1.37
movie_facebook_likes                                                       129
Name: 3462, dtype: object
color                                                                    Color
director_name                                                    Jason Reitman
num_critic_for_reviews                                                     387
duration                                                                    96
director_facebook_likes                                                    655
actor_3_facebook_likes                                                     973
actor_2_name                                                   Jennifer Garner
actor_1_facebook_likes                                                   24000
gross                                                              1.43493e+08
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      J.K. Simmons
movie_title                                                              Juno 
num_voted_users                                                         414335
cast_total_facebook_likes                                                28817
actor_3_name                                                      Rainn Wilson
facenumber_in_poster                                                         0
plot_keywords                            adoption|baby|friend|pregnancy|school
movie_imdb_link              http://www.imdb.com/title/tt0467406/?ref_=fn_t...
num_user_for_reviews                                                       881
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+06
title_year                                                                2007
actor_2_facebook_likes                                                    3000
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 3463, dtype: object
color                                                                    Color
director_name                                                  Ernie Barbarash
num_critic_for_reviews                                                      36
duration                                                                   104
director_facebook_likes                                                    249
actor_3_facebook_likes                                                      96
actor_2_name                                                        Aki Aleong
actor_1_facebook_likes                                                     294
gross                                                                      NaN
genres                                                         Action|Thriller
actor_1_name                                                   Darren Shahlavi
movie_title                                                    Pound of Flesh 
num_voted_users                                                           4099
cast_total_facebook_likes                                                  835
actor_3_name                                                 Brahim Achabbakhe
facenumber_in_poster                                                         0
plot_keywords                fighting|hand to hand combat|jujitsu|kickboxin...
movie_imdb_link              http://www.imdb.com/title/tt3488328/?ref_=fn_t...
num_user_for_reviews                                                        29
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                 7.5e+06
title_year                                                                2015
actor_2_facebook_likes                                                     284
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3464, dtype: object
color                                                                    Color
director_name                                                     Guy Hamilton
num_critic_for_reviews                                                     120
duration                                                                   120
director_facebook_likes                                                     82
actor_3_facebook_likes                                                     175
actor_2_name                                                      Lois Maxwell
actor_1_facebook_likes                                                     244
gross                                                                 4.38e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                  Desmond Llewelyn
movie_title                                              Diamonds Are Forever 
num_voted_users                                                          74249
cast_total_facebook_likes                                                 1105
actor_3_name                                                     Jill St. John
facenumber_in_poster                                                         2
plot_keywords                cat|diamond|ford mustang|james bond 007|yanked...
movie_imdb_link              http://www.imdb.com/title/tt0066995/?ref_=fn_t...
num_user_for_reviews                                                       276
language                                                               English
country                                                                     UK
content_rating                                                              GP
budget                                                                 7.2e+06
title_year                                                                1971
actor_2_facebook_likes                                                     177
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3465, dtype: object
color                                                                    Color
director_name                                             Francis Ford Coppola
num_critic_for_reviews                                                     208
duration                                                                   175
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    3000
actor_2_name                                                     Marlon Brando
actor_1_facebook_likes                                                   14000
gross                                                              1.34822e+08
genres                                                             Crime|Drama
actor_1_name                                                         Al Pacino
movie_title                                                     The Godfather 
num_voted_users                                                        1155770
cast_total_facebook_likes                                                28122
actor_3_name                                                     Robert Duvall
facenumber_in_poster                                                         1
plot_keywords                crime family|mafia|organized crime|patriarch|r...
movie_imdb_link              http://www.imdb.com/title/tt0068646/?ref_=fn_t...
num_user_for_reviews                                                      2238
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1972
actor_2_facebook_likes                                                   10000
imdb_score                                                                 9.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     43000
Name: 3466, dtype: object
color                                                                    Color
director_name                                                      Adrian Lyne
num_critic_for_reviews                                                      51
duration                                                                    95
director_facebook_likes                                                    213
actor_3_facebook_likes                                                      92
actor_2_name                                                    Cynthia Rhodes
actor_1_facebook_likes                                                     225
gross                                                                 9.49e+07
genres                                                     Drama|Music|Romance
actor_1_name                                                     Michael Nouri
movie_title                                                        Flashdance 
num_voted_users                                                          35172
cast_total_facebook_likes                                                  791
actor_3_name                                                          Lee Ving
facenumber_in_poster                                                         0
plot_keywords                 ballet school|dance|dancer|overalls|steel worker
movie_imdb_link              http://www.imdb.com/title/tt0085549/?ref_=fn_t...
num_user_for_reviews                                                       128
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+06
title_year                                                                1983
actor_2_facebook_likes                                                     174
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3467, dtype: object
color                                                                    Color
director_name                                                        Marc Webb
num_critic_for_reviews                                                     331
duration                                                                    95
director_facebook_likes                                                    464
actor_3_facebook_likes                                                   11000
actor_2_name                                                Chloë Grace Moretz
actor_1_facebook_likes                                                   23000
gross                                                              3.23914e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                              Joseph Gordon-Levitt
movie_title                                                500 Days of Summer 
num_voted_users                                                         376600
cast_total_facebook_likes                                                54075
actor_3_name                                                   Zooey Deschanel
facenumber_in_poster                                                        43
plot_keywords                     friend|greeting card|office|summer|true love
movie_imdb_link              http://www.imdb.com/title/tt1022603/?ref_=fn_t...
num_user_for_reviews                                                       494
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+06
title_year                                                                2009
actor_2_facebook_likes                                                   17000
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     40000
Name: 3468, dtype: object
color                                                                    Color
director_name                                                     Jane Campion
num_critic_for_reviews                                                      83
duration                                                                   121
director_facebook_likes                                                    319
actor_3_facebook_likes                                                      11
actor_2_name                                                          Ian Mune
actor_1_facebook_likes                                                    1000
gross                                                               4.0158e+07
genres                                                     Drama|Music|Romance
actor_1_name                                                      Holly Hunter
movie_title                                                         The Piano 
num_voted_users                                                          63931
cast_total_facebook_likes                                                 1051
actor_3_name                                                   Geneviève Lemon
facenumber_in_poster                                                         1
plot_keywords                adultery|daughter|male rear nudity|new zealand...
movie_imdb_link              http://www.imdb.com/title/tt0107822/?ref_=fn_t...
num_user_for_reviews                                                       241
language                                                               English
country                                                            New Zealand
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                1993
actor_2_facebook_likes                                                      18
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3469, dtype: object
color                                                                    Color
director_name                                                Steven Soderbergh
num_critic_for_reviews                                                     324
duration                                                                   110
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   11000
actor_2_name                                                     Alex Pettyfer
actor_1_facebook_likes                                                   17000
gross                                                               1.1371e+08
genres                                                            Comedy|Drama
actor_1_name                                                    Channing Tatum
movie_title                                                        Magic Mike 
num_voted_users                                                         108843
cast_total_facebook_likes                                                46646
actor_3_name                                               Matthew McConaughey
facenumber_in_poster                                                         1
plot_keywords                bank|male nudity|male objectification|male str...
movie_imdb_link              http://www.imdb.com/title/tt1915581/?ref_=fn_t...
num_user_for_reviews                                                       281
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2012
actor_2_facebook_likes                                                   15000
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     54000
Name: 3470, dtype: object
color                                                                    Color
director_name                                               Jonathan Liebesman
num_critic_for_reviews                                                     140
duration                                                                    96
director_facebook_likes                                                    474
actor_3_facebook_likes                                                      82
actor_2_name                                                    Emma Caulfield
actor_1_facebook_likes                                                    1000
gross                                                              3.21315e+07
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                Sullivan Stapleton
movie_title                                                    Darkness Falls 
num_voted_users                                                          25870
cast_total_facebook_likes                                                 2212
actor_3_name                                                     Angus Sampson
facenumber_in_poster                                                         0
plot_keywords                             boy|darkness|light|tooth|tooth fairy
movie_imdb_link              http://www.imdb.com/title/tt0282209/?ref_=fn_t...
num_user_for_reviews                                                       369
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.1e+07
title_year                                                                2003
actor_2_facebook_likes                                                     970
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 3471, dtype: object
color                                                                    Color
director_name                                                     Guy Hamilton
num_critic_for_reviews                                                     136
duration                                                                   121
director_facebook_likes                                                     82
actor_3_facebook_likes                                                     189
actor_2_name                                                   Geoffrey Holder
actor_1_facebook_likes                                                     581
gross                                                                 3.54e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                      Yaphet Kotto
movie_title                                                  Live and Let Die 
num_voted_users                                                          74957
cast_total_facebook_likes                                                 1865
actor_3_name                                                     Clifton James
facenumber_in_poster                                                         3
plot_keywords                           british|cards|heroin|murder|tarot card
movie_imdb_link              http://www.imdb.com/title/tt0070328/?ref_=fn_t...
num_user_for_reviews                                                       251
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                   7e+06
title_year                                                                1973
actor_2_facebook_likes                                                     547
imdb_score                                                                 6.8
aspect_ratio                                                              1.66
movie_facebook_likes                                                         0
Name: 3472, dtype: object
color                                                                    Color
director_name                                                      Jay Russell
num_critic_for_reviews                                                      79
duration                                                                    95
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     430
actor_2_name                                                     Frankie Muniz
actor_1_facebook_likes                                                    1000
gross                                                              3.40996e+07
genres                                                      Drama|Family|Sport
actor_1_name                                                      Clint Howard
movie_title                                                       My Dog Skip 
num_voted_users                                                          16651
cast_total_facebook_likes                                                 2515
actor_3_name                                                       Cody Linley
facenumber_in_poster                                                         0
plot_keywords                              1940s|dog|mississippi|puppy|veteran
movie_imdb_link              http://www.imdb.com/title/tt0156812/?ref_=fn_t...
num_user_for_reviews                                                       149
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   5e+06
title_year                                                                2000
actor_2_facebook_likes                                                     934
imdb_score                                                                   7
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 3473, dtype: object
color                                                                    Color
director_name                                                      Adam Brooks
num_critic_for_reviews                                                     160
duration                                                                   112
director_facebook_likes                                                     20
actor_3_facebook_likes                                                      61
actor_2_name                                                    Sakina Jaffrey
actor_1_facebook_likes                                                   16000
gross                                                              3.19738e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Ryan Reynolds
movie_title                                                 Definitely, Maybe 
num_voted_users                                                         127760
cast_total_facebook_likes                                                16289
actor_3_name                                                    Paulina Gerzon
facenumber_in_poster                                                         5
plot_keywords                              college|daughter|girl|sex|wisconsin
movie_imdb_link              http://www.imdb.com/title/tt0832266/?ref_=fn_t...
num_user_for_reviews                                                       168
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2008
actor_2_facebook_likes                                                     109
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3474, dtype: object
color                                                                    Color
director_name                                                       Salim Akil
num_critic_for_reviews                                                      52
duration                                                                   112
director_facebook_likes                                                     70
actor_3_facebook_likes                                                     826
actor_2_name                                                    Loretta Devine
actor_1_facebook_likes                                                    1000
gross                                                              3.72954e+07
genres                                                            Comedy|Drama
actor_1_name                                                      Gary Dourdan
movie_title                                                 Jumping the Broom 
num_voted_users                                                           7973
cast_total_facebook_likes                                                 5959
actor_3_name                                                        Laz Alonso
facenumber_in_poster                                                         8
plot_keywords                martha's vineyard|mother|older woman younger m...
movie_imdb_link              http://www.imdb.com/title/tt1640484/?ref_=fn_t...
num_user_for_reviews                                                        59
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.6e+06
title_year                                                                2011
actor_2_facebook_likes                                                     912
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3475, dtype: object
color                                                                    Color
director_name                                                     Baz Luhrmann
num_critic_for_reviews                                                     490
duration                                                                   143
director_facebook_likes                                                   1000
actor_3_facebook_likes                                                      76
actor_2_name                                                 Elizabeth Debicki
actor_1_facebook_likes                                                   29000
gross                                                              1.44813e+08
genres                                                           Drama|Romance
actor_1_name                                                 Leonardo DiCaprio
movie_title                                                  The Great Gatsby 
num_voted_users                                                         362933
cast_total_facebook_likes                                                29769
actor_3_name                                                      Steve Bisley
facenumber_in_poster                                                         4
plot_keywords                ingratitude|mansion|party|title appears in wri...
movie_imdb_link              http://www.imdb.com/title/tt1343092/?ref_=fn_t...
num_user_for_reviews                                                       753
language                                                               English
country                                                              Australia
content_rating                                                           PG-13
budget                                                                1.05e+08
title_year                                                                2013
actor_2_facebook_likes                                                     509
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                    115000
Name: 3476, dtype: object
color                                                          Black and White
director_name                                                   George Clooney
num_critic_for_reviews                                                     351
duration                                                                    93
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     566
actor_2_name                                                      Tate Donovan
actor_1_facebook_likes                                                   21000
gross                                                              3.15012e+07
genres                                                 Biography|Drama|History
actor_1_name                                                 Robert Downey Jr.
movie_title                                        Good Night, and Good Luck. 
num_voted_users                                                          84070
cast_total_facebook_likes                                                22745
actor_3_name                                                     Alex Borstein
facenumber_in_poster                                                         0
plot_keywords                                cbs|expose|fear|paranoia|reporter
movie_imdb_link              http://www.imdb.com/title/tt0433383/?ref_=fn_t...
num_user_for_reviews                                                       526
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 7.5e+06
title_year                                                                2005
actor_2_facebook_likes                                                     650
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3477, dtype: object
color                                                                    Color
director_name                                                   Bennett Miller
num_critic_for_reviews                                                     271
duration                                                                   110
director_facebook_likes                                                    152
actor_3_facebook_likes                                                      27
actor_2_name                                                   Michael J. Burg
actor_1_facebook_likes                                                   22000
gross                                                              2.87476e+07
genres                                                   Biography|Crime|Drama
actor_1_name                                            Philip Seymour Hoffman
movie_title                                                            Capote 
num_voted_users                                                         100571
cast_total_facebook_likes                                                22140
actor_3_name                                                      Kwesi Ameyaw
facenumber_in_poster                                                         1
plot_keywords                  book|holcomb kansas|kansas|killer|truman capote
movie_imdb_link              http://www.imdb.com/title/tt0379725/?ref_=fn_t...
num_user_for_reviews                                                       416
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2005
actor_2_facebook_likes                                                      68
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3478, dtype: object
color                                                                    Color
director_name                                                 Robert Rodriguez
num_critic_for_reviews                                                      93
duration                                                                   104
director_facebook_likes                                                      0
actor_3_facebook_likes                                                    4000
actor_2_name                                                     Steve Buscemi
actor_1_facebook_likes                                                   16000
gross                                                              2.56251e+07
genres                                                   Action|Crime|Thriller
actor_1_name                                                 Quentin Tarantino
movie_title                                                         Desperado 
num_voted_users                                                         138707
cast_total_facebook_likes                                                33758
actor_3_name                                                       Salma Hayek
facenumber_in_poster                                                         0
plot_keywords                crushed by a car|female frontal nudity|female ...
movie_imdb_link              http://www.imdb.com/title/tt0112851/?ref_=fn_t...
num_user_for_reviews                                                       202
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                1995
actor_2_facebook_likes                                                   12000
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3479, dtype: object
color                                                                    Color
director_name                                             Michael Winterbottom
num_critic_for_reviews                                                      71
duration                                                                   115
director_facebook_likes                                                    187
actor_3_facebook_likes                                                     887
actor_2_name                                                      Sarah Polley
actor_1_facebook_likes                                                   14000
gross                                                                   403932
genres                                                   Drama|Romance|Western
actor_1_name                                                    Milla Jovovich
movie_title                                                         The Claim 
num_voted_users                                                           5254
cast_total_facebook_likes                                                17104
actor_3_name                                                 Shirley Henderson
facenumber_in_poster                                                         4
plot_keywords                           gold|gold mine|miner|railroad|surveyor
movie_imdb_link              http://www.imdb.com/title/tt0218378/?ref_=fn_t...
num_user_for_reviews                                                        92
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   2e+07
title_year                                                                2000
actor_2_facebook_likes                                                     900
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       141
Name: 3480, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      54
duration                                                                    53
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                    1000
actor_2_name                                                     Adam Goldberg
actor_1_facebook_likes                                                    4000
gross                                                                      NaN
genres                                                    Crime|Drama|Thriller
actor_1_name                                                     Kirsten Dunst
movie_title                                                 Fargo             
num_voted_users                                                         170055
cast_total_facebook_likes                                                19949
actor_3_name                                                      Oliver Platt
facenumber_in_poster                                                         0
plot_keywords                anthology|death|insurance salesman|minnesota|p...
movie_imdb_link              http://www.imdb.com/title/tt2802850/?ref_=fn_t...
num_user_for_reviews                                                       173
language                                                               English
country                                                                    USA
content_rating                                                           TV-MA
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                    1000
imdb_score                                                                   9
aspect_ratio                                                              1.78
movie_facebook_likes                                                     61000
Name: 3481, dtype: object
color                                                                    Color
director_name                                                 Michael Anderson
num_critic_for_reviews                                                     112
duration                                                                   119
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     440
actor_2_name                                                     Jenny Agutter
actor_1_facebook_likes                                                    1000
gross                                                                  2.5e+07
genres                                                 Action|Adventure|Sci-Fi
actor_1_name                                                    Farrah Fawcett
movie_title                                                       Logan's Run 
num_voted_users                                                          39847
cast_total_facebook_likes                                                 2951
actor_3_name                                                     Peter Ustinov
facenumber_in_poster                                                         1
plot_keywords                          cat|computer|cult film|runner|sanctuary
movie_imdb_link              http://www.imdb.com/title/tt0074812/?ref_=fn_t...
num_user_for_reviews                                                       242
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   9e+06
title_year                                                                1976
actor_2_facebook_likes                                                     659
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3482, dtype: object
color                                                                    Color
director_name                                                     Guy Hamilton
num_critic_for_reviews                                                     118
duration                                                                   125
director_facebook_likes                                                     82
actor_3_facebook_likes                                                     244
actor_2_name                                                 Hervé Villechaize
actor_1_facebook_likes                                                   16000
gross                                                                  2.1e+07
genres                                               Action|Adventure|Thriller
actor_1_name                                                   Christopher Lee
movie_title                                       The Man with the Golden Gun 
num_voted_users                                                          73950
cast_total_facebook_likes                                                17611
actor_3_name                                                  Desmond Llewelyn
facenumber_in_poster                                                         3
plot_keywords                assassin|bikini|girl in a bikini|mission|secre...
movie_imdb_link              http://www.imdb.com/title/tt0071807/?ref_=fn_t...
num_user_for_reviews                                                       258
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 1.3e+07
title_year                                                                1974
actor_2_facebook_likes                                                     387
imdb_score                                                                 6.8
aspect_ratio                                                              1.66
movie_facebook_likes                                                      2000
Name: 3483, dtype: object
color                                                                    Color
director_name                                                  Craig R. Baxley
num_critic_for_reviews                                                      35
duration                                                                    96
director_facebook_likes                                                     22
actor_3_facebook_likes                                                     794
actor_2_name                                                            Vanity
actor_1_facebook_likes                                                    1000
gross                                                               2.0257e+07
genres                                            Action|Comedy|Crime|Thriller
actor_1_name                                                         Bill Duke
movie_title                                                    Action Jackson 
num_voted_users                                                           7569
cast_total_facebook_likes                                                 5282
actor_3_name                                                     Carl Weathers
facenumber_in_poster                                                         2
plot_keywords                        murder|power|psychotronic|tough cop|union
movie_imdb_link              http://www.imdb.com/title/tt0094612/?ref_=fn_t...
num_user_for_reviews                                                        65
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                1988
actor_2_facebook_likes                                                     841
imdb_score                                                                 5.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       978
Name: 3484, dtype: object
color                                                                    Color
director_name                                                    Neil Marshall
num_critic_for_reviews                                                     342
duration                                                                   100
director_facebook_likes                                                    197
actor_3_facebook_likes                                                     159
actor_2_name                                                  Shauna Macdonald
actor_1_facebook_likes                                                     513
gross                                                              2.60059e+07
genres                                               Adventure|Horror|Thriller
actor_1_name                                                     MyAnna Buring
movie_title                                                       The Descent 
num_voted_users                                                         154938
cast_total_facebook_likes                                                 1379
actor_3_name                                                      Craig Conway
facenumber_in_poster                                                         0
plot_keywords                cave|expedition|friendship between women|group...
movie_imdb_link              http://www.imdb.com/title/tt0435625/?ref_=fn_t...
num_user_for_reviews                                                      1100
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 3.5e+06
title_year                                                                2005
actor_2_facebook_likes                                                     239
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 3485, dtype: object
color                                                                    Color
director_name                                                        Don Kempf
num_critic_for_reviews                                                      14
duration                                                                    46
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      69
actor_2_name                                                    Michael Jordan
actor_1_facebook_likes                                                   13000
gross                                                              1.86423e+07
genres                                                       Documentary|Sport
actor_1_name                                                       Bill Murray
movie_title                                         Michael Jordan to the Max 
num_voted_users                                                           1723
cast_total_facebook_likes                                                13448
actor_3_name                                                        Bob Costas
facenumber_in_poster                                                         0
plot_keywords                basketball|basketball player|character name in...
movie_imdb_link              http://www.imdb.com/title/tt0245280/?ref_=fn_t...
num_user_for_reviews                                                        13
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2000
actor_2_facebook_likes                                                     366
imdb_score                                                                 7.5
aspect_ratio                                                              1.44
movie_facebook_likes                                                       407
Name: 3486, dtype: object
color                                                                    Color
director_name                                            Matt Bettinelli-Olpin
num_critic_for_reviews                                                     137
duration                                                                    89
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     270
actor_2_name                                                    Allison Miller
actor_1_facebook_likes                                                     971
gross                                                               1.5819e+07
genres                                                          Horror|Mystery
actor_1_name                                                      Zach Gilford
movie_title                                                       Devil's Due 
num_voted_users                                                          13913
cast_total_facebook_likes                                                 2517
actor_3_name                                                       Vanessa Ray
facenumber_in_poster                                                         0
plot_keywords                eiffel tower at night|honeymoon|implied insemi...
movie_imdb_link              http://www.imdb.com/title/tt2752758/?ref_=fn_t...
num_user_for_reviews                                                       120
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2014
actor_2_facebook_likes                                                     479
imdb_score                                                                   4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3487, dtype: object
color                                                                    Color
director_name                                                 David O. Russell
num_critic_for_reviews                                                      50
duration                                                                    92
director_facebook_likes                                                    737
actor_3_facebook_likes                                                     380
actor_2_name                                                  Mary Tyler Moore
actor_1_facebook_likes                                                     718
gross                                                               1.4891e+07
genres                                                                  Comedy
actor_1_name                                                       Lily Tomlin
movie_title                                            Flirting with Disaster 
num_voted_users                                                          15088
cast_total_facebook_likes                                                 2240
actor_3_name                                               David Patrick Kelly
facenumber_in_poster                                                         3
plot_keywords                adoption|armpit fetish|mistaken identity|new m...
movie_imdb_link              http://www.imdb.com/title/tt0116324/?ref_=fn_t...
num_user_for_reviews                                                       105
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                1996
actor_2_facebook_likes                                                     524
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       824
Name: 3488, dtype: object
color                                                                    Color
director_name                                                       Rob Zombie
num_critic_for_reviews                                                     261
duration                                                                   109
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     597
actor_2_name                                                         Ken Foree
actor_1_facebook_likes                                                    1000
gross                                                              1.69011e+07
genres                                                            Crime|Horror
actor_1_name                                                          Sid Haig
movie_title                                               The Devil's Rejects 
num_voted_users                                                          76267
cast_total_facebook_likes                                                 3544
actor_3_name                                                        Lew Temple
facenumber_in_poster                                                         0
plot_keywords                            escape|police|road trip|sheriff|texas
movie_imdb_link              http://www.imdb.com/title/tt0395584/?ref_=fn_t...
num_user_for_reviews                                                       687
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2005
actor_2_facebook_likes                                                     649
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3489, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      96
duration                                                                    44
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     970
actor_2_name                                                   Alyson Hannigan
actor_1_facebook_likes                                                    4000
gross                                                                      NaN
genres                                            Action|Drama|Fantasy|Romance
actor_1_name                                             Sarah Michelle Gellar
movie_title                              Buffy the Vampire Slayer             
num_voted_users                                                         101902
cast_total_facebook_likes                                                 7970
actor_3_name                                                    Emma Caulfield
facenumber_in_poster                                                         0
plot_keywords                action heroine|coming of age|destiny|double li...
movie_imdb_link              http://www.imdb.com/title/tt0118276/?ref_=fn_t...
num_user_for_reviews                                                       665
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                 2.3e+06
title_year                                                                 NaN
actor_2_facebook_likes                                                    3000
imdb_score                                                                 8.2
aspect_ratio                                                              1.33
movie_facebook_likes                                                      6000
Name: 3490, dtype: object
color                                                                    Color
director_name                                                    Rick Famuyiwa
num_critic_for_reviews                                                     180
duration                                                                   103
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     190
actor_2_name                                                          Rick Fox
actor_1_facebook_likes                                                     637
gross                                                              1.74741e+07
genres                                                      Comedy|Crime|Drama
actor_1_name                                                    Kimberly Elise
movie_title                                                              Dope 
num_voted_users                                                          56605
cast_total_facebook_likes                                                 1342
actor_3_name                                                   Kiersey Clemons
facenumber_in_poster                                                         3
plot_keywords                       african american|geek|hip hop|party|tomboy
movie_imdb_link              http://www.imdb.com/title/tt3850214/?ref_=fn_t...
num_user_for_reviews                                                        89
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2015
actor_2_facebook_likes                                                     256
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     23000
Name: 3491, dtype: object
color                                                                    Color
director_name                                                    Michael Rymer
num_critic_for_reviews                                                      28
duration                                                                    95
director_facebook_likes                                                     48
actor_3_facebook_likes                                                     826
actor_2_name                                                         Omar Epps
actor_1_facebook_likes                                                    1000
gross                                                              1.40031e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                         LL Cool J
movie_title                                                       In Too Deep 
num_voted_users                                                           4598
cast_total_facebook_likes                                                 4837
actor_3_name                                                          Nia Long
facenumber_in_poster                                                         1
plot_keywords                 cunnilingus|oral sex|police|sex scene|undercover
movie_imdb_link              http://www.imdb.com/title/tt0160401/?ref_=fn_t...
num_user_for_reviews                                                        29
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                1999
actor_2_facebook_likes                                                     865
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       375
Name: 3492, dtype: object
color                                                                    Color
director_name                                                       Sam Mendes
num_critic_for_reviews                                                     750
duration                                                                   143
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     393
actor_2_name                                                     Helen McCrory
actor_1_facebook_likes                                                     883
gross                                                               3.0436e+08
genres                                               Action|Adventure|Thriller
actor_1_name                                                     Albert Finney
movie_title                                                           Skyfall 
num_voted_users                                                         522048
cast_total_facebook_likes                                                 2039
actor_3_name                                                      Rory Kinnear
facenumber_in_poster                                                         0
plot_keywords                brawl|childhood home|computer cracker|intellig...
movie_imdb_link              http://www.imdb.com/title/tt1074638/?ref_=fn_t...
num_user_for_reviews                                                      1498
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   2e+08
title_year                                                                2012
actor_2_facebook_likes                                                     563
imdb_score                                                                 7.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     80000
Name: 3493, dtype: object
color                                                          Black and White
director_name                                                       Rob Zombie
num_critic_for_reviews                                                     202
duration                                                                   105
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     303
actor_2_name                                                   Matthew McGrory
actor_1_facebook_likes                                                    1000
gross                                                              1.25835e+07
genres                                                                  Horror
actor_1_name                                                          Sid Haig
movie_title                                             House of 1000 Corpses 
num_voted_users                                                          60709
cast_total_facebook_likes                                                 2444
actor_3_name                                                      Erin Daniels
facenumber_in_poster                                                         0
plot_keywords                actor playing multiple roles|axe|dark comedy|m...
movie_imdb_link              http://www.imdb.com/title/tt0251736/?ref_=fn_t...
num_user_for_reviews                                                       922
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2003
actor_2_facebook_likes                                                     340
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3494, dtype: object
color                                                                    Color
director_name                                                   Sharron Miller
num_critic_for_reviews                                                       8
duration                                                                    79
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      23
actor_2_name                                                  Elizabeth MacRae
actor_1_facebook_likes                                                     246
gross                                                                      NaN
genres                                                                  Horror
actor_1_name                                                       Bernard Fox
movie_title                                                        Alien Zone 
num_voted_users                                                            440
cast_total_facebook_likes                                                  345
actor_3_name                                                    Charles Aidman
facenumber_in_poster                                                         0
plot_keywords                affair|child murderer|mortician|strangulation|...
movie_imdb_link              http://www.imdb.com/title/tt0072626/?ref_=fn_t...
num_user_for_reviews                                                        21
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                  350000
title_year                                                                1978
actor_2_facebook_likes                                                      29
imdb_score                                                                 4.1
aspect_ratio                                                               NaN
movie_facebook_likes                                                        44
Name: 3495, dtype: object
color                                                                    Color
director_name                                                       Ethan Coen
num_critic_for_reviews                                                     341
duration                                                                   106
director_facebook_likes                                                   1000
actor_3_facebook_likes                                                      98
actor_2_name                                                      Fred Melamed
actor_1_facebook_likes                                                     816
gross                                                              9.19052e+06
genres                                                            Comedy|Drama
actor_1_name                                                 Michael Stuhlbarg
movie_title                                                     A Serious Man 
num_voted_users                                                         102125
cast_total_facebook_likes                                                 1120
actor_3_name                                                  Peter Breitmayer
facenumber_in_poster                                                         1
plot_keywords                bar mitzvah|jewish|marital breakup|nose job|rabbi
movie_imdb_link              http://www.imdb.com/title/tt1019452/?ref_=fn_t...
num_user_for_reviews                                                       324
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2009
actor_2_facebook_likes                                                     105
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 3496, dtype: object
color                                                                    Color
director_name                                                  Aaron Schneider
num_critic_for_reviews                                                     160
duration                                                                   100
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     970
actor_2_name                                                     Robert Duvall
actor_1_facebook_likes                                                   13000
gross                                                              9.17655e+06
genres                                                           Drama|Mystery
actor_1_name                                                       Bill Murray
movie_title                                                           Get Low 
num_voted_users                                                          19147
cast_total_facebook_likes                                                19330
actor_3_name                                                        Bill Cobbs
facenumber_in_poster                                                         1
plot_keywords                         funeral|funeral home|hermit|party|secret
movie_imdb_link              http://www.imdb.com/title/tt1194263/?ref_=fn_t...
num_user_for_reviews                                                        97
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 7.5e+06
title_year                                                                2009
actor_2_facebook_likes                                                    3000
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3497, dtype: object
color                                                                    Color
director_name                                                      Steve Miner
num_critic_for_reviews                                                      31
duration                                                                   103
director_facebook_likes                                                     49
actor_3_facebook_likes                                                     304
actor_2_name                                                  Richard E. Grant
actor_1_facebook_likes                                                     687
gross                                                              9.09445e+06
genres                                          Action|Fantasy|Horror|Thriller
actor_1_name                                                      Julian Sands
movie_title                                                           Warlock 
num_voted_users                                                          11668
cast_total_facebook_likes                                                 1990
actor_3_name                                                       Lori Singer
facenumber_in_poster                                                         0
plot_keywords                     17th century|book|death|warlock|witch hunter
movie_imdb_link              http://www.imdb.com/title/tt0098622/?ref_=fn_t...
num_user_for_reviews                                                        79
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                1989
actor_2_facebook_likes                                                     554
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3498, dtype: object
color                                                                    Color
director_name                                            Gina Prince-Bythewood
num_critic_for_reviews                                                      71
duration                                                                   116
director_facebook_likes                                                    107
actor_3_facebook_likes                                                     658
actor_2_name                                                       Nate Parker
actor_1_facebook_likes                                                     893
gross                                                              1.46128e+07
genres                                                             Drama|Music
actor_1_name                                                     Minnie Driver
movie_title                                                 Beyond the Lights 
num_voted_users                                                          11191
cast_total_facebook_likes                                                 3110
actor_3_name                                                   Darryl Stephens
facenumber_in_poster                                                         1
plot_keywords                domestic abuse|public humiliation|sex symbol|s...
movie_imdb_link              http://www.imdb.com/title/tt3125324/?ref_=fn_t...
num_user_for_reviews                                                        37
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+06
title_year                                                                2014
actor_2_facebook_likes                                                     664
imdb_score                                                                 6.9
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 3499, dtype: object
color                                                                    Color
director_name                                                         Tom Ford
num_critic_for_reviews                                                     281
duration                                                                    99
director_facebook_likes                                                    192
actor_3_facebook_likes                                                     292
actor_2_name                                                       Teddy Sears
actor_1_facebook_likes                                                   14000
gross                                                              9.16686e+06
genres                                                           Drama|Romance
actor_1_name                                                       Colin Firth
movie_title                                                      A Single Man 
num_voted_users                                                          83182
cast_total_facebook_likes                                                14816
actor_3_name                                                   Keri Lynn Pratt
facenumber_in_poster                                                         2
plot_keywords                car accident|male full back nudity|practicing ...
movie_imdb_link              http://www.imdb.com/title/tt1315981/?ref_=fn_t...
num_user_for_reviews                                                       247
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2009
actor_2_facebook_likes                                                     343
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 3500, dtype: object
color                                                                    Color
director_name                                                  Martin Scorsese
num_critic_for_reviews                                                     114
duration                                                                   164
director_facebook_likes                                                  17000
actor_3_facebook_likes                                                     159
actor_2_name                                                   Barbara Hershey
actor_1_facebook_likes                                                     883
gross                                                              8.37358e+06
genres                                                                   Drama
actor_1_name                                                    Irvin Kershner
movie_title                                     The Last Temptation of Christ 
num_voted_users                                                          39680
cast_total_facebook_likes                                                 1934
actor_3_name                                                   Roberts Blossom
facenumber_in_poster                                                         0
plot_keywords                carpenter|exorcism|faith|reference to jesus ch...
movie_imdb_link              http://www.imdb.com/title/tt0095497/?ref_=fn_t...
num_user_for_reviews                                                       308
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                1988
actor_2_facebook_likes                                                     618
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3501, dtype: object
color                                                                    Color
director_name                                                 Michael Corrente
num_critic_for_reviews                                                      72
duration                                                                    96
director_facebook_likes                                                     30
actor_3_facebook_likes                                                     407
actor_2_name                                                      George Wendt
actor_1_facebook_likes                                                     761
gross                                                              7.29218e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                  Jonathan Brandis
movie_title                                                Outside Providence 
num_voted_users                                                           7736
cast_total_facebook_likes                                                 2018
actor_3_name                                                      Shawn Hatosy
facenumber_in_poster                                                         3
plot_keywords                class|cornwall connecticut|dog|friend|pawtucke...
movie_imdb_link              http://www.imdb.com/title/tt0125971/?ref_=fn_t...
num_user_for_reviews                                                       100
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                1999
actor_2_facebook_likes                                                     412
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3502, dtype: object
color                                                                    Color
director_name                                                  Gurinder Chadha
num_critic_for_reviews                                                     119
duration                                                                   122
director_facebook_likes                                                     98
actor_3_facebook_likes                                                     397
actor_2_name                                                  Martin Henderson
actor_1_facebook_likes                                                     729
gross                                                              6.60108e+06
genres                                            Comedy|Drama|Musical|Romance
actor_1_name                                                      Indira Varma
movie_title                                                 Bride & Prejudice 
num_voted_users                                                          17436
cast_total_facebook_likes                                                 2321
actor_3_name                                                       Anupam Kher
facenumber_in_poster                                                         1
plot_keywords                bollywood|india|jane austen|london england|travel
movie_imdb_link              http://www.imdb.com/title/tt0361411/?ref_=fn_t...
num_user_for_reviews                                                       276
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   7e+06
title_year                                                                2004
actor_2_facebook_likes                                                     579
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3503, dtype: object
color                                                                    Color
director_name                                                    Phillip Noyce
num_critic_for_reviews                                                      74
duration                                                                    94
director_facebook_likes                                                    176
actor_3_facebook_likes                                                      46
actor_2_name                                                    David Gulpilil
actor_1_facebook_likes                                                     116
gross                                                              6.16543e+06
genres                                       Adventure|Biography|Drama|History
actor_1_name                                                       Roy Billing
movie_title                                                Rabbit-Proof Fence 
num_voted_users                                                          23486
cast_total_facebook_likes                                                  312
actor_3_name                                                   Deborah Mailman
facenumber_in_poster                                                         1
plot_keywords                aborigine|based on true story|colonialism|fenc...
movie_imdb_link              http://www.imdb.com/title/tt0252444/?ref_=fn_t...
num_user_for_reviews                                                       249
language                                                            Aboriginal
country                                                              Australia
content_rating                                                              PG
budget                                                                   6e+06
title_year                                                                2002
actor_2_facebook_likes                                                      93
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3504, dtype: object
color                                                                    Color
director_name                                                 Don Michael Paul
num_critic_for_reviews                                                      25
duration                                                                    93
director_facebook_likes                                                     70
actor_3_facebook_likes                                                     442
actor_2_name                                                       Faizon Love
actor_1_facebook_likes                                                     692
gross                                                              5.69431e+06
genres                                                            Comedy|Sport
actor_1_name                                                     Jeffrey Jones
movie_title                                                 Who's Your Caddy? 
num_voted_users                                                          13815
cast_total_facebook_likes                                                 3128
actor_3_name                                                        Lil' Wayne
facenumber_in_poster                                                         0
plot_keywords                2000s|golf caddy|golf course|golfer|question m...
movie_imdb_link              http://www.imdb.com/title/tt0785077/?ref_=fn_t...
num_user_for_reviews                                                        46
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+06
title_year                                                                2007
actor_2_facebook_likes                                                     585
imdb_score                                                                   2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       446
Name: 3505, dtype: object
color                                                                    Color
director_name                                                      Tony Maylam
num_critic_for_reviews                                                      39
duration                                                                    96
director_facebook_likes                                                      6
actor_3_facebook_likes                                                      38
actor_2_name                                                    Alun Armstrong
actor_1_facebook_likes                                                     206
gross                                                              5.43082e+06
genres                                     Action|Crime|Horror|Sci-Fi|Thriller
actor_1_name                                                Michael J. Pollard
movie_title                                                      Split Second 
num_voted_users                                                           8391
cast_total_facebook_likes                                                  493
actor_3_name                                                   Alastair Duncan
facenumber_in_poster                                                         0
plot_keywords                appearing from water|breasts|creature|partner|...
movie_imdb_link              http://www.imdb.com/title/tt0105459/?ref_=fn_t...
num_user_for_reviews                                                        75
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                1992
actor_2_facebook_likes                                                     192
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3506, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      27
duration                                                                    60
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     346
actor_2_name                                                   Xander Berkeley
actor_1_facebook_likes                                                     787
gross                                                                      NaN
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                    Melinda Clarke
movie_title                                                Nikita             
num_voted_users                                                          42402
cast_total_facebook_likes                                                 2352
actor_3_name                                                    Aaron Stanford
facenumber_in_poster                                                         1
plot_keywords                 assassin|death|female protagonist|rogue|training
movie_imdb_link              http://www.imdb.com/title/tt1592154/?ref_=fn_t...
num_user_for_reviews                                                        83
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     485
imdb_score                                                                 7.7
aspect_ratio                                                                16
movie_facebook_likes                                                         0
Name: 3507, dtype: object
color                                                                    Color
director_name                                                      Mitch Davis
num_critic_for_reviews                                                      27
duration                                                                   113
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      35
actor_2_name                                                    Nathaniel Lees
actor_1_facebook_likes                                                   11000
gross                                                              4.72037e+06
genres                                               Adventure|Biography|Drama
actor_1_name                                                     Anne Hathaway
movie_title                                          The Other Side of Heaven 
num_voted_users                                                           3203
cast_total_facebook_likes                                                11116
actor_3_name                                                     Miriama Smith
facenumber_in_poster                                                         2
plot_keywords                               1950s|idaho|love|missionary|mormon
movie_imdb_link              http://www.imdb.com/title/tt0250371/?ref_=fn_t...
num_user_for_reviews                                                        85
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   7e+06
title_year                                                                2001
actor_2_facebook_likes                                                      43
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       650
Name: 3508, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      11
duration                                                                    60
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     652
actor_2_name                                                      Ashley Scott
actor_1_facebook_likes                                                   10000
gross                                                                      NaN
genres                                             Action|Drama|Mystery|Sci-Fi
actor_1_name                                                     Jensen Ackles
movie_title                                            Dark Angel             
num_voted_users                                                          25329
cast_total_facebook_likes                                                12051
actor_3_name                                                       John Savage
facenumber_in_poster                                                         1
plot_keywords                cat burglar|female lead|future|mixed martial a...
movie_imdb_link              http://www.imdb.com/title/tt0204993/?ref_=fn_t...
num_user_for_reviews                                                       160
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     794
imdb_score                                                                 7.4
aspect_ratio                                                              1.33
movie_facebook_likes                                                         0
Name: 3509, dtype: object
color                                                                    Color
director_name                                                      Yash Chopra
num_critic_for_reviews                                                      29
duration                                                                   192
director_facebook_likes                                                    147
actor_3_facebook_likes                                                     397
actor_2_name                                                      Preity Zinta
actor_1_facebook_likes                                                    8000
gross                                                              2.92174e+06
genres                                                   Drama|Musical|Romance
actor_1_name                                                    Shah Rukh Khan
movie_title                                                        Veer-Zaara 
num_voted_users                                                          34449
cast_total_facebook_likes                                                 9984
actor_3_name                                                       Anupam Kher
facenumber_in_poster                                                         0
plot_keywords                             fair|pakistan|prison|rescue|stranded
movie_imdb_link              http://www.imdb.com/title/tt0420332/?ref_=fn_t...
num_user_for_reviews                                                       119
language                                                                 Hindi
country                                                                  India
content_rating                                                             NaN
budget                                                                   7e+06
title_year                                                                2004
actor_2_facebook_likes                                                     860
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 3510, dtype: object
color                                                                    Color
director_name                                                      David Mamet
num_critic_for_reviews                                                     158
duration                                                                    99
director_facebook_likes                                                    342
actor_3_facebook_likes                                                     501
actor_2_name                                                     Randy Couture
actor_1_facebook_likes                                                    1000
gross                                                              2.34485e+06
genres                                                             Drama|Sport
actor_1_name                                                       Alice Braga
movie_title                                                           Redbelt 
num_voted_users                                                          18561
cast_total_facebook_likes                                                 2158
actor_3_name                                               Jose Pablo Cantillo
facenumber_in_poster                                                         0
plot_keywords                                bar|debt|fight|instructor|jujitsu
movie_imdb_link              http://www.imdb.com/title/tt1012804/?ref_=fn_t...
num_user_for_reviews                                                       119
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2008
actor_2_facebook_likes                                                     518
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3511, dtype: object
color                                                                    Color
director_name                                                      Jay Duplass
num_critic_for_reviews                                                     223
duration                                                                    91
director_facebook_likes                                                    157
actor_3_facebook_likes                                                     224
actor_2_name                                                        Tim Guinee
actor_1_facebook_likes                                                     490
gross                                                              7.45545e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                        Matt Walsh
movie_title                                                             Cyrus 
num_voted_users                                                          29967
cast_total_facebook_likes                                                 1136
actor_3_name                                                     Katie Aselton
facenumber_in_poster                                                         2
plot_keywords                21 year old|forename as title|musician|party|r...
movie_imdb_link              http://www.imdb.com/title/tt1336617/?ref_=fn_t...
num_user_for_reviews                                                       126
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2010
actor_2_facebook_likes                                                     259
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3512, dtype: object
color                                                                    Color
director_name                                                     Kevin Brodie
num_critic_for_reviews                                                      25
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     359
actor_2_name                                                       Cheryl Ladd
actor_1_facebook_likes                                                     655
gross                                                              2.14821e+06
genres                                                            Drama|Family
actor_1_name                                                      Bruce McGill
movie_title                                                 A Dog of Flanders 
num_voted_users                                                            781
cast_total_facebook_likes                                                 1906
actor_3_name                                                       Jack Warden
facenumber_in_poster                                                         0
plot_keywords                      artist|box office flop|dog|drawing|flanders
movie_imdb_link              http://www.imdb.com/title/tt0160216/?ref_=fn_t...
num_user_for_reviews                                                        20
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   7e+06
title_year                                                                1999
actor_2_facebook_likes                                                     476
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       157
Name: 3513, dtype: object
color                                                                    Color
director_name                                                    Paul Schrader
num_critic_for_reviews                                                      97
duration                                                                   105
director_facebook_likes                                                    261
actor_3_facebook_likes                                                     617
actor_2_name                                                    Michael McKean
actor_1_facebook_likes                                                     783
gross                                                              2.06207e+06
genres                                                   Biography|Crime|Drama
actor_1_name                                                     Ed Begley Jr.
movie_title                                                        Auto Focus 
num_voted_users                                                          11387
cast_total_facebook_likes                                                 2684
actor_3_name                                                       Kurt Fuller
facenumber_in_poster                                                         3
plot_keywords                    friendship|photography|radio|sex addict|video
movie_imdb_link              http://www.imdb.com/title/tt0298744/?ref_=fn_t...
num_user_for_reviews                                                       147
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2002
actor_2_facebook_likes                                                     658
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       357
Name: 3514, dtype: object
color                                                                    Color
director_name                                              George Hickenlooper
num_critic_for_reviews                                                     117
duration                                                                    99
director_facebook_likes                                                     60
actor_3_facebook_likes                                                     628
actor_2_name                                                      Jimmy Fallon
actor_1_facebook_likes                                                    4000
gross                                                              1.65437e+06
genres                                                         Biography|Drama
actor_1_name                                                Hayden Christensen
movie_title                                                      Factory Girl 
num_voted_users                                                          18355
cast_total_facebook_likes                                                 6526
actor_3_name                                                        Beth Grant
facenumber_in_poster                                                         0
plot_keywords                andy warhol|female nudity|public nudity|singer...
movie_imdb_link              http://www.imdb.com/title/tt0432402/?ref_=fn_t...
num_user_for_reviews                                                       106
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2006
actor_2_facebook_likes                                                     787
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      3000
Name: 3515, dtype: object
color                                                                    Color
director_name                                                     Lynne Ramsay
num_critic_for_reviews                                                     389
duration                                                                   112
director_facebook_likes                                                    159
actor_3_facebook_likes                                                      77
actor_2_name                                              Siobhan Fallon Hogan
actor_1_facebook_likes                                                    3000
gross                                                              1.73869e+06
genres                                                          Drama|Thriller
actor_1_name                                                       Ezra Miller
movie_title                                       We Need to Talk About Kevin 
num_voted_users                                                          95529
cast_total_facebook_likes                                                 3547
actor_3_name                                               Ashley Gerasimovich
facenumber_in_poster                                                         0
plot_keywords                archery|defiance|mental illness|psychopath|toi...
movie_imdb_link              http://www.imdb.com/title/tt1242460/?ref_=fn_t...
num_user_for_reviews                                                       301
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2011
actor_2_facebook_likes                                                     294
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     38000
Name: 3516, dtype: object
color                                                                    Color
director_name                                                  John Stephenson
num_critic_for_reviews                                                       9
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     149
actor_2_name                                                     Hans Matheson
actor_1_facebook_likes                                                    2000
gross                                                              2.20948e+06
genres                                                            Drama|Family
actor_1_name                                                    Samantha Barks
movie_title                                              The Christmas Candle 
num_voted_users                                                            844
cast_total_facebook_likes                                                 2909
actor_3_name                                                   Lesley Manville
facenumber_in_poster                                                         0
plot_keywords                           angel|candle|christmas|miracle|village
movie_imdb_link              http://www.imdb.com/title/tt2739338/?ref_=fn_t...
num_user_for_reviews                                                        34
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2013
actor_2_facebook_likes                                                     627
imdb_score                                                                 5.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                       962
Name: 3517, dtype: object
color                                                                    Color
director_name                                                     Tim Chambers
num_critic_for_reviews                                                      34
duration                                                                    99
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     455
actor_2_name                                                    Marley Shelton
actor_1_facebook_likes                                                    1000
gross                                                              1.88952e+06
genres                                                             Drama|Sport
actor_1_name                                                     Ellen Burstyn
movie_title                                                   The Mighty Macs 
num_voted_users                                                           1119
cast_total_facebook_likes                                                 2589
actor_3_name                                                   Jennifer Butler
facenumber_in_poster                                                         2
plot_keywords                            basketball|catholic|coach|college|nun
movie_imdb_link              http://www.imdb.com/title/tt1034324/?ref_=fn_t...
num_user_for_reviews                                                        12
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                   7e+06
title_year                                                                2009
actor_2_facebook_likes                                                     690
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       797
Name: 3518, dtype: object
color                                                                    Color
director_name                                                    Curtis Hanson
num_critic_for_reviews                                                       7
duration                                                                   100
director_facebook_likes                                                    161
actor_3_facebook_likes                                                     172
actor_2_name                                                      Shelley Long
actor_1_facebook_likes                                                   10000
gross                                                                      NaN
genres                                                     Comedy|Drama|Family
actor_1_name                                                        Tom Cruise
movie_title                                                         Losin' It 
num_voted_users                                                           3114
cast_total_facebook_likes                                                11059
actor_3_name                                                    Rick Rossovich
facenumber_in_poster                                                         0
plot_keywords                apostrophe in title|bare breasts|friendship be...
movie_imdb_link              http://www.imdb.com/title/tt0085868/?ref_=fn_t...
num_user_for_reviews                                                        16
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                1983
actor_2_facebook_likes                                                     422
imdb_score                                                                 4.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                       168
Name: 3519, dtype: object
color                                                                    Color
director_name                                                   Rodrigo García
num_critic_for_reviews                                                     161
duration                                                                   125
director_facebook_likes                                                    127
actor_3_facebook_likes                                                     798
actor_2_name                                                       Jimmy Smits
actor_1_facebook_likes                                                    6000
gross                                                              1.11029e+06
genres                                                           Drama|Romance
actor_1_name                                                       Naomi Watts
movie_title                                                  Mother and Child 
num_voted_users                                                           9727
cast_total_facebook_likes                                                 8876
actor_3_name                                                       Carla Gallo
facenumber_in_poster                                                         6
plot_keywords                                    adoption|baby|girl|lawyer|sex
movie_imdb_link              http://www.imdb.com/title/tt1121977/?ref_=fn_t...
num_user_for_reviews                                                        65
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                               4.825e+06
title_year                                                                2009
actor_2_facebook_likes                                                     941
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3520, dtype: object
color                                                                    Color
director_name                                                    Dick Richards
num_critic_for_reviews                                                       6
duration                                                                   107
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     375
actor_2_name                                                      Terence Hill
actor_1_facebook_likes                                                     963
gross                                                                    1e+06
genres                                             Adventure|Drama|Romance|War
actor_1_name                                                 Catherine Deneuve
movie_title                                                      March or Die 
num_voted_users                                                           2215
cast_total_facebook_likes                                                 2209
actor_3_name                                                   Jack O'Halloran
facenumber_in_poster                                                         1
plot_keywords                arab|bare chested male|foreign legion|french f...
movie_imdb_link              http://www.imdb.com/title/tt0076175/?ref_=fn_t...
num_user_for_reviews                                                        26
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                   9e+06
title_year                                                                1977
actor_2_facebook_likes                                                     750
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       122
Name: 3521, dtype: object
color                                                                    Color
director_name                                                 Jean-Marie Poiré
num_critic_for_reviews                                                      16
duration                                                                   107
director_facebook_likes                                                      8
actor_3_facebook_likes                                                      39
actor_2_name                                                    Isabelle Nanty
actor_1_facebook_likes                                                     106
gross                                                                   700000
genres                                                   Comedy|Fantasy|Sci-Fi
actor_1_name                                                 Christian Clavier
movie_title                                                     Les visiteurs 
num_voted_users                                                          24438
cast_total_facebook_likes                                                  215
actor_3_name                                                 Valérie Lemercier
facenumber_in_poster                                                         1
plot_keywords                distant past|future time travel|nobleman|squir...
movie_imdb_link              http://www.imdb.com/title/tt0108500/?ref_=fn_t...
num_user_for_reviews                                                        78
language                                                                French
country                                                                 France
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                1993
actor_2_facebook_likes                                                      54
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3522, dtype: object
color                                                                    Color
director_name                                                    Sofia Coppola
num_critic_for_reviews                                                     301
duration                                                                    97
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     106
actor_2_name                                                     Chris Pontius
actor_1_facebook_likes                                                     227
gross                                                              1.76842e+06
genres                                                            Comedy|Drama
actor_1_name                                                      Nathalie Fay
movie_title                                                         Somewhere 
num_voted_users                                                          35848
cast_total_facebook_likes                                                  684
actor_3_name                                                       Erin Wasson
facenumber_in_poster                                                         0
plot_keywords                            actor|boredom|luxury hotel|party|trip
movie_imdb_link              http://www.imdb.com/title/tt1421051/?ref_=fn_t...
num_user_for_reviews                                                       198
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2010
actor_2_facebook_likes                                                     218
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3523, dtype: object
color                                                                    Color
director_name                                                        Bob Gosse
num_critic_for_reviews                                                      52
duration                                                                   105
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     184
actor_2_name                                                    Susie Abromeit
actor_1_facebook_likes                                                     756
gross                                                              1.42599e+06
genres                                                                  Comedy
actor_1_name                                                      Geoff Stults
movie_title                                    I Hope They Serve Beer in Hell 
num_voted_users                                                           7412
cast_total_facebook_likes                                                 1417
actor_3_name                                               Derek Wayne Johnson
facenumber_in_poster                                                         1
plot_keywords                bachelor party|bare butt|loud sex|sex standing...
movie_imdb_link              http://www.imdb.com/title/tt1220628/?ref_=fn_t...
num_user_for_reviews                                                        72
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     216
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3524, dtype: object
color                                                                    Color
director_name                                                        Alex Zamm
num_critic_for_reviews                                                      12
duration                                                                    95
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     611
actor_2_name                                                      Raquel Welch
actor_1_facebook_likes                                                    1000
gross                                                                   306715
genres                                                                  Comedy
actor_1_name                                                     Taylor Negron
movie_title                                             Chairman of the Board 
num_voted_users                                                           5143
cast_total_facebook_likes                                                 5213
actor_3_name                                                      Larry Miller
facenumber_in_poster                                                         1
plot_keywords                box office flop|company|invention|roommate|surfer
movie_imdb_link              http://www.imdb.com/title/tt0118836/?ref_=fn_t...
num_user_for_reviews                                                        62
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   1e+07
title_year                                                                1998
actor_2_facebook_likes                                                     788
imdb_score                                                                 2.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       724
Name: 3525, dtype: object
color                                                                    Color
director_name                                                   Spencer Susser
num_critic_for_reviews                                                     134
duration                                                                   106
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     973
actor_2_name                                                   Natalie Portman
actor_1_facebook_likes                                                   23000
gross                                                                   382946
genres                                                                   Drama
actor_1_name                                              Joseph Gordon-Levitt
movie_title                                                            Hesher 
num_voted_users                                                          43965
cast_total_facebook_likes                                                44969
actor_3_name                                                      Rainn Wilson
facenumber_in_poster                                                         0
plot_keywords                             bully|car|car accident|fire|vomiting
movie_imdb_link              http://www.imdb.com/title/tt1403177/?ref_=fn_t...
num_user_for_reviews                                                        99
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2010
actor_2_facebook_likes                                                   20000
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     19000
Name: 3526, dtype: object
color                                                                    Color
director_name                                                  Richard Shepard
num_critic_for_reviews                                                     151
duration                                                                    93
director_facebook_likes                                                     47
actor_3_facebook_likes                                                      13
actor_2_name                                                      Mark Wingett
actor_1_facebook_likes                                                     554
gross                                                                   518134
genres                                                      Comedy|Crime|Drama
actor_1_name                                                  Richard E. Grant
movie_title                                                     Dom Hemingway 
num_voted_users                                                          21243
cast_total_facebook_likes                                                 1105
actor_3_name                                                    Richard Graham
facenumber_in_poster                                                         2
plot_keywords                male frontal nudity|male nudity|male rear nudi...
movie_imdb_link              http://www.imdb.com/title/tt2402105/?ref_=fn_t...
num_user_for_reviews                                                        66
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2013
actor_2_facebook_likes                                                     524
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3527, dtype: object
color                                                                    Color
director_name                                                     Gus Van Sant
num_critic_for_reviews                                                     103
duration                                                                   103
director_facebook_likes                                                    835
actor_3_facebook_likes                                                     NaN
actor_2_name                                                     Casey Affleck
actor_1_facebook_likes                                                   13000
gross                                                                   236266
genres                                                 Adventure|Drama|Mystery
actor_1_name                                                        Matt Damon
movie_title                                                             Gerry 
num_voted_users                                                          15104
cast_total_facebook_likes                                                13000
actor_3_name                                                               NaN
facenumber_in_poster                                                         0
plot_keywords                  desert|friend|friendship|minimal dialogue|water
movie_imdb_link              http://www.imdb.com/title/tt0302674/?ref_=fn_t...
num_user_for_reviews                                                       290
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 3.5e+06
title_year                                                                2002
actor_2_facebook_likes                                                       0
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3528, dtype: object
color                                                                    Color
director_name                                              Thaddeus O'Sullivan
num_critic_for_reviews                                                      39
duration                                                                    96
director_facebook_likes                                                      5
actor_3_facebook_likes                                                      52
actor_2_name                                                     Luke Newberry
actor_1_facebook_likes                                                     766
gross                                                                   196067
genres                                                           Drama|Romance
actor_1_name                                                   Olivia Williams
movie_title                                                   The Heart of Me 
num_voted_users                                                           1966
cast_total_facebook_likes                                                 1251
actor_3_name                                                      Eleanor Bron
facenumber_in_poster                                                         3
plot_keywords                 1930s|car accident|hospital|marital rape|painter
movie_imdb_link              http://www.imdb.com/title/tt0301390/?ref_=fn_t...
num_user_for_reviews                                                        25
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2002
actor_2_facebook_likes                                                     358
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                        97
Name: 3529, dtype: object
color                                                                    Color
director_name                                                    Peter Sollett
num_critic_for_reviews                                                     133
duration                                                                   103
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     935
actor_2_name                                                      Josh Charles
actor_1_facebook_likes                                                    7000
gross                                                                   532988
genres                                                 Biography|Drama|Romance
actor_1_name                                                      Steve Carell
movie_title                                                          Freeheld 
num_voted_users                                                           5863
cast_total_facebook_likes                                                 9660
actor_3_name                                                       Luke Grimes
facenumber_in_poster                                                         0
plot_keywords                cancer|gay bar|lesbian kiss|partner|public hea...
movie_imdb_link              http://www.imdb.com/title/tt1658801/?ref_=fn_t...
num_user_for_reviews                                                        25
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   7e+06
title_year                                                                2015
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3530, dtype: object
color                                                                    Color
director_name                                            Shari Springer Berman
num_critic_for_reviews                                                     104
duration                                                                   108
director_facebook_likes                                                     30
actor_3_facebook_likes                                                     281
actor_2_name                                                     Marian Seldes
actor_1_facebook_likes                                                     474
gross                                                                   453079
genres                                                                  Comedy
actor_1_name                                                        Lynn Cohen
movie_title                                                     The Extra Man 
num_voted_users                                                           4124
cast_total_facebook_likes                                                 2029
actor_3_name                                                        Dan Hedaya
facenumber_in_poster                                                         4
plot_keywords                         co worker|escort|magazine|teacher|writer
movie_imdb_link              http://www.imdb.com/title/tt1361313/?ref_=fn_t...
num_user_for_reviews                                                        29
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2010
actor_2_facebook_likes                                                     403
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       916
Name: 3531, dtype: object
color                                                          Black and White
director_name                                                   Aleksey German
num_critic_for_reviews                                                     121
duration                                                                   177
director_facebook_likes                                                     23
actor_3_facebook_likes                                                       0
actor_2_name                                                     Yuriy Tsurilo
actor_1_facebook_likes                                                       4
gross                                                                      NaN
genres                                                            Drama|Sci-Fi
actor_1_name                                                  Leonid Yarmolnik
movie_title                                                  Hard to Be a God 
num_voted_users                                                           2518
cast_total_facebook_likes                                                    8
actor_3_name                                                Valentin Golubenko
facenumber_in_poster                                                         0
plot_keywords                fictional war|hanging|male full frontal nudity...
movie_imdb_link              http://www.imdb.com/title/tt2328813/?ref_=fn_t...
num_user_for_reviews                                                        28
language                                                               Russian
country                                                                 Russia
content_rating                                                       Not Rated
budget                                                                   7e+06
title_year                                                                2013
actor_2_facebook_likes                                                       4
imdb_score                                                                 6.7
aspect_ratio                                                              1.66
movie_facebook_likes                                                      1000
Name: 3532, dtype: object
color                                                                    Color
director_name                                         Stephen Milburn Anderson
num_critic_for_reviews                                                      27
duration                                                                   118
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     410
actor_2_name                                                        Mike Starr
actor_1_facebook_likes                                                   26000
gross                                                                    46451
genres                                                   Comedy|Crime|Thriller
actor_1_name                                                   Chris Hemsworth
movie_title                                                              Ca$h 
num_voted_users                                                           7663
cast_total_facebook_likes                                                27756
actor_3_name                                                      Paul Sanchez
facenumber_in_poster                                                         2
plot_keywords                 cash|financial problem|heist|land rover|mortgage
movie_imdb_link              http://www.imdb.com/title/tt1106860/?ref_=fn_t...
num_user_for_reviews                                                        38
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2010
actor_2_facebook_likes                                                     854
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       694
Name: 3533, dtype: object
color                                                                    Color
director_name                                                 Richard E. Grant
num_critic_for_reviews                                                      49
duration                                                                    97
director_facebook_likes                                                    554
actor_3_facebook_likes                                                     530
actor_2_name                                                     Julie Walters
actor_1_facebook_likes                                                     876
gross                                                                   233103
genres                                                                   Drama
actor_1_name                                                      Emily Watson
movie_title                                                           Wah-Wah 
num_voted_users                                                           2670
cast_total_facebook_likes                                                 2544
actor_3_name                                                Miranda Richardson
facenumber_in_poster                                                         3
plot_keywords                alcoholic|alcoholic father|stepmother|swazilan...
movie_imdb_link              http://www.imdb.com/title/tt0419256/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2005
actor_2_facebook_likes                                                     838
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       311
Name: 3534, dtype: object
color                                                          Black and White
director_name                                                       Troy Duffy
num_critic_for_reviews                                                     100
duration                                                                   102
director_facebook_likes                                                     78
actor_3_facebook_likes                                                     184
actor_2_name                                                 David Della Rocco
actor_1_facebook_likes                                                   12000
gross                                                                      NaN
genres                                                   Action|Crime|Thriller
actor_1_name                                                     Norman Reedus
movie_title                                               The Boondock Saints 
num_voted_users                                                         197845
cast_total_facebook_likes                                                12680
actor_3_name                                                        Bob Marley
facenumber_in_poster                                                         2
plot_keywords                                 fbi|fbi agent|friend|irish|mafia
movie_imdb_link              http://www.imdb.com/title/tt0144117/?ref_=fn_t...
num_user_for_reviews                                                       876
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                1999
actor_2_facebook_likes                                                     333
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     16000
Name: 3535, dtype: object
color                                                                    Color
director_name                                                        David Lam
num_critic_for_reviews                                                      12
duration                                                                    92
director_facebook_likes                                                      4
actor_3_facebook_likes                                                       4
actor_2_name                                                         Louis Koo
actor_1_facebook_likes                                                      91
gross                                                                      NaN
genres                                                            Action|Crime
actor_1_name                                                      Michael Wong
movie_title                                                           Z Storm 
num_voted_users                                                            383
cast_total_facebook_likes                                                  198
actor_3_name                                                        Stephen Au
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3469440/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                             Cantonese
country                                                              Hong Kong
content_rating                                                             NaN
budget                                                                   7e+06
title_year                                                                2014
actor_2_facebook_likes                                                      82
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                        55
Name: 3536, dtype: object
color                                                                    Color
director_name                                             Francis Ford Coppola
num_critic_for_reviews                                                     112
duration                                                                    88
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     507
actor_2_name                                                        Bruce Dern
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                           Comedy|Fantasy|Horror|Mystery
actor_1_name                                                  Alden Ehrenreich
movie_title                                                             Twixt 
num_voted_users                                                           8589
cast_total_facebook_likes                                                 3150
actor_3_name                                                    Joanne Whalley
facenumber_in_poster                                                         0
plot_keywords                ghost|hotel|murder|stake|what happened to epil...
movie_imdb_link              http://www.imdb.com/title/tt1756851/?ref_=fn_t...
num_user_for_reviews                                                        70
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2011
actor_2_facebook_likes                                                     844
imdb_score                                                                 4.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3537, dtype: object
color                                                                    Color
director_name                                                    Vladlen Barbe
num_critic_for_reviews                                                      10
duration                                                                    80
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      26
actor_2_name                                                        Wendee Lee
actor_1_facebook_likes                                                      99
gross                                                                      NaN
genres                                              Adventure|Animation|Family
actor_1_name                                                   Erin Fitzgerald
movie_title                                                        Snow Queen 
num_voted_users                                                           1159
cast_total_facebook_likes                                                  218
actor_3_name                                                  Ivan Okhlobystin
facenumber_in_poster                                                         1
plot_keywords                                                               3d
movie_imdb_link              http://www.imdb.com/title/tt2243621/?ref_=fn_t...
num_user_for_reviews                                                         9
language                                                               Russian
country                                                                 Russia
content_rating                                                              PG
budget                                                                   7e+06
title_year                                                                2012
actor_2_facebook_likes                                                      62
imdb_score                                                                 5.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                       453
Name: 3538, dtype: object
color                                                                      NaN
director_name                                                     Richard Rich
num_critic_for_reviews                                                       2
duration                                                                    45
director_facebook_likes                                                     24
actor_3_facebook_likes                                                      29
actor_2_name                                                      Kate Higgins
actor_1_facebook_likes                                                     122
gross                                                                      NaN
genres                       Action|Adventure|Animation|Comedy|Drama|Family...
actor_1_name                                                   Debi Derryberry
movie_title                  Alpha and Omega 4: The Legend of the Saw Tooth...
num_voted_users                                                            192
cast_total_facebook_likes                                                  236
actor_3_name                                                    Cindy Robinson
facenumber_in_poster                                                         0
plot_keywords                              blindness|cave|spirit|wolf|wolf cub
movie_imdb_link              http://www.imdb.com/title/tt4061848/?ref_=fn_t...
num_user_for_reviews                                                         6
language                                                                   NaN
country                                                                    USA
content_rating                                                             NaN
budget                                                                   7e+06
title_year                                                                2014
actor_2_facebook_likes                                                      35
imdb_score                                                                   6
aspect_ratio                                                               NaN
movie_facebook_likes                                                        41
Name: 3539, dtype: object
color                                                                    Color
director_name                                                   Clint Eastwood
num_critic_for_reviews                                                      38
duration                                                                   115
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     240
actor_2_name                                                        Chris Penn
actor_1_facebook_likes                                                   16000
gross                                                                 4.14e+07
genres                                                                 Western
actor_1_name                                                    Clint Eastwood
movie_title                                                        Pale Rider 
num_voted_users                                                          39451
cast_total_facebook_likes                                                17209
actor_3_name                                                      Sydney Penny
facenumber_in_poster                                                         0
plot_keywords                           gold|miner|preacher|prospector|sheriff
movie_imdb_link              http://www.imdb.com/title/tt0089767/?ref_=fn_t...
num_user_for_reviews                                                       138
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.9e+06
title_year                                                                1985
actor_2_facebook_likes                                                     455
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3540, dtype: object
color                                                                    Color
director_name                                                 Robert C. Cooper
num_critic_for_reviews                                                      18
duration                                                                    97
director_facebook_likes                                                     49
actor_3_facebook_likes                                                     687
actor_2_name                                                 Christopher Judge
actor_1_facebook_likes                                                     878
gross                                                                      NaN
genres                                   Action|Adventure|Drama|Fantasy|Sci-Fi
actor_1_name                                                       Ben Browder
movie_title                                        Stargate: The Ark of Truth 
num_voted_users                                                          15862
cast_total_facebook_likes                                                 4334
actor_3_name                                                      Julian Sands
facenumber_in_poster                                                         5
plot_keywords                     2000s|evil god|space opera|stargate|wormhole
movie_imdb_link              http://www.imdb.com/title/tt0942903/?ref_=fn_t...
num_user_for_reviews                                                        42
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2008
actor_2_facebook_likes                                                     847
imdb_score                                                                 7.4
aspect_ratio                                                              1.78
movie_facebook_likes                                                       389
Name: 3541, dtype: object
color                                                                    Color
director_name                                                Richard Linklater
num_critic_for_reviews                                                     152
duration                                                                   102
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     787
actor_2_name                                                     Adam Goldberg
actor_1_facebook_likes                                                   14000
gross                                                              7.99304e+06
genres                                                                  Comedy
actor_1_name                                                    Milla Jovovich
movie_title                                                Dazed and Confused 
num_voted_users                                                         120036
cast_total_facebook_likes                                                18643
actor_3_name                                                       Cole Hauser
facenumber_in_poster                                                         1
plot_keywords                football|hazing|high school|last day of school...
movie_imdb_link              http://www.imdb.com/title/tt0106677/?ref_=fn_t...
num_user_for_reviews                                                       408
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.9e+06
title_year                                                                1993
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 3542, dtype: object
color                                                                    Color
director_name                                                     Kenny Ortega
num_critic_for_reviews                                                      44
duration                                                                   111
director_facebook_likes                                                    197
actor_3_facebook_likes                                                     578
actor_2_name                                                       Corbin Bleu
actor_1_facebook_likes                                                     755
gross                                                                      NaN
genres                               Comedy|Drama|Family|Music|Musical|Romance
actor_1_name                                                     Lucas Grabeel
movie_title                                             High School Musical 2 
num_voted_users                                                          39786
cast_total_facebook_likes                                                 3009
actor_3_name                                                      Olesya Rulin
facenumber_in_poster                                                         5
plot_keywords                2000s|basketball|country club|lifeguard|talent...
movie_imdb_link              http://www.imdb.com/title/tt0810900/?ref_=fn_t...
num_user_for_reviews                                                       162
language                                                               English
country                                                                    USA
content_rating                                                            TV-G
budget                                                                   7e+06
title_year                                                                2007
actor_2_facebook_likes                                                     632
imdb_score                                                                 4.8
aspect_ratio                                                              1.78
movie_facebook_likes                                                       586
Name: 3543, dtype: object
color                                                                    Color
director_name                                                       Kim Nguyen
num_critic_for_reviews                                                       6
duration                                                                    96
director_facebook_likes                                                     16
actor_3_facebook_likes                                                      63
actor_2_name                                               Justin Edward Seale
actor_1_facebook_likes                                                     149
gross                                                                      NaN
genres                                                           Drama|Romance
actor_1_name                                                    Gordon Pinsent
movie_title                                             Two Lovers and a Bear 
num_voted_users                                                             33
cast_total_facebook_likes                                                  414
actor_3_name                                                      John Ralston
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt4412528/?ref_=fn_t...
num_user_for_reviews                                                         6
language                                                               English
country                                                                 Canada
content_rating                                                             NaN
budget                                                                 8.7e+06
title_year                                                                2016
actor_2_facebook_likes                                                     147
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       187
Name: 3544, dtype: object
color                                                                    Color
director_name                                               Jackie Earle Haley
num_critic_for_reviews                                                      46
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     493
actor_2_name                                                       Edi Gathegi
actor_1_facebook_likes                                                   15000
gross                                                                      NaN
genres                                                    Crime|Drama|Thriller
actor_1_name                                                         Rex Baker
movie_title                                               Criminal Activities 
num_voted_users                                                           5255
cast_total_facebook_likes                                                17377
actor_3_name                                                 Travis Aaron Wade
facenumber_in_poster                                                         3
plot_keywords                african american gangster|falling to death|in ...
movie_imdb_link              http://www.imdb.com/title/tt3687310/?ref_=fn_t...
num_user_for_reviews                                                        38
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   7e+06
title_year                                                                2015
actor_2_facebook_likes                                                     725
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3545, dtype: object
color                                                                    Color
director_name                                                   Max Färberböck
num_critic_for_reviews                                                      63
duration                                                                   125
director_facebook_likes                                                      4
actor_3_facebook_likes                                                      36
actor_2_name                                                   Johanna Wokalek
actor_1_facebook_likes                                                     177
gross                                                                   927107
genres                                             Biography|Drama|Romance|War
actor_1_name                                                    Heike Makatsch
movie_title                                                    Aimee & Jaguar 
num_voted_users                                                           5153
cast_total_facebook_likes                                                  333
actor_3_name                                                    Maria Schrader
facenumber_in_poster                                                         1
plot_keywords                lesbian mother|lesbian parent|lesbian relation...
movie_imdb_link              http://www.imdb.com/title/tt0130444/?ref_=fn_t...
num_user_for_reviews                                                        51
language                                                                German
country                                                                Germany
content_rating                                                             NaN
budget                                                                 1.5e+07
title_year                                                                1999
actor_2_facebook_likes                                                      66
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       687
Name: 3546, dtype: object
color                                                                    Color
director_name                                                       Arie Posin
num_critic_for_reviews                                                      74
duration                                                                   108
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     436
actor_2_name                                                        John Heard
actor_1_facebook_likes                                                     710
gross                                                                    49526
genres                                                            Comedy|Drama
actor_1_name                                                       Rory Culkin
movie_title                                                  The Chumscrubber 
num_voted_users                                                          16299
cast_total_facebook_likes                                                 2119
actor_3_name                                                         Tim DeKay
facenumber_in_poster                                                         1
plot_keywords                           chumscrubber|death|friend|pills|school
movie_imdb_link              http://www.imdb.com/title/tt0406650/?ref_=fn_t...
num_user_for_reviews                                                       129
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.8e+06
title_year                                                                2005
actor_2_facebook_likes                                                     697
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 3547, dtype: object
color                                                                    Color
director_name                                                    Damian Nieman
num_critic_for_reviews                                                      25
duration                                                                   101
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      83
actor_2_name                                                     Jason Cerbone
actor_1_facebook_likes                                                     240
gross                                                                    10696
genres                                                          Crime|Thriller
actor_1_name                                                     Glenn Plummer
movie_title                                                             Shade 
num_voted_users                                                          10771
cast_total_facebook_likes                                                  490
actor_3_name                                                Mark De Alessandro
facenumber_in_poster                                                         8
plot_keywords                     bar|strip club|stripper|texas hold 'em|thong
movie_imdb_link              http://www.imdb.com/title/tt0323939/?ref_=fn_t...
num_user_for_reviews                                                        65
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.8e+06
title_year                                                                2003
actor_2_facebook_likes                                                      83
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       413
Name: 3548, dtype: object
color                                                                    Color
director_name                                                    Mark Tonderai
num_critic_for_reviews                                                     224
duration                                                                   101
director_facebook_likes                                                     13
actor_3_facebook_likes                                                     261
actor_2_name                                                 Nolan Gerard Funk
actor_1_facebook_likes                                                   34000
gross                                                              3.16076e+07
genres                                                   Drama|Horror|Thriller
actor_1_name                                                 Jennifer Lawrence
movie_title                                    House at the End of the Street 
num_voted_users                                                          58366
cast_total_facebook_likes                                                35717
actor_3_name                                                       Gil Bellows
facenumber_in_poster                                                         1
plot_keywords                brother sister relationship|death of sister|fe...
movie_imdb_link              http://www.imdb.com/title/tt1582507/?ref_=fn_t...
num_user_for_reviews                                                       160
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                 6.9e+06
title_year                                                                2012
actor_2_facebook_likes                                                     924
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 3549, dtype: object
color                                                                    Color
director_name                                                 Denis Villeneuve
num_critic_for_reviews                                                     226
duration                                                                   139
director_facebook_likes                                                    777
actor_3_facebook_likes                                                      58
actor_2_name                                         Mélissa Désormeaux-Poulin
actor_1_facebook_likes                                                     131
gross                                                               6.8571e+06
genres                                                       Drama|Mystery|War
actor_1_name                                                      Lubna Azabal
movie_title                                                         Incendies 
num_voted_users                                                          80429
cast_total_facebook_likes                                                  343
actor_3_name                                                      Ahmad Massad
facenumber_in_poster                                                         0
plot_keywords                brother sister relationship|family relationshi...
movie_imdb_link              http://www.imdb.com/title/tt1255953/?ref_=fn_t...
num_user_for_reviews                                                       156
language                                                                French
country                                                                 Canada
content_rating                                                               R
budget                                                                 6.8e+06
title_year                                                                2010
actor_2_facebook_likes                                                      66
imdb_score                                                                 8.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                     37000
Name: 3550, dtype: object
color                                                                    Color
director_name                                                 Gabriele Muccino
num_critic_for_reviews                                                      36
duration                                                                   125
director_facebook_likes                                                    125
actor_3_facebook_likes                                                      11
actor_2_name                                                    Silvio Muccino
actor_1_facebook_likes                                                      60
gross                                                                   223878
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Laura Morante
movie_title                                              Remember Me, My Love 
num_voted_users                                                           3548
cast_total_facebook_likes                                                  132
actor_3_name                                                  Giulia Michelini
facenumber_in_poster                                                         1
plot_keywords                box office hit|dancer|sex scene|television|und...
movie_imdb_link              http://www.imdb.com/title/tt0323807/?ref_=fn_t...
num_user_for_reviews                                                        21
language                                                               Italian
country                                                                  Italy
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2003
actor_2_facebook_likes                                                      29
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       282
Name: 3551, dtype: object
color                                                                    Color
director_name                                                   Ian Fitzgibbon
num_critic_for_reviews                                                      54
duration                                                                    88
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     415
actor_2_name                                                     Brendan Coyle
actor_1_facebook_likes                                                    1000
gross                                                                      828
genres                              Action|Comedy|Crime|Drama|Romance|Thriller
actor_1_name                                                     Jim Broadbent
movie_title                                                  Perrier's Bounty 
num_voted_users                                                           5133
cast_total_facebook_likes                                                 2728
actor_3_name                                                Michael McElhatton
facenumber_in_poster                                                         8
plot_keywords                    burglary|estranged father|money|neighbor|thug
movie_imdb_link              http://www.imdb.com/title/tt1003034/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                               English
country                                                                Ireland
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     418
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       663
Name: 3552, dtype: object
color                                                                    Color
director_name                                                     José Padilha
num_critic_for_reviews                                                     142
duration                                                                   115
director_facebook_likes                                                    294
actor_3_facebook_likes                                                      15
actor_2_name                                                  Fernanda Machado
actor_1_facebook_likes                                                     585
gross                                                                     8060
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                      Wagner Moura
movie_title                                                       Elite Squad 
num_voted_users                                                          81644
cast_total_facebook_likes                                                  666
actor_3_name                                                      André Ramiro
facenumber_in_poster                                                         1
plot_keywords                brazil|military police|police|rio de janeiro b...
movie_imdb_link              http://www.imdb.com/title/tt0861739/?ref_=fn_t...
num_user_for_reviews                                                       107
language                                                            Portuguese
country                                                                 Brazil
content_rating                                                               R
budget                                                                   4e+06
title_year                                                                2007
actor_2_facebook_likes                                                      39
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 3553, dtype: object
color                                                                    Color
director_name                                                 John R. Leonetti
num_critic_for_reviews                                                     271
duration                                                                    99
director_facebook_likes                                                     40
actor_3_facebook_likes                                                     300
actor_2_name                                                  Annabelle Wallis
actor_1_facebook_likes                                                    1000
gross                                                              8.42638e+07
genres                                                          Horror|Mystery
actor_1_name                                                     Alfre Woodard
movie_title                                                         Annabelle 
num_voted_users                                                          81699
cast_total_facebook_likes                                                 2323
actor_3_name                                                   Gabriel Bateman
facenumber_in_poster                                                         0
plot_keywords                horror movie prequel|murder|paranormal activit...
movie_imdb_link              http://www.imdb.com/title/tt3322940/?ref_=fn_t...
num_user_for_reviews                                                       291
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                2014
actor_2_facebook_likes                                                     421
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     45000
Name: 3554, dtype: object
color                                                                    Color
director_name                                                   Rachel Perkins
num_critic_for_reviews                                                      33
duration                                                                    88
director_facebook_likes                                                      3
actor_3_facebook_likes                                                      38
actor_2_name                                                   Magda Szubanski
actor_1_facebook_likes                                                      46
gross                                                                   110029
genres                                                    Comedy|Drama|Musical
actor_1_name                                                   Deborah Mailman
movie_title                                                      Bran Nue Dae 
num_voted_users                                                           1388
cast_total_facebook_likes                                                  225
actor_3_name                                                    Jessica Mauboy
facenumber_in_poster                                                         7
plot_keywords                          australia|journey|love|priest|traveling
movie_imdb_link              http://www.imdb.com/title/tt1148165/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                               English
country                                                              Australia
content_rating                                                           PG-13
budget                                                                 6.5e+06
title_year                                                                2009
actor_2_facebook_likes                                                      46
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       479
Name: 3555, dtype: object
color                                                                    Color
director_name                                                   John Singleton
num_critic_for_reviews                                                      64
duration                                                                   112
director_facebook_likes                                                    309
actor_3_facebook_likes                                                      15
actor_2_name                                                    Lloyd Avery II
actor_1_facebook_likes                                                      27
gross                                                              5.75041e+07
genres                                                             Crime|Drama
actor_1_name                                                      John Cothran
movie_title                                                   Boyz n the Hood 
num_voted_users                                                          94139
cast_total_facebook_likes                                                  106
actor_3_name                                                  Na'Blonka Durden
facenumber_in_poster                                                         2
plot_keywords                            drugs|escape|football|friend|violence
movie_imdb_link              http://www.imdb.com/title/tt0101507/?ref_=fn_t...
num_user_for_reviews                                                       183
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1991
actor_2_facebook_likes                                                      26
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3556, dtype: object
color                                                                    Color
director_name                                                      Luis Valdez
num_critic_for_reviews                                                      18
duration                                                                   108
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      51
actor_2_name                                                    Rosanna DeSoto
actor_1_facebook_likes                                                     699
gross                                                              5.42154e+07
genres                                                   Biography|Drama|Music
actor_1_name                                                      Esai Morales
movie_title                                                          La Bamba 
num_voted_users                                                          21409
cast_total_facebook_likes                                                  936
actor_3_name                                              Danielle von Zerneck
facenumber_in_poster                                                         1
plot_keywords                crash|hispanic|interracial relationship|interr...
movie_imdb_link              http://www.imdb.com/title/tt0093378/?ref_=fn_t...
num_user_for_reviews                                                        63
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+06
title_year                                                                1987
actor_2_facebook_likes                                                      63
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3557, dtype: object
color                                                                    Color
director_name                                                        Alan Alda
num_critic_for_reviews                                                       6
duration                                                                   107
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     146
actor_2_name                                                        Len Cariou
actor_1_facebook_likes                                                     804
gross                                                                      NaN
genres                                                            Comedy|Drama
actor_1_name                                                       Rita Moreno
movie_title                                                  The Four Seasons 
num_voted_users                                                           3157
cast_total_facebook_likes                                                 1285
actor_3_name                                                      Sandy Dennis
facenumber_in_poster                                                         2
plot_keywords                directed by star|friendship|reference to isaac...
movie_imdb_link              http://www.imdb.com/title/tt0082405/?ref_=fn_t...
num_user_for_reviews                                                        33
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                1981
actor_2_facebook_likes                                                     167
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       337
Name: 3558, dtype: object
color                                                                    Color
director_name                                                   Brian De Palma
num_critic_for_reviews                                                     121
duration                                                                   104
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     517
actor_2_name                                                   David Margulies
actor_1_facebook_likes                                                     754
gross                                                               3.1899e+07
genres                                                Mystery|Romance|Thriller
actor_1_name                                                   Angie Dickinson
movie_title                                                   Dressed to Kill 
num_voted_users                                                          23986
cast_total_facebook_likes                                                 2442
actor_3_name                                                       Nancy Allen
facenumber_in_poster                                                         0
plot_keywords                apartment|elevator|murder|psychiatrist|sunglasses
movie_imdb_link              http://www.imdb.com/title/tt0080661/?ref_=fn_t...
num_user_for_reviews                                                       201
language                                                               English
country                                                                    USA
content_rating                                                               X
budget                                                                 6.5e+06
title_year                                                                1980
actor_2_facebook_likes                                                     567
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3559, dtype: object
color                                                                    Color
director_name                                                  Stephen Sommers
num_critic_for_reviews                                                      14
duration                                                                   108
director_facebook_likes                                                    208
actor_3_facebook_likes                                                     689
actor_2_name                                                    Frances Conroy
actor_1_facebook_likes                                                     876
gross                                                              2.41036e+07
genres                                           Adventure|Comedy|Drama|Family
actor_1_name                                                  Curtis Armstrong
movie_title                                       The Adventures of Huck Finn 
num_voted_users                                                           6384
cast_total_facebook_likes                                                 4840
actor_3_name                                                        Anne Heche
facenumber_in_poster                                                         0
plot_keywords                         boy|lesson|mississippi river|river|slave
movie_imdb_link              http://www.imdb.com/title/tt0106223/?ref_=fn_t...
num_user_for_reviews                                                        54
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 6.5e+06
title_year                                                                1993
actor_2_facebook_likes                                                     827
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       391
Name: 3560, dtype: object
color                                                                    Color
director_name                                                       Doug Liman
num_critic_for_reviews                                                     137
duration                                                                   102
director_facebook_likes                                                    218
actor_3_facebook_likes                                                     376
actor_2_name                                                          Jay Mohr
actor_1_facebook_likes                                                     900
gross                                                              1.68423e+07
genres                                                            Comedy|Crime
actor_1_name                                                      Sarah Polley
movie_title                                                                Go 
num_voted_users                                                          59474
cast_total_facebook_likes                                                 2475
actor_3_name                                                        Scott Wolf
facenumber_in_poster                                                         3
plot_keywords                     drug deal|drugs|sex|sex on stairs|strip club
movie_imdb_link              http://www.imdb.com/title/tt0139239/?ref_=fn_t...
num_user_for_reviews                                                       418
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                1999
actor_2_facebook_likes                                                     563
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3561, dtype: object
color                                                                    Color
director_name                                                Nicole Holofcener
num_critic_for_reviews                                                     111
duration                                                                    88
director_facebook_likes                                                    132
actor_3_facebook_likes                                                     180
actor_2_name                                                      Marin Hinkle
actor_1_facebook_likes                                                     435
gross                                                              1.33671e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Greg Germann
movie_title                                                Friends with Money 
num_voted_users                                                          19715
cast_total_facebook_likes                                                 1140
actor_3_name                                                       Jake Cherry
facenumber_in_poster                                                         2
plot_keywords                friend|friendship|marital problem|money proble...
movie_imdb_link              http://www.imdb.com/title/tt0436331/?ref_=fn_t...
num_user_for_reviews                                                       166
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                2006
actor_2_facebook_likes                                                     230
imdb_score                                                                 5.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       515
Name: 3562, dtype: object
color                                                                    Color
director_name                                                      Robert Wise
num_critic_for_reviews                                                      57
duration                                                                   115
director_facebook_likes                                                    338
actor_3_facebook_likes                                                      45
actor_2_name                                                       Paula Kelly
actor_1_facebook_likes                                                     116
gross                                                                      NaN
genres                                                         Sci-Fi|Thriller
actor_1_name                                                       David Wayne
movie_title                                              The Andromeda Strain 
num_voted_users                                                          25857
cast_total_facebook_likes                                                  394
actor_3_name                                                    Eric Christmas
facenumber_in_poster                                                         0
plot_keywords                        alien|baby|new mexico|satellite|scientist
movie_imdb_link              http://www.imdb.com/title/tt0066769/?ref_=fn_t...
num_user_for_reviews                                                       171
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                 6.5e+06
title_year                                                                1971
actor_2_facebook_likes                                                     112
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3563, dtype: object
color                                                                    Color
director_name                                                    Louis Morneau
num_critic_for_reviews                                                      97
duration                                                                    91
director_facebook_likes                                                     38
actor_3_facebook_likes                                                      91
actor_2_name                                                        Bob Gunton
actor_1_facebook_likes                                                     730
gross                                                              1.01498e+07
genres                                                  Horror|Sci-Fi|Thriller
actor_1_name                                                              Leon
movie_title                                                              Bats 
num_voted_users                                                           8294
cast_total_facebook_likes                                                 1405
actor_3_name                                                       Ned Bellamy
facenumber_in_poster                                                         0
plot_keywords                animal attack|bat|creature feature|experiment|...
movie_imdb_link              http://www.imdb.com/title/tt0200469/?ref_=fn_t...
num_user_for_reviews                                                       160
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+06
title_year                                                                1999
actor_2_facebook_likes                                                     461
imdb_score                                                                 3.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                       342
Name: 3564, dtype: object
color                                                                    Color
director_name                                                    Caroline Link
num_critic_for_reviews                                                      73
duration                                                                   141
director_facebook_likes                                                     11
actor_3_facebook_likes                                                       8
actor_2_name                                                    Juliane Köhler
actor_1_facebook_likes                                                      56
gross                                                              6.17348e+06
genres                                                         Biography|Drama
actor_1_name                                                     Merab Ninidze
movie_title                                                 Nowhere in Africa 
num_voted_users                                                          10672
cast_total_facebook_likes                                                  105
actor_3_name                                                   Matthias Habich
facenumber_in_poster                                                         0
plot_keywords                                breasts|farm|jew|kenya|tween girl
movie_imdb_link              http://www.imdb.com/title/tt0161860/?ref_=fn_t...
num_user_for_reviews                                                        84
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2001
actor_2_facebook_likes                                                      36
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       802
Name: 3565, dtype: object
color                                                                    Color
director_name                                                    Steve McQueen
num_critic_for_reviews                                                     486
duration                                                                   101
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     726
actor_2_name                                                    Nicole Beharie
actor_1_facebook_likes                                                   13000
gross                                                               4.0003e+06
genres                                                                   Drama
actor_1_name                                                Michael Fassbender
movie_title                                                             Shame 
num_voted_users                                                         145395
cast_total_facebook_likes                                                15230
actor_3_name                                                  James Badge Dale
facenumber_in_poster                                                         0
plot_keywords                female frontal nudity|female nudity|male nudit...
movie_imdb_link              http://www.imdb.com/title/tt1723811/?ref_=fn_t...
num_user_for_reviews                                                       375
language                                                               English
country                                                                     UK
content_rating                                                           NC-17
budget                                                                 6.5e+06
title_year                                                                2011
actor_2_facebook_likes                                                     898
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     23000
Name: 3566, dtype: object
color                                                                    Color
director_name                                                   Matthew Vaughn
num_critic_for_reviews                                                     149
duration                                                                   105
director_facebook_likes                                                    905
actor_3_facebook_likes                                                     466
actor_2_name                                                     Sally Hawkins
actor_1_facebook_likes                                                   27000
gross                                                               2.3387e+06
genres                                                    Crime|Drama|Thriller
actor_1_name                                                         Tom Hardy
movie_title                                                        Layer Cake 
num_voted_users                                                         134070
cast_total_facebook_likes                                                29277
actor_3_name                                                     Jamie Foreman
facenumber_in_poster                                                         1
plot_keywords                                 cake|cocaine|drugs|pills|serbian
movie_imdb_link              http://www.imdb.com/title/tt0375912/?ref_=fn_t...
num_user_for_reviews                                                       263
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   4e+06
title_year                                                                2004
actor_2_facebook_likes                                                     594
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3567, dtype: object
color                                                                    Color
director_name                                             Sterling Van Wagenen
num_critic_for_reviews                                                       4
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     266
actor_2_name                                                      Eric Johnson
actor_1_facebook_likes                                                    1000
gross                                                              2.02485e+06
genres                                                           Drama|Western
actor_1_name                                                    Emily Podleski
movie_title                          The Work and the Glory II: American Zion 
num_voted_users                                                            564
cast_total_facebook_likes                                                 1942
actor_3_name                                                     Brenda Strong
facenumber_in_poster                                                         2
plot_keywords                estrangement|missouri|mormon|mormon church|mor...
movie_imdb_link              http://www.imdb.com/title/tt0457530/?ref_=fn_t...
num_user_for_reviews                                                        21
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 6.5e+06
title_year                                                                2005
actor_2_facebook_likes                                                     373
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                        19
Name: 3568, dtype: object
color                                                                    Color
director_name                                                   Zal Batmanglij
num_critic_for_reviews                                                     200
duration                                                                   116
director_facebook_likes                                                    129
actor_3_facebook_likes                                                     782
actor_2_name                                                      Julia Ormond
actor_1_facebook_likes                                                   10000
gross                                                               2.2683e+06
genres                                                          Drama|Thriller
actor_1_name                                               Alexander Skarsgård
movie_title                                                          The East 
num_voted_users                                                          41856
cast_total_facebook_likes                                                13180
actor_3_name                                                      Jason Ritter
facenumber_in_poster                                                         4
plot_keywords                anarchist|corporation|greedy institution|vomit...
movie_imdb_link              http://www.imdb.com/title/tt1869716/?ref_=fn_t...
num_user_for_reviews                                                       119
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                 6.5e+06
title_year                                                                2013
actor_2_facebook_likes                                                     918
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 3569, dtype: object
color                                                                    Color
director_name                                                    Michael Mayer
num_critic_for_reviews                                                      84
duration                                                                    97
director_facebook_likes                                                     15
actor_3_facebook_likes                                                     874
actor_2_name                                                       Matt Frewer
actor_1_facebook_likes                                                   18000
gross                                                              1.02902e+06
genres                                                           Drama|Romance
actor_1_name                                                      Robin Wright
movie_title                                    A Home at the End of the World 
num_voted_users                                                          12049
cast_total_facebook_likes                                                21107
actor_3_name                                                      Sissy Spacek
facenumber_in_poster                                                         2
plot_keywords                hand job|hugging|long hair|new york city|two m...
movie_imdb_link              http://www.imdb.com/title/tt0359423/?ref_=fn_t...
num_user_for_reviews                                                       135
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                2004
actor_2_facebook_likes                                                     986
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 3570, dtype: object
color                                                                    Color
director_name                                               Hans Petter Moland
num_critic_for_reviews                                                      28
duration                                                                   106
director_facebook_likes                                                     19
actor_3_facebook_likes                                                       0
actor_2_name                                                 Sara-Marie Maltha
actor_1_facebook_likes                                                     844
gross                                                                    64148
genres                                                                   Drama
actor_1_name                                                Charlotte Rampling
movie_title                                                          Aberdeen 
num_voted_users                                                           2601
cast_total_facebook_likes                                                  846
actor_3_name                                                 Stellan Skarsgård
facenumber_in_poster                                                         0
plot_keywords                               death|ferry|lawyer|norway|vomiting
movie_imdb_link              http://www.imdb.com/title/tt0168446/?ref_=fn_t...
num_user_for_reviews                                                        35
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                 6.5e+06
title_year                                                                2000
actor_2_facebook_likes                                                       2
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       260
Name: 3571, dtype: object
color                                                                    Color
director_name                                                    Oren Moverman
num_critic_for_reviews                                                     217
duration                                                                   105
director_facebook_likes                                                     38
actor_3_facebook_likes                                                     706
actor_2_name                                                      Yaya DaCosta
actor_1_facebook_likes                                                   12000
gross                                                                    66637
genres                                                       Drama|Romance|War
actor_1_name                                                     Steve Buscemi
movie_title                                                     The Messenger 
num_voted_users                                                          29608
cast_total_facebook_likes                                                14462
actor_3_name                                                     Eamonn Walker
facenumber_in_poster                                                         0
plot_keywords                captain|casualty notification|casualty notific...
movie_imdb_link              http://www.imdb.com/title/tt0790712/?ref_=fn_t...
num_user_for_reviews                                                        92
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                2009
actor_2_facebook_likes                                                     712
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3572, dtype: object
color                                                                    Color
director_name                                                        Ian Sharp
num_critic_for_reviews                                                      12
duration                                                                   102
director_facebook_likes                                                      9
actor_3_facebook_likes                                                     368
actor_2_name                                                        Jed Brophy
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                          Action|Adventure|Drama|Western
actor_1_name                                                      Ray Winstone
movie_title                                                           Tracker 
num_voted_users                                                           2892
cast_total_facebook_likes                                                 1904
actor_3_name                                                  Temuera Morrison
facenumber_in_poster                                                         0
plot_keywords                                                   one word title
movie_imdb_link              http://www.imdb.com/title/tt1414378/?ref_=fn_t...
num_user_for_reviews                                                        18
language                                                               English
country                                                            New Zealand
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                2010
actor_2_facebook_likes                                                     433
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       830
Name: 3573, dtype: object
color                                                          Black and White
director_name                                                    Anton Corbijn
num_critic_for_reviews                                                     183
duration                                                                   122
director_facebook_likes                                                    210
actor_3_facebook_likes                                                     471
actor_2_name                                                   Samantha Morton
actor_1_facebook_likes                                                     845
gross                                                                   871577
genres                                                   Biography|Drama|Music
actor_1_name                                                         Sam Riley
movie_title                                                           Control 
num_voted_users                                                          51353
cast_total_facebook_likes                                                 2614
actor_3_name                                              Alexandra Maria Lara
facenumber_in_poster                                                         1
plot_keywords                band|employment agency|singer|stage fright|sui...
movie_imdb_link              http://www.imdb.com/title/tt0421082/?ref_=fn_t...
num_user_for_reviews                                                       143
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 4.5e+06
title_year                                                                2007
actor_2_facebook_likes                                                     631
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 3574, dtype: object
color                                                                    Color
director_name                                                    James Cameron
num_critic_for_reviews                                                     204
duration                                                                   107
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     255
actor_2_name                                                    Brian Thompson
actor_1_facebook_likes                                                    2000
gross                                                                 3.84e+07
genres                                                           Action|Sci-Fi
actor_1_name                                                     Michael Biehn
movie_title                                                    The Terminator 
num_voted_users                                                         600266
cast_total_facebook_likes                                                 3582
actor_3_name                                                     Paul Winfield
facenumber_in_poster                                                         1
plot_keywords                cyborg|future war|robot|shootout in a police s...
movie_imdb_link              http://www.imdb.com/title/tt0088247/?ref_=fn_t...
num_user_for_reviews                                                       692
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                1984
actor_2_facebook_likes                                                     663
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     13000
Name: 3575, dtype: object
color                                                          Black and White
director_name                                                  Wolfgang Becker
num_critic_for_reviews                                                     153
duration                                                                   121
director_facebook_likes                                                     31
actor_3_facebook_likes                                                      43
actor_2_name                                                 Chulpan Khamatova
actor_1_facebook_likes                                                      65
gross                                                              4.06386e+06
genres                                                           Drama|Romance
actor_1_name                                                     Florian Lukas
movie_title                                                   Good Bye Lenin! 
num_voted_users                                                         114407
cast_total_facebook_likes                                                  200
actor_3_name                                                 Burghart Klaußner
facenumber_in_poster                                                         2
plot_keywords                coma|east germany|german democratic republic|g...
movie_imdb_link              http://www.imdb.com/title/tt0301357/?ref_=fn_t...
num_user_for_reviews                                                       225
language                                                                German
country                                                                Germany
content_rating                                                               R
budget                                                                 4.8e+06
title_year                                                                2003
actor_2_facebook_likes                                                      51
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 3576, dtype: object
color                                                                    Color
director_name                                                       Tom Hooper
num_critic_for_reviews                                                     145
duration                                                                    98
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      27
actor_2_name                                                      Mark Bazeley
actor_1_facebook_likes                                                    1000
gross                                                                   449558
genres                                                   Biography|Drama|Sport
actor_1_name                                                    Stephen Graham
movie_title                                                 The Damned United 
num_voted_users                                                          32307
cast_total_facebook_likes                                                 1163
actor_3_name                                                    Maurice Roëves
facenumber_in_poster                                                         2
plot_keywords                 cup|derby county|flashback|football|leeds united
movie_imdb_link              http://www.imdb.com/title/tt1226271/?ref_=fn_t...
num_user_for_reviews                                                        75
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2009
actor_2_facebook_likes                                                      54
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3577, dtype: object
color                                                                    Color
director_name                                                     Dan O'Bannon
num_critic_for_reviews                                                     203
duration                                                                   108
director_facebook_likes                                                    228
actor_3_facebook_likes                                                     358
actor_2_name                                                       Clu Gulager
actor_1_facebook_likes                                                     431
gross                                                                      NaN
genres                                                    Comedy|Horror|Sci-Fi
actor_1_name                                                    Linnea Quigley
movie_title                                     The Return of the Living Dead 
num_voted_users                                                          39856
cast_total_facebook_likes                                                 2020
actor_3_name                                                  Beverly Randolph
facenumber_in_poster                                                         0
plot_keywords                crematorium|female frontal nudity|naked dead w...
movie_imdb_link              http://www.imdb.com/title/tt0089907/?ref_=fn_t...
num_user_for_reviews                                                       300
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+06
title_year                                                                1985
actor_2_facebook_likes                                                     426
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3578, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      10
duration                                                                    55
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                       5
actor_2_name                                                 Fortunato Cerlino
actor_1_facebook_likes                                                      18
gross                                                                      NaN
genres                                                    Crime|Drama|Thriller
actor_1_name                                                 Maria Pia Calzone
movie_title                                              Gomorrah             
num_voted_users                                                           9638
cast_total_facebook_likes                                                   39
actor_3_name                                                     Marco D'Amore
facenumber_in_poster                                                         5
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2049116/?ref_=fn_t...
num_user_for_reviews                                                        25
language                                                               Italian
country                                                                  Italy
content_rating                                                           TV-MA
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                       9
imdb_score                                                                 8.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3579, dtype: object
color                                                                    Color
director_name                                                      Kevin Smith
num_critic_for_reviews                                                      93
duration                                                                   123
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     781
actor_2_name                                                       Jason Mewes
actor_1_facebook_likes                                                    1000
gross                                                              2.12256e+06
genres                                                          Comedy|Romance
actor_1_name                                                      Ethan Suplee
movie_title                                                          Mallrats 
num_voted_users                                                          99033
cast_total_facebook_likes                                                 3254
actor_3_name                                                 Joey Lauren Adams
facenumber_in_poster                                                         6
plot_keywords                comic|ex girlfriend|jay and silent bob|mall|te...
movie_imdb_link              http://www.imdb.com/title/tt0113749/?ref_=fn_t...
num_user_for_reviews                                                       434
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1995
actor_2_facebook_likes                                                     898
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3580, dtype: object
color                                                                    Color
director_name                                                   Randal Kleiser
num_critic_for_reviews                                                     124
duration                                                                   110
director_facebook_likes                                                    116
actor_3_facebook_likes                                                     898
actor_2_name                                                 Stockard Channing
actor_1_facebook_likes                                                    1000
gross                                                               1.8136e+08
genres                                                         Musical|Romance
actor_1_name                                                Olivia Newton-John
movie_title                                                            Grease 
num_voted_users                                                         170027
cast_total_facebook_likes                                                 5127
actor_3_name                                                        Sid Caesar
facenumber_in_poster                                                         2
plot_keywords                automobile racing|boyfriend girlfriend relatio...
movie_imdb_link              http://www.imdb.com/title/tt0077631/?ref_=fn_t...
num_user_for_reviews                                                       350
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+06
title_year                                                                1978
actor_2_facebook_likes                                                     944
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 3581, dtype: object
color                                                                    Color
director_name                                                     Oliver Stone
num_critic_for_reviews                                                     120
duration                                                                   120
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     576
actor_2_name                                                      Tom Berenger
actor_1_facebook_likes                                                   40000
gross                                                              1.37963e+08
genres                                                               Drama|War
actor_1_name                                                       Johnny Depp
movie_title                                                           Platoon 
num_voted_users                                                         291603
cast_total_facebook_likes                                                42028
actor_3_name                                                      Kevin Dillon
facenumber_in_poster                                                         0
plot_keywords                      1960s|famous score|hero|vietnam|vietnam war
movie_imdb_link              http://www.imdb.com/title/tt0091763/?ref_=fn_t...
num_user_for_reviews                                                       505
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1986
actor_2_facebook_likes                                                     854
imdb_score                                                                 8.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                      9000
Name: 3582, dtype: object
color                                                                    Color
director_name                                                    Michael Moore
num_critic_for_reviews                                                     288
duration                                                                   122
director_facebook_likes                                                    909
actor_3_facebook_likes                                                     282
actor_2_name                                                     Stevie Wonder
actor_1_facebook_likes                                                     503
gross                                                              1.19078e+08
genres                                                   Documentary|Drama|War
actor_1_name                                                   Osama bin Laden
movie_title                                                   Fahrenheit 9/11 
num_voted_users                                                         113152
cast_total_facebook_likes                                                 1448
actor_3_name                                                      Ricky Martin
facenumber_in_poster                                                         0
plot_keywords                anti war|interview|iraq|paranoia|war on terrorism
movie_imdb_link              http://www.imdb.com/title/tt0361596/?ref_=fn_t...
num_user_for_reviews                                                      1416
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2004
actor_2_facebook_likes                                                     328
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3583, dtype: object
color                                                                    Color
director_name                                                  George Roy Hill
num_critic_for_reviews                                                     130
duration                                                                   110
director_facebook_likes                                                    131
actor_3_facebook_likes                                                     399
actor_2_name                                                       Ted Cassidy
actor_1_facebook_likes                                                     640
gross                                                              1.02309e+08
genres                                           Biography|Crime|Drama|Western
actor_1_name                                                    Katharine Ross
movie_title                                Butch Cassidy and the Sundance Kid 
num_voted_users                                                         152089
cast_total_facebook_likes                                                 2169
actor_3_name                                                      Kenneth Mars
facenumber_in_poster                                                         1
plot_keywords                                  bolivia|gang|outlaw|posse|train
movie_imdb_link              http://www.imdb.com/title/tt0064115/?ref_=fn_t...
num_user_for_reviews                                                       309
language                                                               English
country                                                                    USA
content_rating                                                               M
budget                                                                   6e+06
title_year                                                                1969
actor_2_facebook_likes                                                     566
imdb_score                                                                 8.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3584, dtype: object
color                                                                    Color
director_name                                                 Robert Stevenson
num_critic_for_reviews                                                     145
duration                                                                   139
director_facebook_likes                                                     55
actor_3_facebook_likes                                                     266
actor_2_name                                                      Glynis Johns
actor_1_facebook_likes                                                     382
gross                                                                1.023e+08
genres                                           Comedy|Family|Fantasy|Musical
actor_1_name                                                           Ed Wynn
movie_title                                                      Mary Poppins 
num_voted_users                                                         107408
cast_total_facebook_likes                                                 2045
actor_3_name                                                   Elsa Lanchester
facenumber_in_poster                                                         2
plot_keywords                banker|female protagonist|live action and anim...
movie_imdb_link              http://www.imdb.com/title/tt0058331/?ref_=fn_t...
num_user_for_reviews                                                       259
language                                                               English
country                                                                    USA
content_rating                                                        Approved
budget                                                                   6e+06
title_year                                                                1964
actor_2_facebook_likes                                                     279
imdb_score                                                                 7.8
aspect_ratio                                                              1.66
movie_facebook_likes                                                         0
Name: 3585, dtype: object
color                                                                    Color
director_name                                                   Robert Redford
num_critic_for_reviews                                                      62
duration                                                                   124
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     535
actor_2_name                                                Elizabeth McGovern
actor_1_facebook_likes                                                    2000
gross                                                                 5.48e+07
genres                                                                   Drama
actor_1_name                                                      Adam Baldwin
movie_title                                                   Ordinary People 
num_voted_users                                                          35130
cast_total_facebook_likes                                                 5122
actor_3_name                                                       Judd Hirsch
facenumber_in_poster                                                         3
plot_keywords                               choir|death|friend|suicide|therapy
movie_imdb_link              http://www.imdb.com/title/tt0081283/?ref_=fn_t...
num_user_for_reviews                                                       283
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1980
actor_2_facebook_likes                                                     553
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3586, dtype: object
color                                                                    Color
director_name                                                     Frank Coraci
num_critic_for_reviews                                                     188
duration                                                                   120
director_facebook_likes                                                    153
actor_3_facebook_likes                                                     447
actor_2_name                                                      Steve Coogan
actor_1_facebook_likes                                                    1000
gross                                                              2.40042e+07
genres                                                 Action|Adventure|Comedy
actor_1_name                                                     Jim Broadbent
movie_title                                       Around the World in 80 Days 
num_voted_users                                                          68722
cast_total_facebook_likes                                                 3175
actor_3_name                                                  Cécile De France
facenumber_in_poster                                                         0
plot_keywords                19th century|around the world|inventor|martial...
movie_imdb_link              http://www.imdb.com/title/tt0327437/?ref_=fn_t...
num_user_for_reviews                                                       191
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 1.1e+08
title_year                                                                2004
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3587, dtype: object
color                                                                    Color
director_name                                                   Jerome Robbins
num_critic_for_reviews                                                     120
duration                                                                   152
director_facebook_likes                                                     34
actor_3_facebook_likes                                                     249
actor_2_name                                                   George Chakiris
actor_1_facebook_likes                                                     804
gross                                                                4.365e+07
genres                                    Crime|Drama|Musical|Romance|Thriller
actor_1_name                                                       Rita Moreno
movie_title                                                   West Side Story 
num_voted_users                                                          71919
cast_total_facebook_likes                                                 1802
actor_3_name                                                    Richard Beymer
facenumber_in_poster                                                         0
plot_keywords                    dance|gang|new york city|puerto rican|tragedy
movie_imdb_link              http://www.imdb.com/title/tt0055614/?ref_=fn_t...
num_user_for_reviews                                                       316
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                   6e+06
title_year                                                                1961
actor_2_facebook_likes                                                     271
imdb_score                                                                 7.6
aspect_ratio                                                               2.2
movie_facebook_likes                                                         0
Name: 3588, dtype: object
color                                                                    Color
director_name                                                     Harold Ramis
num_critic_for_reviews                                                      71
duration                                                                    98
director_facebook_likes                                                  11000
actor_3_facebook_likes                                                     484
actor_2_name                                                Rodney Dangerfield
actor_1_facebook_likes                                                   13000
gross                                                                 3.98e+07
genres                                                            Comedy|Sport
actor_1_name                                                       Bill Murray
movie_title                                                        Caddyshack 
num_voted_users                                                          81599
cast_total_facebook_likes                                                14921
actor_3_name                                                Brian Doyle-Murray
facenumber_in_poster                                                         3
plot_keywords                     caddy|country club|golf course|gopher|nudity
movie_imdb_link              http://www.imdb.com/title/tt0080487/?ref_=fn_t...
num_user_for_reviews                                                       250
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1980
actor_2_facebook_likes                                                     573
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3589, dtype: object
color                                                                    Color
director_name                                                    Gary Hardwick
num_critic_for_reviews                                                      52
duration                                                                   106
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     578
actor_2_name                                                       Tatyana Ali
actor_1_facebook_likes                                                    3000
gross                                                              2.74574e+07
genres                                                            Comedy|Drama
actor_1_name                                                        Julie Benz
movie_title                                                      The Brothers 
num_voted_users                                                           3198
cast_total_facebook_likes                                                 6419
actor_3_name                                                     Jenifer Lewis
facenumber_in_poster                                                         4
plot_keywords                african american|commitment|friend|friendship|...
movie_imdb_link              http://www.imdb.com/title/tt0250274/?ref_=fn_t...
num_user_for_reviews                                                        43
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2001
actor_2_facebook_likes                                                     685
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       478
Name: 3590, dtype: object
color                                                                    Color
director_name                                                    Rick Famuyiwa
num_critic_for_reviews                                                      18
duration                                                                   106
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     328
actor_2_name                                                      Tamala Jones
actor_1_facebook_likes                                                     865
gross                                                              2.50476e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                         Omar Epps
movie_title                                                          The Wood 
num_voted_users                                                           6585
cast_total_facebook_likes                                                 2724
actor_3_name                                                  Richard T. Jones
facenumber_in_poster                                                         0
plot_keywords                flashback|friendship|public nudity|shower|wedding
movie_imdb_link              http://www.imdb.com/title/tt0161100/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1999
actor_2_facebook_likes                                                     405
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       990
Name: 3591, dtype: object
color                                                                    Color
director_name                                                     Bryan Singer
num_critic_for_reviews                                                     162
duration                                                                   106
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     574
actor_2_name                                                  Chazz Palminteri
actor_1_facebook_likes                                                   18000
gross                                                              2.32723e+07
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                      Kevin Spacey
movie_title                                                The Usual Suspects 
num_voted_users                                                         740918
cast_total_facebook_likes                                                20821
actor_3_name                                                      Kevin Pollak
facenumber_in_poster                                                         4
plot_keywords                     criminal|dirty cop|flashback|limping|suspect
movie_imdb_link              http://www.imdb.com/title/tt0114814/?ref_=fn_t...
num_user_for_reviews                                                      1182
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1995
actor_2_facebook_likes                                                     979
imdb_score                                                                 8.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     28000
Name: 3592, dtype: object
color                                                          Black and White
director_name                                                  Stephen Hopkins
num_critic_for_reviews                                                      88
duration                                                                    89
director_facebook_likes                                                     81
actor_3_facebook_likes                                                      92
actor_2_name                                                   Kelly Jo Minter
actor_1_facebook_likes                                                     321
gross                                                              2.21684e+07
genres                                         Fantasy|Horror|Romance|Thriller
actor_1_name                                                       Lisa Wilcox
movie_title                      A Nightmare on Elm Street 5: The Dream Child 
num_voted_users                                                          29659
cast_total_facebook_likes                                                  584
actor_3_name                                                 Matthew Borlenghi
facenumber_in_poster                                                         0
plot_keywords                        child|comic book|dream|murderer|nightmare
movie_imdb_link              http://www.imdb.com/title/tt0097981/?ref_=fn_t...
num_user_for_reviews                                                       227
language                                                               English
country                                                                    USA
content_rating                                                               X
budget                                                                   8e+06
title_year                                                                1989
actor_2_facebook_likes                                                     101
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 3593, dtype: object
color                                                                    Color
director_name                                                      Walt Becker
num_critic_for_reviews                                                      96
duration                                                                    94
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     583
actor_2_name                                                  Curtis Armstrong
actor_1_facebook_likes                                                   16000
gross                                                              2.10053e+07
genres                                                          Comedy|Romance
actor_1_name                                                     Ryan Reynolds
movie_title                                         Van Wilder: Party Liaison 
num_voted_users                                                          89128
cast_total_facebook_likes                                                19341
actor_3_name                                                      Erik Estrada
facenumber_in_poster                                                         0
plot_keywords                              college|love|party|reporter|tuition
movie_imdb_link              http://www.imdb.com/title/tt0283111/?ref_=fn_t...
num_user_for_reviews                                                       258
language                                                               English
country                                                                Germany
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2002
actor_2_facebook_likes                                                     876
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3594, dtype: object
color                                                                    Color
director_name                                                 Darren Aronofsky
num_critic_for_reviews                                                     391
duration                                                                   109
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     120
actor_2_name                                                        John D'Leo
actor_1_facebook_likes                                                    1000
gross                                                              2.62366e+07
genres                                                             Drama|Sport
actor_1_name                                                     Mark Margolis
movie_title                                                      The Wrestler 
num_voted_users                                                         251349
cast_total_facebook_likes                                                 1582
actor_3_name                                                        Ajay Naidu
facenumber_in_poster                                                         0
plot_keywords                heart attack|stripper|supermarket|wrestler|wre...
movie_imdb_link              http://www.imdb.com/title/tt1125849/?ref_=fn_t...
num_user_for_reviews                                                       547
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2008
actor_2_facebook_likes                                                     245
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 3595, dtype: object
color                                                                    Color
director_name                                                       King Vidor
num_critic_for_reviews                                                      32
duration                                                                   144
director_facebook_likes                                                     54
actor_3_facebook_likes                                                     332
actor_2_name                                                      Lillian Gish
actor_1_facebook_likes                                                     469
gross                                                                 2.04e+07
genres                                                   Drama|Romance|Western
actor_1_name                                                     Joseph Cotten
movie_title                                                   Duel in the Sun 
num_voted_users                                                           6304
cast_total_facebook_likes                                                 2037
actor_3_name                                                    Jennifer Jones
facenumber_in_poster                                                         0
plot_keywords                box office hit|half breed|infidelity|shooting|...
movie_imdb_link              http://www.imdb.com/title/tt0038499/?ref_=fn_t...
num_user_for_reviews                                                        87
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                   8e+06
title_year                                                                1946
actor_2_facebook_likes                                                     436
imdb_score                                                                 6.9
aspect_ratio                                                              1.37
movie_facebook_likes                                                       403
Name: 3596, dtype: object
color                                                                    Color
director_name                                                Christopher Guest
num_critic_for_reviews                                                     119
duration                                                                    90
director_facebook_likes                                                    378
actor_3_facebook_likes                                                     658
actor_2_name                                                  Catherine O'Hara
actor_1_facebook_likes                                                     957
gross                                                              1.86212e+07
genres                                                                  Comedy
actor_1_name                                              John Michael Higgins
movie_title                                                      Best in Show 
num_voted_users                                                          45859
cast_total_facebook_likes                                                 4611
actor_3_name                                                    Michael McKean
facenumber_in_poster                                                         9
plot_keywords                dog show|gay|gay character|gay couple|gay inte...
movie_imdb_link              http://www.imdb.com/title/tt0218839/?ref_=fn_t...
num_user_for_reviews                                                       340
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+06
title_year                                                                2000
actor_2_facebook_likes                                                     925
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3597, dtype: object
color                                                                    Color
director_name                                                   John Carpenter
num_critic_for_reviews                                                     201
duration                                                                   106
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     381
actor_2_name                                                  Adrienne Barbeau
actor_1_facebook_likes                                                     742
gross                                                              2.52447e+07
genres                                                           Action|Sci-Fi
actor_1_name                                                  Donald Pleasence
movie_title                                              Escape from New York 
num_voted_users                                                          91017
cast_total_facebook_likes                                                 2270
actor_3_name                                                        Tom Atkins
facenumber_in_poster                                                         1
plot_keywords                             1990s|police|prison|rescue|year 1997
movie_imdb_link              http://www.imdb.com/title/tt0082340/?ref_=fn_t...
num_user_for_reviews                                                       284
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1981
actor_2_facebook_likes                                                     602
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3598, dtype: object
color                                                                    Color
director_name                                                        Spike Lee
num_critic_for_reviews                                                      22
duration                                                                   121
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     182
actor_2_name                                                       Ossie Davis
actor_1_facebook_likes                                                     413
gross                                                              1.45458e+07
genres                                                    Comedy|Drama|Musical
actor_1_name                                             Tisha Campbell-Martin
movie_title                                                       School Daze 
num_voted_users                                                           4756
cast_total_facebook_likes                                                 1284
actor_3_name                                                         Bill Nunn
facenumber_in_poster                                                         4
plot_keywords                beauty salon|black college|college|fraternity|...
movie_imdb_link              http://www.imdb.com/title/tt0096054/?ref_=fn_t...
num_user_for_reviews                                                        38
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                1988
actor_2_facebook_likes                                                     282
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       624
Name: 3599, dtype: object
color                                                                    Color
director_name                                                      Fred Savage
num_critic_for_reviews                                                      52
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     405
actor_2_name                                                Brian Doyle-Murray
actor_1_facebook_likes                                                     555
gross                                                              1.32353e+07
genres                                                           Comedy|Family
actor_1_name                                                     Lochlyn Munro
movie_title                                                    Daddy Day Camp 
num_voted_users                                                          12339
cast_total_facebook_likes                                                 1752
actor_3_name                                                      Tamala Jones
facenumber_in_poster                                                         2
plot_keywords                competition|estranged father|skunk|summer camp...
movie_imdb_link              http://www.imdb.com/title/tt0462244/?ref_=fn_t...
num_user_for_reviews                                                        32
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+06
title_year                                                                2007
actor_2_facebook_likes                                                     484
imdb_score                                                                 2.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       256
Name: 3600, dtype: object
color                                                                    Color
director_name                                                Sammo Kam-Bo Hung
num_critic_for_reviews                                                      63
duration                                                                    86
director_facebook_likes                                                    472
actor_3_facebook_likes                                                      64
actor_2_name                                                    Richard Norton
actor_1_facebook_likes                                                     472
gross                                                              1.26742e+07
genres                                                     Action|Comedy|Crime
actor_1_name                                                 Sammo Kam-Bo Hung
movie_title                                                      Mr. Nice Guy 
num_voted_users                                                          19774
cast_total_facebook_likes                                                  773
actor_3_name                                                    Rachel Blakely
facenumber_in_poster                                                         1
plot_keywords                                    chef|cook|drugs|gang|reporter
movie_imdb_link              http://www.imdb.com/title/tt0117786/?ref_=fn_t...
num_user_for_reviews                                                        70
language                                                               English
country                                                              Hong Kong
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                1997
actor_2_facebook_likes                                                     155
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       355
Name: 3601, dtype: object
color                                                                    Color
director_name                                                Christopher Guest
num_critic_for_reviews                                                      97
duration                                                                    91
director_facebook_likes                                                    378
actor_3_facebook_likes                                                     345
actor_2_name                                                 Christopher Guest
actor_1_facebook_likes                                                     658
gross                                                              1.75089e+07
genres                                                            Comedy|Music
actor_1_name                                                    Michael McKean
movie_title                                                     A Mighty Wind 
num_voted_users                                                          22408
cast_total_facebook_likes                                                 1660
actor_3_name                                                      Laura Harris
facenumber_in_poster                                                         0
plot_keywords                concert|mockumentary|musician|new york city|si...
movie_imdb_link              http://www.imdb.com/title/tt0310281/?ref_=fn_t...
num_user_for_reviews                                                       272
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2003
actor_2_facebook_likes                                                     378
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3602, dtype: object
color                                                                    Color
director_name                                                    Donald Petrie
num_critic_for_reviews                                                      34
duration                                                                   104
director_facebook_likes                                                     80
actor_3_facebook_likes                                                     658
actor_2_name                                                       Lili Taylor
actor_1_facebook_likes                                                    8000
gross                                                              1.27932e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Julia Roberts
movie_title                                                      Mystic Pizza 
num_voted_users                                                          18286
cast_total_facebook_likes                                                10430
actor_3_name                                                  Conchata Ferrell
facenumber_in_poster                                                         4
plot_keywords                commitment|marriage|pizza|title appears in wri...
movie_imdb_link              http://www.imdb.com/title/tt0095690/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1988
actor_2_facebook_likes                                                     960
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3603, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      10
duration                                                                   NaN
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     502
actor_2_name                                                Tuppence Middleton
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                               Drama|History|Romance|War
actor_1_name                                                     Jim Broadbent
movie_title                                           War & Peace             
num_voted_users                                                           9277
cast_total_facebook_likes                                                 4528
actor_3_name                                                        Lily James
facenumber_in_poster                                                         1
plot_keywords                   male frontal nudity|male nudity|tv mini series
movie_imdb_link              http://www.imdb.com/title/tt3910804/?ref_=fn_t...
num_user_for_reviews                                                        44
language                                                               English
country                                                                     UK
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     888
imdb_score                                                                 8.2
aspect_ratio                                                                16
movie_facebook_likes                                                     11000
Name: 3604, dtype: object
color                                                                    Color
director_name                                                     Peter Howitt
num_critic_for_reviews                                                      88
duration                                                                    99
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     161
actor_2_name                                                     Kevin McNally
actor_1_facebook_likes                                                     711
gross                                                              1.18835e+07
genres                                            Comedy|Drama|Fantasy|Romance
actor_1_name                                                Jeanne Tripplehorn
movie_title                                                     Sliding Doors 
num_voted_users                                                          52805
cast_total_facebook_likes                                                 1462
actor_3_name                                                        John Lynch
facenumber_in_poster                                                         1
plot_keywords                alternative reality|multiple outcomes|parallel...
movie_imdb_link              http://www.imdb.com/title/tt0120148/?ref_=fn_t...
num_user_for_reviews                                                       278
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                1998
actor_2_facebook_likes                                                     427
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3605, dtype: object
color                                                                    Color
director_name                                                   Rusty Cundieff
num_critic_for_reviews                                                      25
duration                                                                    98
director_facebook_likes                                                     38
actor_3_facebook_likes                                                     360
actor_2_name                                             Clarence Williams III
actor_1_facebook_likes                                                    1000
gross                                                              1.17979e+07
genres                                                  Comedy|Horror|Thriller
actor_1_name                                                    Corbin Bernsen
movie_title                                               Tales from the Hood 
num_voted_users                                                           4582
cast_total_facebook_likes                                                 3221
actor_3_name                                                  David Alan Grier
facenumber_in_poster                                                         0
plot_keywords                child abuse|death|drugs|ku klux klan|police br...
movie_imdb_link              http://www.imdb.com/title/tt0114609/?ref_=fn_t...
num_user_for_reviews                                                        52
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1995
actor_2_facebook_likes                                                     475
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       985
Name: 3606, dtype: object
color                                                                    Color
director_name                                                  Kevin Macdonald
num_critic_for_reviews                                                     252
duration                                                                   121
director_facebook_likes                                                    162
actor_3_facebook_likes                                                      25
actor_2_name                                                    Simon McBurney
actor_1_facebook_likes                                                    1000
gross                                                              1.76059e+07
genres                                        Biography|Drama|History|Thriller
actor_1_name                                                     David Oyelowo
movie_title                                         The Last King of Scotland 
num_voted_users                                                         145580
cast_total_facebook_likes                                                 1184
actor_3_name                                               Abby Mukiibi Nkaaga
facenumber_in_poster                                                         1
plot_keywords                      1970s|assassination|doctor|scottish|ugandan
movie_imdb_link              http://www.imdb.com/title/tt0455590/?ref_=fn_t...
num_user_for_reviews                                                       351
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2006
actor_2_facebook_likes                                                     149
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3607, dtype: object
color                                                                    Color
director_name                                         Dominique Othenin-Girard
num_critic_for_reviews                                                     137
duration                                                                    96
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     120
actor_2_name                                                      Tamara Glynn
actor_1_facebook_likes                                                     742
gross                                                              1.16423e+07
genres                                                         Horror|Thriller
actor_1_name                                                  Donald Pleasence
movie_title                                                       Halloween 5 
num_voted_users                                                          22929
cast_total_facebook_likes                                                 1308
actor_3_name                                                        Troy Evans
facenumber_in_poster                                                         1
plot_keywords                  cat|halloween|kitten|michael myers|psychotronic
movie_imdb_link              http://www.imdb.com/title/tt0097474/?ref_=fn_t...
num_user_for_reviews                                                       287
language                                                               English
country                                                                    USA
content_rating                                                               X
budget                                                                   3e+06
title_year                                                                1989
actor_2_facebook_likes                                                     256
imdb_score                                                                 5.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       926
Name: 3608, dtype: object
color                                                                    Color
director_name                                                Richard Linklater
num_critic_for_reviews                                                     231
duration                                                                    99
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      84
actor_2_name                                                     Brandon Smith
actor_1_facebook_likes                                                   11000
gross                                                              9.20319e+06
genres                                                      Comedy|Crime|Drama
actor_1_name                                               Matthew McConaughey
movie_title                                                            Bernie 
num_voted_users                                                          45396
cast_total_facebook_likes                                                11328
actor_3_name                                                         Rick Dial
facenumber_in_poster                                                         1
plot_keywords                         funeral|stockbroker|texas|vacation|widow
movie_imdb_link              http://www.imdb.com/title/tt1704573/?ref_=fn_t...
num_user_for_reviews                                                       136
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+06
title_year                                                                2011
actor_2_facebook_likes                                                     106
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     15000
Name: 3609, dtype: object
color                                                                    Color
director_name                                            Jean-Jacques Mantello
num_critic_for_reviews                                                       9
duration                                                                    42
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     NaN
actor_2_name                                                      Daryl Hannah
actor_1_facebook_likes                                                     844
gross                                                              7.51888e+06
genres                                             Adventure|Documentary|Short
actor_1_name                                                Charlotte Rampling
movie_title                       Dolphins and Whales 3D: Tribes of the Ocean 
num_voted_users                                                            172
cast_total_facebook_likes                                                  844
actor_3_name                                                               NaN
facenumber_in_poster                                                         0
plot_keywords                3d in title|animal in title|digit in title|dol...
movie_imdb_link              http://www.imdb.com/title/tt0996382/?ref_=fn_t...
num_user_for_reviews                                                         5
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                   6e+06
title_year                                                                2008
actor_2_facebook_likes                                                       0
imdb_score                                                                 6.5
aspect_ratio                                                              1.78
movie_facebook_likes                                                        28
Name: 3610, dtype: object
color                                                                    Color
director_name                                                        Ed Harris
num_critic_for_reviews                                                     115
duration                                                                   122
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     221
actor_2_name                                                          Bud Cort
actor_1_facebook_likes                                                     697
gross                                                              8.59691e+06
genres                                                         Biography|Drama
actor_1_name                                                        John Heard
movie_title                                                           Pollock 
num_voted_users                                                          23023
cast_total_facebook_likes                                                 1517
actor_3_name                                                       Amy Madigan
facenumber_in_poster                                                         0
plot_keywords                      1940s|artist|drinking|life magazine|painter
movie_imdb_link              http://www.imdb.com/title/tt0183659/?ref_=fn_t...
num_user_for_reviews                                                       148
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2000
actor_2_facebook_likes                                                     394
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3611, dtype: object
color                                                                    Color
director_name                                               Risa Bramon Garcia
num_critic_for_reviews                                                      67
duration                                                                   101
director_facebook_likes                                                    112
actor_3_facebook_likes                                                     612
actor_2_name                                                    Dave Chappelle
actor_1_facebook_likes                                                    1000
gross                                                              6.85164e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                  Janeane Garofalo
movie_title                                                    200 Cigarettes 
num_voted_users                                                          13010
cast_total_facebook_likes                                                 2697
actor_3_name                                                     Gaby Hoffmann
facenumber_in_poster                                                         5
plot_keywords                       bartender|friend|new year's eve|party|punk
movie_imdb_link              http://www.imdb.com/title/tt0137338/?ref_=fn_t...
num_user_for_reviews                                                       182
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1999
actor_2_facebook_likes                                                     744
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3612, dtype: object
color                                                                    Color
director_name                                                    Brian Klugman
num_critic_for_reviews                                                     216
duration                                                                   102
director_facebook_likes                                                     49
actor_3_facebook_likes                                                   10000
actor_2_name                                                    Bradley Cooper
actor_1_facebook_likes                                                   24000
gross                                                              1.14349e+07
genres                                          Drama|Mystery|Romance|Thriller
actor_1_name                                                      J.K. Simmons
movie_title                                                         The Words 
num_voted_users                                                          59637
cast_total_facebook_likes                                                51355
actor_3_name                                                      Olivia Wilde
facenumber_in_poster                                                         1
plot_keywords                         american in paris|book|love|novel|writer
movie_imdb_link              http://www.imdb.com/title/tt1840417/?ref_=fn_t...
num_user_for_reviews                                                       130
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+06
title_year                                                                2012
actor_2_facebook_likes                                                   14000
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     21000
Name: 3613, dtype: object
color                                                                    Color
director_name                                                    Matt Piedmont
num_critic_for_reviews                                                     133
duration                                                                    84
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     546
actor_2_name                                                   Adrian Martinez
actor_1_facebook_likes                                                    8000
gross                                                              5.89524e+06
genres                                                          Comedy|Western
actor_1_name                                                      Will Ferrell
movie_title                                                  Casa de mi Padre 
num_voted_users                                                          17169
cast_total_facebook_likes                                                10123
actor_3_name                                                    Luis E. Carazo
facenumber_in_poster                                                         1
plot_keywords                absurd humor|drug lord|mexico|ranch|spaghetti ...
movie_imdb_link              http://www.imdb.com/title/tt1702425/?ref_=fn_t...
num_user_for_reviews                                                        70
language                                                               Spanish
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2012
actor_2_facebook_likes                                                     806
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                      9000
Name: 3614, dtype: object
color                                                                    Color
director_name                                               Raymond De Felitta
num_critic_for_reviews                                                     149
duration                                                                   104
director_facebook_likes                                                     20
actor_3_facebook_likes                                                     130
actor_2_name                                                      Curtiss Cook
actor_1_facebook_likes                                                    3000
gross                                                              6.67071e+06
genres                                                            Comedy|Drama
actor_1_name                                                       Ezra Miller
movie_title                                                       City Island 
num_voted_users                                                          27301
cast_total_facebook_likes                                                 3825
actor_3_name                                             Dominik García-Lorido
facenumber_in_poster                                                         6
plot_keywords                anger|family reunion|father son reunion|huggin...
movie_imdb_link              http://www.imdb.com/title/tt1174730/?ref_=fn_t...
num_user_for_reviews                                                       101
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+06
title_year                                                                2009
actor_2_facebook_likes                                                     591
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3615, dtype: object
color                                                                    Color
director_name                                            John Michael McDonagh
num_critic_for_reviews                                                     261
duration                                                                    96
director_facebook_likes                                                     51
actor_3_facebook_likes                                                      28
actor_2_name                                                 Fionnula Flanagan
actor_1_facebook_likes                                                    3000
gross                                                              5.35977e+06
genres                                                   Comedy|Crime|Thriller
actor_1_name                                                       Don Cheadle
movie_title                                                         The Guard 
num_voted_users                                                          64794
cast_total_facebook_likes                                                 3569
actor_3_name                                                          Wale Ojo
facenumber_in_poster                                                         0
plot_keywords                boat on fire|drug smuggling|fbi|fbi agent|smal...
movie_imdb_link              http://www.imdb.com/title/tt1540133/?ref_=fn_t...
num_user_for_reviews                                                       131
language                                                               English
country                                                                Ireland
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2011
actor_2_facebook_likes                                                     482
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     17000
Name: 3616, dtype: object
color                                                                    Color
director_name                                                        Deb Hagan
num_critic_for_reviews                                                      42
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     664
actor_2_name                                                         Alona Tal
actor_1_facebook_likes                                                    1000
gross                                                              4.69392e+06
genres                                                                  Comedy
actor_1_name                                                        Drake Bell
movie_title                                                           College 
num_voted_users                                                          11011
cast_total_facebook_likes                                                 4484
actor_3_name                                                     Haley Bennett
facenumber_in_poster                                                         0
plot_keywords                college|face slap|high school|loss of virginit...
movie_imdb_link              http://www.imdb.com/title/tt0844671/?ref_=fn_t...
num_user_for_reviews                                                        78
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                2008
actor_2_facebook_likes                                                    1000
imdb_score                                                                 4.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       422
Name: 3617, dtype: object
color                                                                    Color
director_name                                                    Sofia Coppola
num_critic_for_reviews                                                     152
duration                                                                    90
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     826
actor_2_name                                                   Kathleen Turner
actor_1_facebook_likes                                                    4000
gross                                                              4.85948e+06
genres                                                           Drama|Romance
actor_1_name                                                     Kirsten Dunst
movie_title                                               The Virgin Suicides 
num_voted_users                                                         116910
cast_total_facebook_likes                                                 7103
actor_3_name                                                       Scott Glenn
facenumber_in_poster                                                         0
plot_keywords                   catholic|five sisters|isolation|school|suicide
movie_imdb_link              http://www.imdb.com/title/tt0159097/?ref_=fn_t...
num_user_for_reviews                                                       520
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                1999
actor_2_facebook_likes                                                     899
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3618, dtype: object
color                                                                    Color
director_name                                                      Mark Herman
num_critic_for_reviews                                                      64
duration                                                                    97
director_facebook_likes                                                     39
actor_3_facebook_likes                                                     286
actor_2_name                                                   Annette Badland
actor_1_facebook_likes                                                    1000
gross                                                                4.595e+06
genres                                              Comedy|Drama|Music|Romance
actor_1_name                                                     Jim Broadbent
movie_title                                                      Little Voice 
num_voted_users                                                          13892
cast_total_facebook_likes                                                 2103
actor_3_name                                                    Brenda Blethyn
facenumber_in_poster                                                         4
plot_keywords                                 mother|recluse|shy|singer|talent
movie_imdb_link              http://www.imdb.com/title/tt0147004/?ref_=fn_t...
num_user_for_reviews                                                       160
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1998
actor_2_facebook_likes                                                     497
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       915
Name: 3619, dtype: object
color                                                                    Color
director_name                                                     Zach Cregger
num_critic_for_reviews                                                      76
duration                                                                    90
director_facebook_likes                                                    138
actor_3_facebook_likes                                                     263
actor_2_name                                              Windell Middlebrooks
actor_1_facebook_likes                                                     373
gross                                                              4.54278e+06
genres                                                          Comedy|Romance
actor_1_name                                                    Hugh M. Hefner
movie_title                                                        Miss March 
num_voted_users                                                          18313
cast_total_facebook_likes                                                 1831
actor_3_name                                                     Raquel Alessi
facenumber_in_poster                                                         2
plot_keywords                fellatio|hugh hefner|oral sex|playboy centerfo...
movie_imdb_link              http://www.imdb.com/title/tt1151922/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2009
actor_2_facebook_likes                                                     308
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       985
Name: 3620, dtype: object
color                                                                    Color
director_name                                                       Zach Braff
num_critic_for_reviews                                                     149
duration                                                                   106
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     379
actor_2_name                                                          Josh Gad
actor_1_facebook_likes                                                   17000
gross                                                              3.58843e+06
genres                                                            Comedy|Drama
actor_1_name                                                       Jim Parsons
movie_title                                                   Wish I Was Here 
num_voted_users                                                          29341
cast_total_facebook_likes                                                18947
actor_3_name                                                    Michael Weston
facenumber_in_poster                                                         4
plot_keywords                 actor|dream sequence|genius recluse|jew|religion
movie_imdb_link              http://www.imdb.com/title/tt2870708/?ref_=fn_t...
num_user_for_reviews                                                        93
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2014
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3621, dtype: object
color                                                                    Color
director_name                                                      Mark Tarlov
num_critic_for_reviews                                                      35
duration                                                                    96
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     353
actor_2_name                                                       Dylan Baker
actor_1_facebook_likes                                                    4000
gross                                                              4.39494e+06
genres                                            Comedy|Drama|Fantasy|Romance
actor_1_name                                             Sarah Michelle Gellar
movie_title                                               Simply Irresistible 
num_voted_users                                                          11439
cast_total_facebook_likes                                                 5668
actor_3_name                                             Lawrence Gilliard Jr.
facenumber_in_poster                                                         1
plot_keywords                           chef|female chef|love|magic|restaurant
movie_imdb_link              http://www.imdb.com/title/tt0145893/?ref_=fn_t...
num_user_for_reviews                                                       190
language                                                               English
country                                                                Germany
content_rating                                                           PG-13
budget                                                                   6e+06
title_year                                                                1999
actor_2_facebook_likes                                                     812
imdb_score                                                                 5.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       901
Name: 3622, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      47
duration                                                                    44
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     724
actor_2_name                                                     Jason Dohring
actor_1_facebook_likes                                                     937
gross                                                                      NaN
genres                                                     Crime|Drama|Mystery
actor_1_name                                                     Francis Capra
movie_title                                         Veronica Mars             
num_voted_users                                                          55524
cast_total_facebook_likes                                                 3318
actor_3_name                                                  Enrico Colantoni
facenumber_in_poster                                                         1
plot_keywords                best friend|high school|private detective|sher...
movie_imdb_link              http://www.imdb.com/title/tt0412253/?ref_=fn_t...
num_user_for_reviews                                                       315
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     828
imdb_score                                                                 8.4
aspect_ratio                                                              1.78
movie_facebook_likes                                                         0
Name: 3623, dtype: object
color                                                                    Color
director_name                                            John Cameron Mitchell
num_critic_for_reviews                                                     108
duration                                                                    95
director_facebook_likes                                                    263
actor_3_facebook_likes                                                     179
actor_2_name                                                       Miriam Shor
actor_1_facebook_likes                                                     263
gross                                                              3.02908e+06
genres                                              Comedy|Drama|Music|Musical
actor_1_name                                             John Cameron Mitchell
movie_title                                         Hedwig and the Angry Inch 
num_voted_users                                                          26300
cast_total_facebook_likes                                                  993
actor_3_name                                                     Andrea Martin
facenumber_in_poster                                                         0
plot_keywords                       band|rock band|sex change|song|transsexual
movie_imdb_link              http://www.imdb.com/title/tt0248845/?ref_=fn_t...
num_user_for_reviews                                                       231
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2001
actor_2_facebook_likes                                                     261
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3624, dtype: object
color                                                                    Color
director_name                                                  Sheldon Lettich
num_critic_for_reviews                                                      17
duration                                                                    99
director_facebook_likes                                                     23
actor_3_facebook_likes                                                      82
actor_2_name                                                      Ryan Bollman
actor_1_facebook_likes                                                      97
gross                                                              3.27359e+06
genres                                                            Action|Drama
actor_1_name                                                     Antoni Corone
movie_title                                                   Only the Strong 
num_voted_users                                                           4195
cast_total_facebook_likes                                                  382
actor_3_name                                                       Todd Susman
facenumber_in_poster                                                         1
plot_keywords                    capoeira|fight|fighting|martial arts|violence
movie_imdb_link              http://www.imdb.com/title/tt0107750/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+06
title_year                                                                1993
actor_2_facebook_likes                                                      91
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3625, dtype: object
color                                                                    Color
director_name                                                       Jon Knautz
num_critic_for_reviews                                                      12
duration                                                                    93
director_facebook_likes                                                     10
actor_3_facebook_likes                                                      34
actor_2_name                                                       Monda Scott
actor_1_facebook_likes                                                     397
gross                                                                      NaN
genres                                           Drama|Horror|Mystery|Thriller
actor_1_name                                                       Rachel Alig
movie_title                                                   Goddess of Love 
num_voted_users                                                            522
cast_total_facebook_likes                                                  546
actor_3_name                                                     Alexis Kendra
facenumber_in_poster                                                         0
plot_keywords                female nudity|hallucination|sex scene|strip cl...
movie_imdb_link              http://www.imdb.com/title/tt3432552/?ref_=fn_t...
num_user_for_reviews                                                         5
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2015
actor_2_facebook_likes                                                      77
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                        84
Name: 3626, dtype: object
color                                                                    Color
director_name                                                        Billy Ray
num_critic_for_reviews                                                     129
duration                                                                    99
director_facebook_likes                                                     53
actor_3_facebook_likes                                                     491
actor_2_name                                                    Rosario Dawson
actor_1_facebook_likes                                                    4000
gross                                                              2.20798e+06
genres                                                           Drama|History
actor_1_name                                                Hayden Christensen
movie_title                                                   Shattered Glass 
num_voted_users                                                          28855
cast_total_facebook_likes                                                 8297
actor_3_name                                                         Cas Anvar
facenumber_in_poster                                                         0
plot_keywords                fabricated facts|journalist|stephen glass|the ...
movie_imdb_link              http://www.imdb.com/title/tt0323944/?ref_=fn_t...
num_user_for_reviews                                                       190
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+06
title_year                                                                2003
actor_2_facebook_likes                                                    3000
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3627, dtype: object
color                                                                    Color
director_name                                                     David Atkins
num_critic_for_reviews                                                      84
duration                                                                    95
director_facebook_likes                                                      8
actor_3_facebook_likes                                                      15
actor_2_name                                                     Lynne Thigpen
actor_1_facebook_likes                                                     244
gross                                                              2.02524e+06
genres                                             Comedy|Crime|Drama|Thriller
actor_1_name                                                      Chelcie Ross
movie_title                                                         Novocaine 
num_voted_users                                                           9589
cast_total_facebook_likes                                                  489
actor_3_name                                                      Polly Noonan
facenumber_in_poster                                                         3
plot_keywords                               dentist|drugs|murder|sex|sunflower
movie_imdb_link              http://www.imdb.com/title/tt0234354/?ref_=fn_t...
num_user_for_reviews                                                       105
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2001
actor_2_facebook_likes                                                     230
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       289
Name: 3628, dtype: object
color                                                                    Color
director_name                                                 Patrick Stettner
num_critic_for_reviews                                                      61
duration                                                                    84
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     152
actor_2_name                                                        Tony Devon
actor_1_facebook_likes                                                     944
gross                                                              1.02834e+06
genres                                                          Drama|Thriller
actor_1_name                                                 Stockard Channing
movie_title                                         The Business of Strangers 
num_voted_users                                                           3413
cast_total_facebook_likes                                                 1407
actor_3_name                                                  Frederick Weller
facenumber_in_poster                                                         2
plot_keywords                   airport|businesswoman|hotel|revenge|vegetarian
movie_imdb_link              http://www.imdb.com/title/tt0270259/?ref_=fn_t...
num_user_for_reviews                                                        78
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2001
actor_2_facebook_likes                                                     257
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                        29
Name: 3629, dtype: object
color                                                                    Color
director_name                                                    Sam Peckinpah
num_critic_for_reviews                                                     147
duration                                                                   144
director_facebook_likes                                                    541
actor_3_facebook_likes                                                     242
actor_2_name                                                      Warren Oates
actor_1_facebook_likes                                                     682
gross                                                                      NaN
genres                                                Action|Adventure|Western
actor_1_name                                                    William Holden
movie_title                                                    The Wild Bunch 
num_voted_users                                                          63192
cast_total_facebook_likes                                                 2379
actor_3_name                                                        L.Q. Jones
facenumber_in_poster                                                         1
plot_keywords                    friendship|honor|righteous rage|soldier|texas
movie_imdb_link              http://www.imdb.com/title/tt0065214/?ref_=fn_t...
num_user_for_reviews                                                       287
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                             6.24409e+06
title_year                                                                1969
actor_2_facebook_likes                                                     288
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3630, dtype: object
color                                                                    Color
director_name                                                  Jonathan Levine
num_critic_for_reviews                                                     147
duration                                                                    99
director_facebook_likes                                                    129
actor_3_facebook_likes                                                     362
actor_2_name                                                         Aaron Yoo
actor_1_facebook_likes                                                     976
gross                                                              2.07705e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                   Mary-Kate Olsen
movie_title                                                      The Wackness 
num_voted_users                                                          27266
cast_total_facebook_likes                                                 2748
actor_3_name                                                        Method Man
facenumber_in_poster                                                         2
plot_keywords                 ice cream|marijuana|new york city|summer|therapy
movie_imdb_link              http://www.imdb.com/title/tt1082886/?ref_=fn_t...
num_user_for_reviews                                                        75
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2008
actor_2_facebook_likes                                                     617
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3631, dtype: object
color                                                          Black and White
director_name                                                 Michael Crichton
num_critic_for_reviews                                                      23
duration                                                                   110
director_facebook_likes                                                    735
actor_3_facebook_likes                                                      20
actor_2_name                                                   Michael Elphick
actor_1_facebook_likes                                                     187
gross                                                                      NaN
genres                                          Adventure|Crime|Drama|Thriller
actor_1_name                                                  Lesley-Anne Down
movie_title                                           The Great Train Robbery 
num_voted_users                                                          11623
cast_total_facebook_likes                                                  297
actor_3_name                                                      Pamela Salem
facenumber_in_poster                                                         2
plot_keywords                                         bank|gold|key|safe|train
movie_imdb_link              http://www.imdb.com/title/tt0079240/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                   6e+06
title_year                                                                1979
actor_2_facebook_likes                                                      34
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       643
Name: 3632, dtype: object
color                                                                    Color
director_name                                                     Lynne Ramsay
num_critic_for_reviews                                                      75
duration                                                                    97
director_facebook_likes                                                    159
actor_3_facebook_likes                                                      53
actor_2_name                                                        Bryan Dick
actor_1_facebook_likes                                                     631
gross                                                                   267194
genres                                                                   Drama
actor_1_name                                                   Samantha Morton
movie_title                                                    Morvern Callar 
num_voted_users                                                           6906
cast_total_facebook_likes                                                  841
actor_3_name                                                   Paul Popplewell
facenumber_in_poster                                                         0
plot_keywords                breasts|cleavage|female rear nudity|girl in pa...
movie_imdb_link              http://www.imdb.com/title/tt0300214/?ref_=fn_t...
num_user_for_reviews                                                       111
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2002
actor_2_facebook_likes                                                     104
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       605
Name: 3633, dtype: object
color                                                                    Color
director_name                                                     Sylvio Tabet
num_critic_for_reviews                                                      17
duration                                                                   107
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     284
actor_2_name                                                       Kari Wuhrer
actor_1_facebook_likes                                                     721
gross                                                                   869325
genres                                         Action|Adventure|Fantasy|Sci-Fi
actor_1_name                                                  Michael Berryman
movie_title                         Beastmaster 2: Through the Portal of Time 
num_voted_users                                                           2281
cast_total_facebook_likes                                                 2000
actor_3_name                                                       Marc Singer
facenumber_in_poster                                                         2
plot_keywords                beast|beastmaster|psychotronic|sword and sorce...
movie_imdb_link              http://www.imdb.com/title/tt0101412/?ref_=fn_t...
num_user_for_reviews                                                        16
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+06
title_year                                                                1991
actor_2_facebook_likes                                                     514
imdb_score                                                                 3.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       125
Name: 3634, dtype: object
color                                                                    Color
director_name                                                      Rick Bieber
num_critic_for_reviews                                                      16
duration                                                                    90
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     316
actor_2_name                                                    Kendrick Cross
actor_1_facebook_likes                                                     767
gross                                                                   399611
genres                                                   Biography|Drama|Sport
actor_1_name                                                       Aidan Quinn
movie_title                                                   The 5th Quarter 
num_voted_users                                                           1245
cast_total_facebook_likes                                                 2370
actor_3_name                                                Sammy Nagi Njuguna
facenumber_in_poster                                                         2
plot_keywords                athletic training|football practice|funeral|gy...
movie_imdb_link              http://www.imdb.com/title/tt1130964/?ref_=fn_t...
num_user_for_reviews                                                        29
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   6e+06
title_year                                                                2010
actor_2_facebook_likes                                                     529
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3635, dtype: object
color                                                                    Color
director_name                                                   Claude Chabrol
num_critic_for_reviews                                                      60
duration                                                                   104
director_facebook_likes                                                    324
actor_3_facebook_likes                                                      27
actor_2_name                                                     Nathalie Baye
actor_1_facebook_likes                                                     173
gross                                                                   181798
genres                                                                   Drama
actor_1_name                                                    Benoît Magimel
movie_title                                                The Flower of Evil 
num_voted_users                                                           2591
cast_total_facebook_likes                                                  282
actor_3_name                                                    Mélanie Doutey
facenumber_in_poster                                                         5
plot_keywords                bordeaux|election|mayor|pamphlet|political thr...
movie_imdb_link              http://www.imdb.com/title/tt0322289/?ref_=fn_t...
num_user_for_reviews                                                        36
language                                                                French
country                                                                 France
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2003
actor_2_facebook_likes                                                      67
imdb_score                                                                 6.6
aspect_ratio                                                              1.66
movie_facebook_likes                                                        52
Name: 3636, dtype: object
color                                                                    Color
director_name                                                      Shana Feste
num_critic_for_reviews                                                      63
duration                                                                    96
director_facebook_likes                                                     19
actor_3_facebook_likes                                                      71
actor_2_name                                                       Zoë Kravitz
actor_1_facebook_likes                                                    1000
gross                                                                   115862
genres                                                           Drama|Romance
actor_1_name                                                     Jennifer Ehle
movie_title                                                      The Greatest 
num_voted_users                                                           7394
cast_total_facebook_likes                                                 2163
actor_3_name                                                      Cara Seymour
facenumber_in_poster                                                         2
plot_keywords                car crash|loss|self help group|teenage mother|...
movie_imdb_link              http://www.imdb.com/title/tt1226232/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2009
actor_2_facebook_likes                                                     943
imdb_score                                                                 6.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3637, dtype: object
color                                                                      NaN
director_name                                                       Wayne Wang
num_critic_for_reviews                                                      56
duration                                                                   104
director_facebook_likes                                                     61
actor_3_facebook_likes                                                     451
actor_2_name                                                      Russell Wong
actor_1_facebook_likes                                                     974
gross                                                               1.3465e+06
genres                                                           Drama|History
actor_1_name                                                       Bingbing Li
movie_title                                    Snow Flower and the Secret Fan 
num_voted_users                                                           3024
cast_total_facebook_likes                                                 2430
actor_3_name                                                       Ji-hyun Jun
facenumber_in_poster                                                         0
plot_keywords                car hitting pedestrian|china|fan|nineteenth ce...
movie_imdb_link              http://www.imdb.com/title/tt1541995/?ref_=fn_t...
num_user_for_reviews                                                        22
language                                                               English
country                                                                  China
content_rating                                                           PG-13
budget                                                                   6e+06
title_year                                                                2011
actor_2_facebook_likes                                                     595
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3638, dtype: object
color                                                                    Color
director_name                                                Joey Lauren Adams
num_critic_for_reviews                                                      36
duration                                                                    97
director_facebook_likes                                                    781
actor_3_facebook_likes                                                      90
actor_2_name                                                        Diane Ladd
actor_1_facebook_likes                                                     596
gross                                                                   117560
genres                                                           Drama|Romance
actor_1_name                                                  Tim Blake Nelson
movie_title                                                Come Early Morning 
num_voted_users                                                           2330
cast_total_facebook_likes                                                 1081
actor_3_name                                                Ritchie Montgomery
facenumber_in_poster                                                         0
plot_keywords                church|drink|knocking on a door|love|three wor...
movie_imdb_link              http://www.imdb.com/title/tt0457308/?ref_=fn_t...
num_user_for_reviews                                                        29
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2006
actor_2_facebook_likes                                                     206
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       224
Name: 3639, dtype: object
color                                                                    Color
director_name                                                   Peter Cattaneo
num_critic_for_reviews                                                      47
duration                                                                   107
director_facebook_likes                                                     11
actor_3_facebook_likes                                                     419
actor_2_name                                                   Olivia Williams
actor_1_facebook_likes                                                     773
gross                                                                    54606
genres                                                    Comedy|Crime|Romance
actor_1_name                                                     James Nesbitt
movie_title                                                       Lucky Break 
num_voted_users                                                           1940
cast_total_facebook_likes                                                 2440
actor_3_name                                                    Peter McNamara
facenumber_in_poster                                                         0
plot_keywords                escape|prison|prison escape|sadism|solitary co...
movie_imdb_link              http://www.imdb.com/title/tt0246134/?ref_=fn_t...
num_user_for_reviews                                                        34
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                   6e+06
title_year                                                                2001
actor_2_facebook_likes                                                     766
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                        30
Name: 3640, dtype: object
color                                                                    Color
director_name                                                   Fred Zinnemann
num_critic_for_reviews                                                      38
duration                                                                   117
director_facebook_likes                                                    160
actor_3_facebook_likes                                                     898
actor_2_name                                                        Jane Fonda
actor_1_facebook_likes                                                   11000
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                      Meryl Streep
movie_title                                                             Julia 
num_voted_users                                                           6454
cast_total_facebook_likes                                                15604
actor_3_name                                                  Vanessa Redgrave
facenumber_in_poster                                                         2
plot_keywords                1930s|female protagonist|nazi|romantic friends...
movie_imdb_link              http://www.imdb.com/title/tt0076245/?ref_=fn_t...
num_user_for_reviews                                                        44
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                7.84e+06
title_year                                                                1977
actor_2_facebook_likes                                                     949
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       733
Name: 3641, dtype: object
color                                                                    Color
director_name                                                     S.R. Bindler
num_critic_for_reviews                                                      26
duration                                                                    85
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     499
actor_2_name                                                       Scott Glenn
actor_1_facebook_likes                                                   11000
gross                                                                    36497
genres                                                                  Comedy
actor_1_name                                               Matthew McConaughey
movie_title                                                      Surfer, Dude 
num_voted_users                                                           7367
cast_total_facebook_likes                                                14599
actor_3_name                                                      Sarah Wright
facenumber_in_poster                                                         0
plot_keywords                barefoot|endorsement|surfboard|virtual reality...
movie_imdb_link              http://www.imdb.com/title/tt0976247/?ref_=fn_t...
num_user_for_reviews                                                        37
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2008
actor_2_facebook_likes                                                     826
imdb_score                                                                 4.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       850
Name: 3642, dtype: object
color                                                          Black and White
director_name                                                        Tony Kaye
num_critic_for_reviews                                                      47
duration                                                                   152
director_facebook_likes                                                    194
actor_3_facebook_likes                                                       0
actor_2_name                                                      Pat Buchanan
actor_1_facebook_likes                                                     103
gross                                                                    23807
genres                                                             Documentary
actor_1_name                                                      Noam Chomsky
movie_title                                                      Lake of Fire 
num_voted_users                                                           2143
cast_total_facebook_likes                                                  105
actor_3_name                                                        Bill Baird
facenumber_in_poster                                                         0
plot_keywords                abortion|southern accent|title based on the bi...
movie_imdb_link              http://www.imdb.com/title/tt0841119/?ref_=fn_t...
num_user_for_reviews                                                        29
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                     NaN
title_year                                                                2006
actor_2_facebook_likes                                                       2
imdb_score                                                                 8.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                       570
Name: 3643, dtype: object
color                                                                    Color
director_name                                                      Greg Marcks
num_critic_for_reviews                                                      68
duration                                                                    85
director_facebook_likes                                                      9
actor_3_facebook_likes                                                     407
actor_2_name                                                   Barbara Hershey
actor_1_facebook_likes                                                     861
gross                                                                      NaN
genres                                                      Comedy|Crime|Drama
actor_1_name                                                      Henry Thomas
movie_title                                                             11:14 
num_voted_users                                                          38273
cast_total_facebook_likes                                                 2200
actor_3_name                                                      Shawn Hatosy
facenumber_in_poster                                                         1
plot_keywords                convenience store|multiple perspectives|murder...
movie_imdb_link              http://www.imdb.com/title/tt0331811/?ref_=fn_t...
num_user_for_reviews                                                       133
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2003
actor_2_facebook_likes                                                     618
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3644, dtype: object
color                                                                    Color
director_name                                                       Perry Lang
num_critic_for_reviews                                                      19
duration                                                                    76
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     259
actor_2_name                                                       Kevin Tighe
actor_1_facebook_likes                                                     636
gross                                                                      NaN
genres                                                   Action|Drama|Thriller
actor_1_name                                                    Catherine Bell
movie_title                                                        Men of War 
num_voted_users                                                           2989
cast_total_facebook_likes                                                 2152
actor_3_name                                                        Tim Guinee
facenumber_in_poster                                                         1
plot_keywords                   cockney accent|fight|island|machismo|mercenary
movie_imdb_link              http://www.imdb.com/title/tt0110490/?ref_=fn_t...
num_user_for_reviews                                                        38
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.6e+06
title_year                                                                1994
actor_2_facebook_likes                                                     472
imdb_score                                                                 5.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                       176
Name: 3645, dtype: object
color                                                                    Color
director_name                                                  Jake Goldberger
num_critic_for_reviews                                                      39
duration                                                                    87
director_facebook_likes                                                      2
actor_3_facebook_likes                                                      99
actor_2_name                                                    M. Emmet Walsh
actor_1_facebook_likes                                                     592
gross                                                                      NaN
genres                                                  Drama|Mystery|Thriller
actor_1_name                                               Pruitt Taylor Vince
movie_title                                                         Don McKay 
num_voted_users                                                           2050
cast_total_facebook_likes                                                 1227
actor_3_name                                                   Robert Wahlberg
facenumber_in_poster                                                         1
plot_keywords                dead body|dead body in a freezer|dead body wra...
movie_imdb_link              http://www.imdb.com/title/tt1281374/?ref_=fn_t...
num_user_for_reviews                                                        17
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     521
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       275
Name: 3646, dtype: object
color                                                                    Color
director_name                                                Stefan Ruzowitzky
num_critic_for_reviews                                                     162
duration                                                                    95
director_facebook_likes                                                     24
actor_3_facebook_likes                                                     874
actor_2_name                                                      Olivia Wilde
actor_1_facebook_likes                                                   16000
gross                                                                    65804
genres                                                    Crime|Drama|Thriller
actor_1_name                                                    Charlie Hunnam
movie_title                                                          Deadfall 
num_voted_users                                                          32512
cast_total_facebook_likes                                                27575
actor_3_name                                                      Sissy Spacek
facenumber_in_poster                                                         1
plot_keywords                police officer|police officer killed|police of...
movie_imdb_link              http://www.imdb.com/title/tt1667310/?ref_=fn_t...
num_user_for_reviews                                                        86
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.2e+07
title_year                                                                2012
actor_2_facebook_likes                                                   10000
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3647, dtype: object
color                                                                    Color
director_name                                                        Vic Sarin
num_critic_for_reviews                                                      37
duration                                                                   101
director_facebook_likes                                                     24
actor_3_facebook_likes                                                     130
actor_2_name                                                       Aidan Quinn
actor_1_facebook_likes                                                     933
gross                                                                      NaN
genres                                                            Drama|Family
actor_1_name                                                    Connie Nielsen
movie_title                                               A Shine of Rainbows 
num_voted_users                                                           1696
cast_total_facebook_likes                                                 1940
actor_3_name                                                         John Bell
facenumber_in_poster                                                         2
plot_keywords                              island|love|new home|orphan|rainbow
movie_imdb_link              http://www.imdb.com/title/tt1014774/?ref_=fn_t...
num_user_for_reviews                                                        19
language                                                               English
country                                                                 Canada
content_rating                                                              PG
budget                                                                   6e+06
title_year                                                                2009
actor_2_facebook_likes                                                     767
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                      1000
Name: 3648, dtype: object
color                                                                    Color
director_name                                                  William Kaufman
num_critic_for_reviews                                                      26
duration                                                                    90
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     787
actor_2_name                                                         Sean Cook
actor_1_facebook_likes                                                     848
gross                                                                      NaN
genres                                                         Action|Thriller
actor_1_name                                                       Drew Waters
movie_title                                                      The Hit List 
num_voted_users                                                          10196
cast_total_facebook_likes                                                 3469
actor_3_name                                                       Cole Hauser
facenumber_in_poster                                                         1
plot_keywords                die hard scenario|engineer|held at gunpoint|ra...
movie_imdb_link              http://www.imdb.com/title/tt1575694/?ref_=fn_t...
num_user_for_reviews                                                        39
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2011
actor_2_facebook_likes                                                     816
imdb_score                                                                 5.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3649, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      10
duration                                                                   240
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     334
actor_2_name                                                      Blake Ritson
actor_1_facebook_likes                                                     805
gross                                                                      NaN
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Romola Garai
movie_title                                                  Emma             
num_voted_users                                                          10388
cast_total_facebook_likes                                                 2563
actor_3_name                                                      Rupert Evans
facenumber_in_poster                                                         1
plot_keywords                friendship|love triangle|matchmaker|naivety|op...
movie_imdb_link              http://www.imdb.com/title/tt1366312/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     432
imdb_score                                                                 8.2
aspect_ratio                                                              1.78
movie_facebook_likes                                                         0
Name: 3650, dtype: object
color                                                                    Color
director_name                                                 David Cronenberg
num_critic_for_reviews                                                     179
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      15
actor_2_name                                                    Leslie Carlson
actor_1_facebook_likes                                                     391
gross                                                                      NaN
genres                                          Horror|Mystery|Sci-Fi|Thriller
actor_1_name                                                      Debbie Harry
movie_title                                                        Videodrome 
num_voted_users                                                          60522
cast_total_facebook_likes                                                  477
actor_3_name                                                    Reiner Schwarz
facenumber_in_poster                                                         0
plot_keywords                cyberpunk|hallucination|illegality|snuff film|...
movie_imdb_link              http://www.imdb.com/title/tt0086541/?ref_=fn_t...
num_user_for_reviews                                                       228
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                               5.952e+06
title_year                                                                1983
actor_2_facebook_likes                                                      20
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3651, dtype: object
color                                                                    Color
director_name                                                  Cédric Klapisch
num_critic_for_reviews                                                      88
duration                                                                   111
director_facebook_likes                                                     82
actor_3_facebook_likes                                                     269
actor_2_name                                                  Cécile De France
actor_1_facebook_likes                                                     809
gross                                                              3.89566e+06
genres                                                            Comedy|Drama
actor_1_name                                                      Romain Duris
movie_title                                               L'auberge espagnole 
num_voted_users                                                          34383
cast_total_facebook_likes                                                 1858
actor_3_name                                                     Iddo Goldberg
facenumber_in_poster                                                         0
plot_keywords                          apartment|erasmus|language|student|trip
movie_imdb_link              http://www.imdb.com/title/tt0283900/?ref_=fn_t...
num_user_for_reviews                                                       149
language                                                                French
country                                                                 France
content_rating                                                               R
budget                                                                 5.3e+06
title_year                                                                2002
actor_2_facebook_likes                                                     447
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3652, dtype: object
color                                                                    Color
director_name                                             Kate Barker-Froyland
num_critic_for_reviews                                                      43
duration                                                                    86
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     444
actor_2_name                                                     Shawn Parsons
actor_1_facebook_likes                                                   11000
gross                                                                    20200
genres                                                             Drama|Music
actor_1_name                                                     Anne Hathaway
movie_title                                                          Song One 
num_voted_users                                                           6797
cast_total_facebook_likes                                                12772
actor_3_name                                                         Li Jun Li
facenumber_in_poster                                                         1
plot_keywords                       musician|number in title|recording|sibling
movie_imdb_link              http://www.imdb.com/title/tt2182972/?ref_=fn_t...
num_user_for_reviews                                                        21
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   6e+06
title_year                                                                2014
actor_2_facebook_likes                                                     485
imdb_score                                                                 5.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 3653, dtype: object
color                                                                    Color
director_name                                                 Barbet Schroeder
num_critic_for_reviews                                                     136
duration                                                                   115
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     400
actor_2_name                                                        Chris Penn
actor_1_facebook_likes                                                   33000
gross                                                              3.18749e+07
genres                                                  Crime|Mystery|Thriller
actor_1_name                                                      Ryan Gosling
movie_title                                                 Murder by Numbers 
num_voted_users                                                          43575
cast_total_facebook_likes                                                34605
actor_3_name                                                    Agnes Bruckner
facenumber_in_poster                                                         0
plot_keywords                disposing of a dead body|high school student|m...
movie_imdb_link              http://www.imdb.com/title/tt0264935/?ref_=fn_t...
num_user_for_reviews                                                       302
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+07
title_year                                                                2002
actor_2_facebook_likes                                                     455
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3654, dtype: object
color                                                                    Color
director_name                                                 Martin Koolhoven
num_critic_for_reviews                                                     111
duration                                                                   103
director_facebook_likes                                                     12
actor_3_facebook_likes                                                      19
actor_2_name                                                     Tygo Gernandt
actor_1_facebook_likes                                                     163
gross                                                                   542860
genres                                                       Drama|History|War
actor_1_name                                             Yorick van Wageningen
movie_title                                                 Winter in Wartime 
num_voted_users                                                           9230
cast_total_facebook_likes                                                  219
actor_3_name                                                 Martijn Lakemeier
facenumber_in_poster                                                         1
plot_keywords                horse|nazi|occupation|resistance movement|uncl...
movie_imdb_link              http://www.imdb.com/title/tt0795441/?ref_=fn_t...
num_user_for_reviews                                                        37
language                                                                 Dutch
country                                                            Netherlands
content_rating                                                               R
budget                                                                   4e+06
title_year                                                                2008
actor_2_facebook_likes                                                      20
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3655, dtype: object
color                                                                      NaN
director_name                                                  Charles Matthau
num_critic_for_reviews                                                      13
duration                                                                    90
director_facebook_likes                                                    139
actor_3_facebook_likes                                                    1000
actor_2_name                                                 Michael Jai White
actor_1_facebook_likes                                                    2000
gross                                                                      NaN
genres                                                   Comedy|Crime|Thriller
actor_1_name                                                       Billy Burke
movie_title                                                      Freaky Deaky 
num_voted_users                                                           6741
cast_total_facebook_likes                                                 6569
actor_3_name                                                         Bill Duke
facenumber_in_poster                                                         0
plot_keywords                black panties|bomb squad|car bomb|dynamite|gir...
movie_imdb_link              http://www.imdb.com/title/tt0938305/?ref_=fn_t...
num_user_for_reviews                                                        11
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   6e+06
title_year                                                                2012
actor_2_facebook_likes                                                    2000
imdb_score                                                                 6.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 3656, dtype: object
color                                                          Black and White
director_name                                               John Frankenheimer
num_critic_for_reviews                                                      64
duration                                                                   133
director_facebook_likes                                                    287
actor_3_facebook_likes                                                      28
actor_2_name                                                     Paul Scofield
actor_1_facebook_likes                                                     343
gross                                                                      NaN
genres                                                            Thriller|War
actor_1_name                                                     Jeanne Moreau
movie_title                                                         The Train 
num_voted_users                                                          10119
cast_total_facebook_likes                                                  502
actor_3_name                                                      Michel Simon
facenumber_in_poster                                                         0
plot_keywords                                 art|french|german|painting|train
movie_imdb_link              http://www.imdb.com/title/tt0059825/?ref_=fn_t...
num_user_for_reviews                                                       124
language                                                               English
country                                                                 France
content_rating                                                         Unrated
budget                                                                 6.7e+06
title_year                                                                1964
actor_2_facebook_likes                                                      94
imdb_score                                                                 7.9
aspect_ratio                                                              1.66
movie_facebook_likes                                                         0
Name: 3657, dtype: object
color                                                                    Color
director_name                                          Christopher M. Bessette
num_critic_for_reviews                                                       6
duration                                                                    88
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      57
actor_2_name                                                  John Billingsley
actor_1_facebook_likes                                                     978
gross                                                                    15059
genres                                                          Drama|Thriller
actor_1_name                                                      Mira Sorvino
movie_title                                                Trade of Innocents 
num_voted_users                                                            748
cast_total_facebook_likes                                                 1443
actor_3_name                                                        Trieu Tran
facenumber_in_poster                                                         2
plot_keywords                angkor wat|human trafficking|sex slavery|sex t...
movie_imdb_link              http://www.imdb.com/title/tt1772408/?ref_=fn_t...
num_user_for_reviews                                                         8
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2012
actor_2_facebook_likes                                                     323
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       543
Name: 3658, dtype: object
color                                                                    Color
director_name                                                  Prachya Pinkaew
num_critic_for_reviews                                                     112
duration                                                                   111
director_facebook_likes                                                     64
actor_3_facebook_likes                                                     380
actor_2_name                                                      Nathan Jones
actor_1_facebook_likes                                                     778
gross                                                              1.19055e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                           Jon Foo
movie_title                                                     The Protector 
num_voted_users                                                          30210
cast_total_facebook_likes                                                 2205
actor_3_name                                                     Johnny Nguyen
facenumber_in_poster                                                         0
plot_keywords                die hard scenario|elephant|long take|police|sy...
movie_imdb_link              http://www.imdb.com/title/tt0427954/?ref_=fn_t...
num_user_for_reviews                                                       214
language                                                                  Thai
country                                                               Thailand
content_rating                                                               R
budget                                                                   2e+08
title_year                                                                2005
actor_2_facebook_likes                                                     635
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3659, dtype: object
color                                                                    Color
director_name                                                      Gary Sinyor
num_critic_for_reviews                                                      12
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     136
actor_2_name                                                      Frank Finlay
actor_1_facebook_likes                                                     722
gross                                                                    69582
genres                                                                  Comedy
actor_1_name                                                      Sean Pertwee
movie_title                                                  Stiff Upper Lips 
num_voted_users                                                            867
cast_total_facebook_likes                                                 1477
actor_3_name                                                       Samuel West
facenumber_in_poster                                                         2
plot_keywords                class conflict|edwardian era|england|sexual aw...
movie_imdb_link              http://www.imdb.com/title/tt0120210/?ref_=fn_t...
num_user_for_reviews                                                        21
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1998
actor_2_facebook_likes                                                     338
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       109
Name: 3660, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      15
duration                                                                    25
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     220
actor_2_name                                            Belinda Stewart-Wilson
actor_1_facebook_likes                                                     229
gross                                                                      NaN
genres                                                          Comedy|Romance
actor_1_name                                                        Simon Bird
movie_title                                      The Inbetweeners             
num_voted_users                                                          55987
cast_total_facebook_likes                                                 1239
actor_3_name                                                     James Buckley
facenumber_in_poster                                                         0
plot_keywords                   black comedy|bully|friend|house|practical joke
movie_imdb_link              http://www.imdb.com/title/tt1220617/?ref_=fn_t...
num_user_for_reviews                                                        42
language                                                               English
country                                                                     UK
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     223
imdb_score                                                                 8.4
aspect_ratio                                                                16
movie_facebook_likes                                                         0
Name: 3661, dtype: object
color                                                                    Color
director_name                                                  Gurinder Chadha
num_critic_for_reviews                                                     161
duration                                                                   112
director_facebook_likes                                                     98
actor_3_facebook_likes                                                     397
actor_2_name                                                   Parminder Nagra
actor_1_facebook_likes                                                     883
gross                                                              3.25417e+07
genres                                              Comedy|Drama|Romance|Sport
actor_1_name                                                    Archie Panjabi
movie_title                                              Bend It Like Beckham 
num_voted_users                                                          89806
cast_total_facebook_likes                                                 2201
actor_3_name                                                       Anupam Kher
facenumber_in_poster                                                         0
plot_keywords                hinduism|marriage engagement|soccer|team|tradi...
movie_imdb_link              http://www.imdb.com/title/tt0286499/?ref_=fn_t...
num_user_for_reviews                                                       438
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                             3.50016e+06
title_year                                                                2002
actor_2_facebook_likes                                                     528
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3662, dtype: object
color                                                                    Color
director_name                                                      John Sayles
num_critic_for_reviews                                                      68
duration                                                                   141
director_facebook_likes                                                    407
actor_3_facebook_likes                                                     501
actor_2_name                                                        Edie Falco
actor_1_facebook_likes                                                     688
gross                                                              3.06436e+06
genres                                                           Drama|Romance
actor_1_name                                                     Miguel Ferrer
movie_title                                                    Sunshine State 
num_voted_users                                                           3433
cast_total_facebook_likes                                                 2584
actor_3_name                                                    Timothy Hutton
facenumber_in_poster                                                         6
plot_keywords                african american|business|coastline|florida|re...
movie_imdb_link              http://www.imdb.com/title/tt0286179/?ref_=fn_t...
num_user_for_reviews                                                        81
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.6e+06
title_year                                                                2002
actor_2_facebook_likes                                                     659
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       160
Name: 3663, dtype: object
color                                                                    Color
director_name                                           Preston A. Whitmore II
num_critic_for_reviews                                                      25
duration                                                                    95
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     255
actor_2_name                                                       Wayne Brady
actor_1_facebook_likes                                                     592
gross                                                              7.00967e+06
genres                                                            Action|Sport
actor_1_name                                                   Wesley Jonathan
movie_title                                                         Crossover 
num_voted_users                                                           8707
cast_total_facebook_likes                                                 2000
actor_3_name                                                      Eva Marcille
facenumber_in_poster                                                         6
plot_keywords                african american|basketball|basketball movie|c...
movie_imdb_link              http://www.imdb.com/title/tt0473024/?ref_=fn_t...
num_user_for_reviews                                                        36
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.6e+06
title_year                                                                2006
actor_2_facebook_likes                                                     378
imdb_score                                                                 2.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       244
Name: 3664, dtype: object
color                                                                    Color
director_name                                                  Ashish R. Mohan
num_critic_for_reviews                                                      23
duration                                                                   141
director_facebook_likes                                                      2
actor_3_facebook_likes                                                      61
actor_2_name                                                Mithun Chakraborty
actor_1_facebook_likes                                                     634
gross                                                                   352684
genres                                                           Action|Comedy
actor_1_name                                                              Asin
movie_title                                                       Khiladi 786 
num_voted_users                                                           4633
cast_total_facebook_likes                                                 1065
actor_3_name                                                      Johnny Lever
facenumber_in_poster                                                         1
plot_keywords                car crash|impersonating a police officer|long ...
movie_imdb_link              http://www.imdb.com/title/tt2166214/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                                 Hindi
country                                                                  India
content_rating                                                       Not Rated
budget                                                                     NaN
title_year                                                                2012
actor_2_facebook_likes                                                     284
imdb_score                                                                 4.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                       365
Name: 3665, dtype: object
color                                                                    Color
director_name                                                  Jaume Balagueró
num_critic_for_reviews                                                     222
duration                                                                    85
director_facebook_likes                                                     57
actor_3_facebook_likes                                                       6
actor_2_name                                                       Pablo Rosso
actor_1_facebook_likes                                                      37
gross                                                                    27024
genres                                                                  Horror
actor_1_name                                                Jonathan D. Mellor
movie_title                                                           [Rec] 2 
num_voted_users                                                          55597
cast_total_facebook_likes                                                   73
actor_3_name                                                        Andrea Ros
facenumber_in_poster                                                         0
plot_keywords                apartment|apartment building|blood sample|cruc...
movie_imdb_link              http://www.imdb.com/title/tt1245112/?ref_=fn_t...
num_user_for_reviews                                                       148
language                                                               Spanish
country                                                                  Spain
content_rating                                                               R
budget                                                                 5.6e+06
title_year                                                                2009
actor_2_facebook_likes                                                       9
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                      4000
Name: 3666, dtype: object
color                                                                    Color
director_name                                                  Stewart Raffill
num_critic_for_reviews                                                       9
duration                                                                   105
director_facebook_likes                                                     12
actor_3_facebook_likes                                                      10
actor_2_name                                                   Alexis Biesiada
actor_1_facebook_likes                                                      25
gross                                                                   531806
genres                                                                 Musical
actor_1_name                                                     Kayla Jackson
movie_title                                                  Standing Ovation 
num_voted_users                                                            548
cast_total_facebook_likes                                                   72
actor_3_name                                                   Kayla Raparelli
facenumber_in_poster                                                         9
plot_keywords                 dance|dream|frog|philadelphia pennsylvania|snake
movie_imdb_link              http://www.imdb.com/title/tt1303803/?ref_=fn_t...
num_user_for_reviews                                                         6
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                      11
imdb_score                                                                 3.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                       277
Name: 3667, dtype: object
color                                                                    Color
director_name                                                  George Roy Hill
num_critic_for_reviews                                                     119
duration                                                                   129
director_facebook_likes                                                    131
actor_3_facebook_likes                                                     417
actor_2_name                                                       Robert Shaw
actor_1_facebook_likes                                                    1000
gross                                                                1.596e+08
genres                                                      Comedy|Crime|Drama
actor_1_name                                                    Eileen Brennan
movie_title                                                         The Sting 
num_voted_users                                                         175607
cast_total_facebook_likes                                                 2387
actor_3_name                                                       Ray Walston
facenumber_in_poster                                                         0
plot_keywords                              con|con man|courier|long con|murder
movie_imdb_link              http://www.imdb.com/title/tt0070735/?ref_=fn_t...
num_user_for_reviews                                                       252
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 5.5e+06
title_year                                                                1973
actor_2_facebook_likes                                                     559
imdb_score                                                                 8.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3668, dtype: object
color                                                                    Color
director_name                                                      Hugh Hudson
num_critic_for_reviews                                                      90
duration                                                                   125
director_facebook_likes                                                     46
actor_3_facebook_likes                                                     249
actor_2_name                                                         Ben Cross
actor_1_facebook_likes                                                     368
gross                                                                 5.88e+07
genres                                                   Biography|Drama|Sport
actor_1_name                                                       Alice Krige
movie_title                                                  Chariots of Fire 
num_voted_users                                                          40511
cast_total_facebook_likes                                                 1651
actor_3_name                                                      John Gielgud
facenumber_in_poster                                                         0
plot_keywords                        athlete|jew|missionary|olympic games|race
movie_imdb_link              http://www.imdb.com/title/tt0082158/?ref_=fn_t...
num_user_for_reviews                                                       213
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                 5.5e+06
title_year                                                                1981
actor_2_facebook_likes                                                     303
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3669, dtype: object
color                                                                    Color
director_name                                                     Darren Grant
num_critic_for_reviews                                                      62
duration                                                                   116
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     476
actor_2_name                                                    Kimberly Elise
actor_1_facebook_likes                                                     907
gross                                                              5.03821e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Cicely Tyson
movie_title                                        Diary of a Mad Black Woman 
num_voted_users                                                          10472
cast_total_facebook_likes                                                 2723
actor_3_name                                                     Tamara Taylor
facenumber_in_poster                                                         0
plot_keywords                  comic relief|diary|kiss|madea series|state flag
movie_imdb_link              http://www.imdb.com/title/tt0422093/?ref_=fn_t...
num_user_for_reviews                                                       202
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 5.5e+06
title_year                                                                2005
actor_2_facebook_likes                                                     637
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3670, dtype: object
color                                                                    Color
director_name                                                      Scott Hicks
num_critic_for_reviews                                                      71
duration                                                                   105
director_facebook_likes                                                     96
actor_3_facebook_likes                                                      35
actor_2_name                                               Armin Mueller-Stahl
actor_1_facebook_likes                                                     509
gross                                                              3.58115e+07
genres                                           Biography|Drama|Music|Romance
actor_1_name                                                       Noah Taylor
movie_title                                                             Shine 
num_voted_users                                                          43013
cast_total_facebook_likes                                                  888
actor_3_name                                                     Nicholas Bell
facenumber_in_poster                                                         0
plot_keywords                            abuse|australia|concert|pianist|piano
movie_imdb_link              http://www.imdb.com/title/tt0117631/?ref_=fn_t...
num_user_for_reviews                                                       104
language                                                               English
country                                                              Australia
content_rating                                                           PG-13
budget                                                                 5.5e+06
title_year                                                                1996
actor_2_facebook_likes                                                     294
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3671, dtype: object
color                                                                    Color
director_name                                             Joseph Gordon-Levitt
num_critic_for_reviews                                                     364
duration                                                                    90
director_facebook_likes                                                  23000
actor_3_facebook_likes                                                     694
actor_2_name                                                Scarlett Johansson
actor_1_facebook_likes                                                   23000
gross                                                              2.44752e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                              Joseph Gordon-Levitt
movie_title                                                           Don Jon 
num_voted_users                                                         190494
cast_total_facebook_likes                                                44265
actor_3_name                                                        Tony Danza
facenumber_in_poster                                                         1
plot_keywords                camera focus on female butt|cunnilingus|new je...
movie_imdb_link              http://www.imdb.com/title/tt2229499/?ref_=fn_t...
num_user_for_reviews                                                       314
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   3e+06
title_year                                                                2013
actor_2_facebook_likes                                                   19000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     33000
Name: 3672, dtype: object
color                                                                    Color
director_name                                                   Clint Eastwood
num_critic_for_reviews                                                      72
duration                                                                   105
director_facebook_likes                                                  16000
actor_3_facebook_likes                                                     258
actor_2_name                                                      Richard Bull
actor_1_facebook_likes                                                   16000
gross                                                                      NaN
genres                                                         Mystery|Western
actor_1_name                                                    Clint Eastwood
movie_title                                               High Plains Drifter 
num_voted_users                                                          36381
cast_total_facebook_likes                                                17599
actor_3_name                                                    John Hillerman
facenumber_in_poster                                                         0
plot_keywords                  gravestone|gunfighter|outlaw|revenge|small town
movie_imdb_link              http://www.imdb.com/title/tt0068699/?ref_=fn_t...
num_user_for_reviews                                                       169
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+06
title_year                                                                1973
actor_2_facebook_likes                                                     742
imdb_score                                                                 7.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3673, dtype: object
color                                                                    Color
director_name                                                    Terry Zwigoff
num_critic_for_reviews                                                     122
duration                                                                   111
director_facebook_likes                                                     72
actor_3_facebook_likes                                                     722
actor_2_name                                                     Steve Buscemi
actor_1_facebook_likes                                                   19000
gross                                                              6.20076e+06
genres                                                            Comedy|Drama
actor_1_name                                                Scarlett Johansson
movie_title                                                       Ghost World 
num_voted_users                                                          96129
cast_total_facebook_likes                                                34106
actor_3_name                                                        T.J. Thyne
facenumber_in_poster                                                         0
plot_keywords                    art class|diner|friend|graduation|high school
movie_imdb_link              http://www.imdb.com/title/tt0162346/?ref_=fn_t...
num_user_for_reviews                                                       488
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   7e+06
title_year                                                                2001
actor_2_facebook_likes                                                   12000
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                      5000
Name: 3674, dtype: object
color                                                                    Color
director_name                                                     Richard Eyre
num_critic_for_reviews                                                     100
duration                                                                    91
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     548
actor_2_name                                                     Jim Broadbent
actor_1_facebook_likes                                                   14000
gross                                                              1.29212e+06
genres                                                 Biography|Drama|Romance
actor_1_name                                                      Kate Winslet
movie_title                                                              Iris 
num_voted_users                                                          14786
cast_total_facebook_likes                                                16768
actor_3_name                                                     Kris Marshall
facenumber_in_poster                                                         1
plot_keywords                    alzheimer's disease|book|love|novelist|writer
movie_imdb_link              http://www.imdb.com/title/tt0280778/?ref_=fn_t...
num_user_for_reviews                                                       144
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 5.5e+06
title_year                                                                2001
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3675, dtype: object
color                                                                    Color
director_name                                                    William Sachs
num_critic_for_reviews                                                      24
duration                                                                    95
director_facebook_likes                                                     14
actor_3_facebook_likes                                                      60
actor_2_name                                                   Avery Schreiber
actor_1_facebook_likes                                                     113
gross                                                                      NaN
genres                                                           Comedy|Sci-Fi
actor_1_name                                                     Stephen Macht
movie_title                                                          Galaxina 
num_voted_users                                                           1955
cast_total_facebook_likes                                                  396
actor_3_name                                                   Angelo Rossitto
facenumber_in_poster                                                         0
plot_keywords                       alien|android|fem bot|female android|stars
movie_imdb_link              http://www.imdb.com/title/tt0080771/?ref_=fn_t...
num_user_for_reviews                                                        44
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1980
actor_2_facebook_likes                                                     110
imdb_score                                                                 3.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       438
Name: 3676, dtype: object
color                                                                    Color
director_name                                             Christophe Barratier
num_critic_for_reviews                                                     112
duration                                                                    97
director_facebook_likes                                                     25
actor_3_facebook_likes                                                      57
actor_2_name                                                 François Berléand
actor_1_facebook_likes                                                     517
gross                                                              3.62976e+06
genres                                                             Drama|Music
actor_1_name                                             Jean-Baptiste Maunier
movie_title                                                        The Chorus 
num_voted_users                                                          44151
cast_total_facebook_likes                                                  745
actor_3_name                                                     Gérard Jugnot
facenumber_in_poster                                                         0
plot_keywords                         boarding school|boy|choir|school|teacher
movie_imdb_link              http://www.imdb.com/title/tt0372824/?ref_=fn_t...
num_user_for_reviews                                                       110
language                                                                French
country                                                                 France
content_rating                                                           PG-13
budget                                                                 5.5e+06
title_year                                                                2004
actor_2_facebook_likes                                                      86
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3677, dtype: object
color                                                                    Color
director_name                                                 Émile Gaudreault
num_critic_for_reviews                                                      67
duration                                                                    92
director_facebook_likes                                                      9
actor_3_facebook_likes                                                      71
actor_2_name                                                        Luke Kirby
actor_1_facebook_likes                                                     636
gross                                                              6.23956e+06
genres                                                            Comedy|Drama
actor_1_name                                                      Paul Sorvino
movie_title                                                    Mambo Italiano 
num_voted_users                                                           5548
cast_total_facebook_likes                                                 1033
actor_3_name                                                     Claudia Ferri
facenumber_in_poster                                                         0
plot_keywords                      gay|immigrant|italian|police|police officer
movie_imdb_link              http://www.imdb.com/title/tt0330602/?ref_=fn_t...
num_user_for_reviews                                                        67
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2003
actor_2_facebook_likes                                                     210
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       352
Name: 3678, dtype: object
color                                                                    Color
director_name                                                        James Cox
num_critic_for_reviews                                                      91
duration                                                                   104
director_facebook_likes                                                     10
actor_3_facebook_likes                                                      93
actor_2_name                                                    Louis Lombardi
actor_1_facebook_likes                                                     715
gross                                                               1.0561e+06
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                     Alexis Dziena
movie_title                                                        Wonderland 
num_voted_users                                                          18792
cast_total_facebook_likes                                                 1315
actor_3_name                                                          Franky G
facenumber_in_poster                                                         0
plot_keywords                murder|police|police investigation|porn star|r...
movie_imdb_link              http://www.imdb.com/title/tt0335563/?ref_=fn_t...
num_user_for_reviews                                                       153
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2003
actor_2_facebook_likes                                                     436
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 3679, dtype: object
color                                                                    Color
director_name                                                        Spike Lee
num_critic_for_reviews                                                     103
duration                                                                   120
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     388
actor_2_name                                                       John Savage
actor_1_facebook_likes                                                     782
gross                                                              2.75454e+07
genres                                                                   Drama
actor_1_name                                                          Ruby Dee
movie_title                                                Do the Right Thing 
num_voted_users                                                          59524
cast_total_facebook_likes                                                 2892
actor_3_name                                                      Danny Aiello
facenumber_in_poster                                                         2
plot_keywords                black militant|frustration|pizza|pizza parlor|...
movie_imdb_link              http://www.imdb.com/title/tt0097216/?ref_=fn_t...
num_user_for_reviews                                                       418
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 6.5e+06
title_year                                                                1989
actor_2_facebook_likes                                                     652
imdb_score                                                                 7.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3680, dtype: object
color                                                                    Color
director_name                                                     James Toback
num_critic_for_reviews                                                      27
duration                                                                    99
director_facebook_likes                                                     56
actor_3_facebook_likes                                                     781
actor_2_name                                                       Eric Stoltz
actor_1_facebook_likes                                                    4000
gross                                                                    56007
genres                                     Comedy|Crime|Drama|Romance|Thriller
actor_1_name                                             Sarah Michelle Gellar
movie_title                                                       Harvard Man 
num_voted_users                                                           3754
cast_total_facebook_likes                                                 6776
actor_3_name                                                 Joey Lauren Adams
facenumber_in_poster                                                         3
plot_keywords                basketball|cheerleader|college|harvard|philosophy
movie_imdb_link              http://www.imdb.com/title/tt0242508/?ref_=fn_t...
num_user_for_reviews                                                        69
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 5.5e+06
title_year                                                                2001
actor_2_facebook_likes                                                     902
imdb_score                                                                 4.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       113
Name: 3681, dtype: object
color                                                                    Color
director_name                                                   Aki Kaurismäki
num_critic_for_reviews                                                     205
duration                                                                    93
director_facebook_likes                                                    592
actor_3_facebook_likes                                                      36
actor_2_name                                                      Kati Outinen
actor_1_facebook_likes                                                     232
gross                                                                   611709
genres                                                            Comedy|Drama
actor_1_name                                                 Jean-Pierre Léaud
movie_title                                                          Le Havre 
num_voted_users                                                          15267
cast_total_facebook_likes                                                  391
actor_3_name                                            Jean-Pierre Darroussin
facenumber_in_poster                                                         1
plot_keywords                bar|container|illegal immigrant|neighbor|shoe ...
movie_imdb_link              http://www.imdb.com/title/tt1508675/?ref_=fn_t...
num_user_for_reviews                                                        41
language                                                                French
country                                                                Finland
content_rating                                                       Not Rated
budget                                                                3.85e+06
title_year                                                                2011
actor_2_facebook_likes                                                      67
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3682, dtype: object
color                                                                    Color
director_name                                                       Gaspar Noé
num_critic_for_reviews                                                     192
duration                                                                    99
director_facebook_likes                                                    929
actor_3_facebook_likes                                                       9
actor_2_name                                                   Albert Dupontel
actor_1_facebook_likes                                                      56
gross                                                                   753501
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                    Philippe Nahon
movie_title                                                      Irreversible 
num_voted_users                                                          87244
cast_total_facebook_likes                                                  118
actor_3_name                                                        Jo Prestia
facenumber_in_poster                                                         0
plot_keywords                long take|male frontal nudity|revenge|reverse ...
movie_imdb_link              http://www.imdb.com/title/tt0290673/?ref_=fn_t...
num_user_for_reviews                                                       664
language                                                                French
country                                                                 France
content_rating                                                       Not Rated
budget                                                                     NaN
title_year                                                                2002
actor_2_facebook_likes                                                      46
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 3683, dtype: object
color                                                                    Color
director_name                                                Hitoshi Matsumoto
num_critic_for_reviews                                                      72
duration                                                                    99
director_facebook_likes                                                     17
actor_3_facebook_likes                                                      16
actor_2_name                                                 Hitoshi Matsumoto
actor_1_facebook_likes                                                      31
gross                                                                    22770
genres                                                            Comedy|Drama
actor_1_name                                               Lindsay Kay Hayward
movie_title                                                              R100 
num_voted_users                                                           1658
cast_total_facebook_likes                                                   81
actor_3_name                                                  Shinobu Terajima
facenumber_in_poster                                                         0
plot_keywords                 coma|one word title|spitting|sushi|swimming pool
movie_imdb_link              http://www.imdb.com/title/tt2914838/?ref_=fn_t...
num_user_for_reviews                                                        12
language                                                              Japanese
country                                                                  Japan
content_rating                                                         Unrated
budget                                                                 5.5e+06
title_year                                                                2013
actor_2_facebook_likes                                                      17
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       543
Name: 3684, dtype: object
color                                                                    Color
director_name                                          Rakeysh Omprakash Mehra
num_critic_for_reviews                                                      33
duration                                                                   157
director_facebook_likes                                                     85
actor_3_facebook_likes                                                     199
actor_2_name                                                 Steven Mackintosh
actor_1_facebook_likes                                                     397
gross                                                              2.19733e+06
genres                                            Comedy|Drama|History|Romance
actor_1_name                                                       Anupam Kher
movie_title                                                   Rang De Basanti 
num_voted_users                                                          70233
cast_total_facebook_likes                                                 1519
actor_3_name                                                          Madhavan
facenumber_in_poster                                                         0
plot_keywords                           freedom|friend|india|student|urination
movie_imdb_link              http://www.imdb.com/title/tt0405508/?ref_=fn_t...
num_user_for_reviews                                                       321
language                                                                 Hindi
country                                                                  India
content_rating                                                       Not Rated
budget                                                                     NaN
title_year                                                                2006
actor_2_facebook_likes                                                     227
imdb_score                                                                 8.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3685, dtype: object
color                                                                    Color
director_name                                                  Collin Schiffli
num_critic_for_reviews                                                      22
duration                                                                    90
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     290
actor_2_name                                                        John Heard
actor_1_facebook_likes                                                     934
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                          Kim Shaw
movie_title                                                           Animals 
num_voted_users                                                            605
cast_total_facebook_likes                                                 2030
actor_3_name                                                David Dastmalchian
facenumber_in_poster                                                         0
plot_keywords                 drug addict|drug addiction|drug use|drugs|junkie
movie_imdb_link              http://www.imdb.com/title/tt3297554/?ref_=fn_t...
num_user_for_reviews                                                         8
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2014
actor_2_facebook_likes                                                     697
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       679
Name: 3686, dtype: object
color                                                                    Color
director_name                                                   George Ratliff
num_critic_for_reviews                                                      48
duration                                                                    96
director_facebook_likes                                                      3
actor_3_facebook_likes                                                      38
actor_2_name                                                        Cree Kelly
actor_1_facebook_likes                                                     472
gross                                                                    27445
genres                                            Action|Comedy|Drama|Thriller
actor_1_name                                                      Jim Gaffigan
movie_title                                               Salvation Boulevard 
num_voted_users                                                           3788
cast_total_facebook_likes                                                  561
actor_3_name                                                        Mike Eshaq
facenumber_in_poster                                                         5
plot_keywords                cross|doused with gasoline|pastor|security gua...
movie_imdb_link              http://www.imdb.com/title/tt1251743/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2011
actor_2_facebook_likes                                                      39
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                      1000
Name: 3687, dtype: object
color                                                                    Color
director_name                                                       David Wain
num_critic_for_reviews                                                      65
duration                                                                    96
director_facebook_likes                                                    136
actor_3_facebook_likes                                                     139
actor_2_name                                                        Ken Marino
actor_1_facebook_likes                                                    4000
gross                                                                   766487
genres                                                          Comedy|Romance
actor_1_name                                                          Jon Hamm
movie_title                                                           The Ten 
num_voted_users                                                          15315
cast_total_facebook_likes                                                 4883
actor_3_name                                                        Ron Silver
facenumber_in_poster                                                         4
plot_keywords                         death|mexico|sabbath|surgeon|ten stories
movie_imdb_link              http://www.imdb.com/title/tt0811106/?ref_=fn_t...
num_user_for_reviews                                                       117
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                5.25e+06
title_year                                                                2007
actor_2_facebook_likes                                                     543
imdb_score                                                                   5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       915
Name: 3688, dtype: object
color                                                                    Color
director_name                                                    Shane Meadows
num_critic_for_reviews                                                      29
duration                                                                    90
director_facebook_likes                                                    222
actor_3_facebook_likes                                                     222
actor_2_name                                                   Paddy Considine
actor_1_facebook_likes                                                    5000
gross                                                                    18434
genres                                                            Comedy|Drama
actor_1_name                                                       Bob Hoskins
movie_title                                            A Room for Romeo Brass 
num_voted_users                                                           4471
cast_total_facebook_likes                                                 6111
actor_3_name                                                     Shane Meadows
facenumber_in_poster                                                         2
plot_keywords                betrayal|family relationships|friendship|psych...
movie_imdb_link              http://www.imdb.com/title/tt0202559/?ref_=fn_t...
num_user_for_reviews                                                        47
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1999
actor_2_facebook_likes                                                     680
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       484
Name: 3689, dtype: object
color                                                                    Color
director_name                                                    Morten Tyldum
num_critic_for_reviews                                                     284
duration                                                                   100
director_facebook_likes                                                     77
actor_3_facebook_likes                                                      27
actor_2_name                                               Synnøve Macody Lund
actor_1_facebook_likes                                                     286
gross                                                              1.19675e+06
genres                                                    Crime|Drama|Thriller
actor_1_name                                                      Aksel Hennie
movie_title                                                       Headhunters 
num_voted_users                                                          79353
cast_total_facebook_likes                                                  385
actor_3_name                                                  Julie R. Ølgaard
facenumber_in_poster                                                         3
plot_keywords                art thief|male frontal nudity|male nudity|male...
movie_imdb_link              http://www.imdb.com/title/tt1614989/?ref_=fn_t...
num_user_for_reviews                                                       121
language                                                             Norwegian
country                                                                 Norway
content_rating                                                               R
budget                                                                3.03e+07
title_year                                                                2011
actor_2_facebook_likes                                                      52
imdb_score                                                                 7.6
aspect_ratio                                                              2.39
movie_facebook_likes                                                     23000
Name: 3690, dtype: object
color                                                                    Color
director_name                                                       Jon Wright
num_critic_for_reviews                                                     187
duration                                                                    94
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     114
actor_2_name                                                     Richard Coyle
actor_1_facebook_likes                                                     796
gross                                                                      NaN
genres                                           Comedy|Horror|Sci-Fi|Thriller
actor_1_name                                                     Russell Tovey
movie_title                                                          Grabbers 
num_voted_users                                                          13227
cast_total_facebook_likes                                                 1832
actor_3_name                                                 Bronagh Gallagher
facenumber_in_poster                                                         0
plot_keywords                bathtub|eaten alive|ferry boat|lobster trap|sp...
movie_imdb_link              http://www.imdb.com/title/tt1525366/?ref_=fn_t...
num_user_for_reviews                                                        70
language                                                               English
country                                                                     UK
content_rating                                                       Not Rated
budget                                                                   4e+06
title_year                                                                2012
actor_2_facebook_likes                                                     567
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     11000
Name: 3691, dtype: object
color                                                                    Color
director_name                                                  Michael McGowan
num_critic_for_reviews                                                      47
duration                                                                    98
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     149
actor_2_name                                                      Adam Butcher
actor_1_facebook_likes                                                     393
gross                                                                   795126
genres                                                      Comedy|Drama|Sport
actor_1_name                                                    Campbell Scott
movie_title                                                       Saint Ralph 
num_voted_users                                                           4976
cast_total_facebook_likes                                                  955
actor_3_name                                                    Gordon Pinsent
facenumber_in_poster                                                         1
plot_keywords                   boston marathon|coma|marathon|miracles|running
movie_imdb_link              http://www.imdb.com/title/tt0384488/?ref_=fn_t...
num_user_for_reviews                                                        52
language                                                               English
country                                                                 Canada
content_rating                                                           PG-13
budget                                                                   6e+06
title_year                                                                2004
actor_2_facebook_likes                                                     259
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       989
Name: 3692, dtype: object
color                                                                    Color
director_name                                                      Liv Ullmann
num_critic_for_reviews                                                      88
duration                                                                   129
director_facebook_likes                                                    440
actor_3_facebook_likes                                                       0
actor_2_name                                                  Jessica Chastain
actor_1_facebook_likes                                                     631
gross                                                                      NaN
genres                                                           Drama|Romance
actor_1_name                                                   Samantha Morton
movie_title                                                        Miss Julie 
num_voted_users                                                           2894
cast_total_facebook_likes                                                  631
actor_3_name                                                     Colin Farrell
facenumber_in_poster                                                         2
plot_keywords                kissing someone's boot|midsummer|telling someo...
movie_imdb_link              http://www.imdb.com/title/tt2667960/?ref_=fn_t...
num_user_for_reviews                                                        14
language                                                               English
country                                                                 Norway
content_rating                                                           PG-13
budget                                                                 5.5e+06
title_year                                                                2014
actor_2_facebook_likes                                                       0
imdb_score                                                                 5.6
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 3693, dtype: object
color                                                                    Color
director_name                                                   Jeannot Szwarc
num_critic_for_reviews                                                      41
duration                                                                   103
director_facebook_likes                                                     82
actor_3_facebook_likes                                                      32
actor_2_name                                                        Bill Erwin
actor_1_facebook_likes                                                     208
gross                                                                      NaN
genres                                                   Drama|Fantasy|Romance
actor_1_name                                                     Teresa Wright
movie_title                                                 Somewhere in Time 
num_voted_users                                                          21049
cast_total_facebook_likes                                                  454
actor_3_name                                                   George Voskovec
facenumber_in_poster                                                         2
plot_keywords                hotel|love|love across time|time travel|time t...
movie_imdb_link              http://www.imdb.com/title/tt0081534/?ref_=fn_t...
num_user_for_reviews                                                       249
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 5.1e+06
title_year                                                                1980
actor_2_facebook_likes                                                     191
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3694, dtype: object
color                                                                    Color
director_name                                                      Rohan Sippy
num_critic_for_reviews                                                      24
duration                                                                   128
director_facebook_likes                                                      4
actor_3_facebook_likes                                                      47
actor_2_name                                                      Bipasha Basu
actor_1_facebook_likes                                                     374
gross                                                                   563699
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                 Abhishek Bachchan
movie_title                                                     Dum Maaro Dum 
num_voted_users                                                           3266
cast_total_facebook_likes                                                  787
actor_3_name                                                           Prateik
facenumber_in_poster                                                         0
plot_keywords                airport|drugs|loss of loved one|police|title b...
movie_imdb_link              http://www.imdb.com/title/tt1618430/?ref_=fn_t...
num_user_for_reviews                                                        27
language                                                                 Hindi
country                                                                  India
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2011
actor_2_facebook_likes                                                     282
imdb_score                                                                 6.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                       421
Name: 3695, dtype: object
color                                                                    Color
director_name                                                        James Wan
num_critic_for_reviews                                                     318
duration                                                                   106
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     482
actor_2_name                                                   Barbara Hershey
actor_1_facebook_likes                                                     852
gross                                                              8.35748e+07
genres                                                 Fantasy|Horror|Thriller
actor_1_name                                                         Lin Shaye
movie_title                                              Insidious: Chapter 2 
num_voted_users                                                         109214
cast_total_facebook_likes                                                 2975
actor_3_name                                                    Leigh Whannell
facenumber_in_poster                                                         0
plot_keywords                barricading a door|injection in leg|police det...
movie_imdb_link              http://www.imdb.com/title/tt2226417/?ref_=fn_t...
num_user_for_reviews                                                       269
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+06
title_year                                                                2013
actor_2_facebook_likes                                                     618
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                     35000
Name: 3696, dtype: object
color                                                                    Color
director_name                                              Darren Lynn Bousman
num_critic_for_reviews                                                     250
duration                                                                    95
director_facebook_likes                                                    163
actor_3_facebook_likes                                                     651
actor_2_name                                                        Tony Nappo
actor_1_facebook_likes                                                    1000
gross                                                              8.70251e+07
genres                                                          Horror|Mystery
actor_1_name                                                Emmanuelle Vaugier
movie_title                                                            Saw II 
num_voted_users                                                         188679
cast_total_facebook_likes                                                 4134
actor_3_name                                                     Shawnee Smith
facenumber_in_poster                                                         0
plot_keywords                     death|detective|nerve gas|serial killer|trap
movie_imdb_link              http://www.imdb.com/title/tt0432348/?ref_=fn_t...
num_user_for_reviews                                                       864
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   4e+06
title_year                                                                2005
actor_2_facebook_likes                                                     654
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3697, dtype: object
color                                                                    Color
director_name                                                 Dan Trachtenberg
num_critic_for_reviews                                                     411
duration                                                                   104
director_facebook_likes                                                     16
actor_3_facebook_likes                                                      82
actor_2_name                                                John Gallagher Jr.
actor_1_facebook_likes                                                   14000
gross                                                              7.18972e+07
genres                                    Drama|Horror|Mystery|Sci-Fi|Thriller
actor_1_name                                                    Bradley Cooper
movie_title                                               10 Cloverfield Lane 
num_voted_users                                                         126893
cast_total_facebook_likes                                                14504
actor_3_name                                                   Sumalee Montano
facenumber_in_poster                                                         0
plot_keywords                   alien|bunker|car crash|kidnapping|minimal cast
movie_imdb_link              http://www.imdb.com/title/tt1179933/?ref_=fn_t...
num_user_for_reviews                                                       440
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.5e+07
title_year                                                                2016
actor_2_facebook_likes                                                     338
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     33000
Name: 3698, dtype: object
color                                                                    Color
director_name                                                    Jeff Tremaine
num_critic_for_reviews                                                     106
duration                                                                    87
director_facebook_likes                                                     79
actor_3_facebook_likes                                                     218
actor_2_name                                                           Steve-O
actor_1_facebook_likes                                                     608
gross                                                              6.42679e+07
genres                                                      Comedy|Documentary
actor_1_name                                                       Bam Margera
movie_title                                                Jackass: The Movie 
num_voted_users                                                          67992
cast_total_facebook_likes                                                 1770
actor_3_name                                                     Chris Pontius
facenumber_in_poster                                                         0
plot_keywords                                 alligator|golf|japan|panda|stunt
movie_imdb_link              http://www.imdb.com/title/tt0322802/?ref_=fn_t...
num_user_for_reviews                                                       327
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2002
actor_2_facebook_likes                                                     362
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3699, dtype: object
color                                                                    Color
director_name                                                David F. Sandberg
num_critic_for_reviews                                                     159
duration                                                                    81
director_facebook_likes                                                     26
actor_3_facebook_likes                                                     300
actor_2_name                                                      Amiah Miller
actor_1_facebook_likes                                                    2000
gross                                                               5.6536e+07
genres                                                                  Horror
actor_1_name                                                       Billy Burke
movie_title                                                        Lights Out 
num_voted_users                                                          13523
cast_total_facebook_likes                                                 3344
actor_3_name                                                   Gabriel Bateman
facenumber_in_poster                                                         0
plot_keywords                based on short film|reference to avenged seven...
movie_imdb_link              http://www.imdb.com/title/tt4786282/?ref_=fn_t...
num_user_for_reviews                                                        95
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.9e+06
title_year                                                                2016
actor_2_facebook_likes                                                     509
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3700, dtype: object
color                                                                    Color
director_name                                                      Henry Joost
num_critic_for_reviews                                                     251
duration                                                                    94
director_facebook_likes                                                     24
actor_3_facebook_likes                                                     434
actor_2_name                                                   Sprague Grayden
actor_1_facebook_likes                                                     581
gross                                                              1.04008e+08
genres                                                                  Horror
actor_1_name                                                    Johanna Braddy
movie_title                                             Paranormal Activity 3 
num_voted_users                                                          76828
cast_total_facebook_likes                                                 2371
actor_3_name                                        Christopher Nicholas Smith
facenumber_in_poster                                                         0
plot_keywords                animate object|imaginary friend|reference to m...
movie_imdb_link              http://www.imdb.com/title/tt1778304/?ref_=fn_t...
num_user_for_reviews                                                       314
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2011
actor_2_facebook_likes                                                     438
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                     24000
Name: 3701, dtype: object
color                                                                    Color
director_name                                                     Stiles White
num_critic_for_reviews                                                     183
duration                                                                    89
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     704
actor_2_name                                                    Shelley Hennig
actor_1_facebook_likes                                                     852
gross                                                              5.08209e+07
genres                                                          Fantasy|Horror
actor_1_name                                                         Lin Shaye
movie_title                                                             Ouija 
num_voted_users                                                          31915
cast_total_facebook_likes                                                 5056
actor_3_name                                                    Daren Kagasoff
facenumber_in_poster                                                         0
plot_keywords                   death of girlfriend|funeral|ghost|ouija|spirit
movie_imdb_link              http://www.imdb.com/title/tt1204977/?ref_=fn_t...
num_user_for_reviews                                                       159
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+06
title_year                                                                2014
actor_2_facebook_likes                                                     707
imdb_score                                                                 4.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     18000
Name: 3702, dtype: object
color                                                                    Color
director_name                                                    Chuck Russell
num_critic_for_reviews                                                     131
duration                                                                    88
director_facebook_likes                                                     55
actor_3_facebook_likes                                                     150
actor_2_name                                                Heather Langenkamp
actor_1_facebook_likes                                                     506
gross                                                              4.47932e+07
genres                                          Action|Fantasy|Horror|Thriller
actor_1_name                                                        John Saxon
movie_title                       A Nightmare on Elm Street 3: Dream Warriors 
num_voted_users                                                          49820
cast_total_facebook_likes                                                 1584
actor_3_name                                                    Jennifer Rubin
facenumber_in_poster                                                         0
plot_keywords                dream|freddy krueger|killer|nightmare|springwo...
movie_imdb_link              http://www.imdb.com/title/tt0093629/?ref_=fn_t...
num_user_for_reviews                                                       311
language                                                               English
country                                                                    USA
content_rating                                                               X
budget                                                                 4.5e+06
title_year                                                                1987
actor_2_facebook_likes                                                     449
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3703, dtype: object
color                                                                    Color
director_name                                                    Joel Edgerton
num_critic_for_reviews                                                     297
duration                                                                   108
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     458
actor_2_name                                                    Allison Tolman
actor_1_facebook_likes                                                    1000
gross                                                              4.37713e+07
genres                                                        Mystery|Thriller
actor_1_name                                                     Busy Philipps
movie_title                                                          The Gift 
num_voted_users                                                          79916
cast_total_facebook_likes                                                 3215
actor_3_name                                                    Wendell Pierce
facenumber_in_poster                                                         1
plot_keywords                compulsive liar|fired from a job|gift|rape|sub...
movie_imdb_link              http://www.imdb.com/title/tt4178092/?ref_=fn_t...
num_user_for_reviews                                                       279
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2015
actor_2_facebook_likes                                                     562
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     15000
Name: 3704, dtype: object
color                                                                    Color
director_name                                                   Eugenio Derbez
num_critic_for_reviews                                                      41
duration                                                                   115
director_facebook_likes                                                    399
actor_3_facebook_likes                                                      83
actor_2_name                                                   Jessica Lindsey
actor_1_facebook_likes                                                     399
gross                                                              4.44565e+07
genres                                                            Comedy|Drama
actor_1_name                                                    Eugenio Derbez
movie_title                                         Instructions Not Included 
num_voted_users                                                          22105
cast_total_facebook_likes                                                  688
actor_3_name                                                     Hugo Stiglitz
facenumber_in_poster                                                         1
plot_keywords                                     father daughter relationship
movie_imdb_link              http://www.imdb.com/title/tt2378281/?ref_=fn_t...
num_user_for_reviews                                                        81
language                                                               Spanish
country                                                                 Mexico
content_rating                                                           PG-13
budget                                                                   5e+06
title_year                                                                2013
actor_2_facebook_likes                                                      89
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     14000
Name: 3705, dtype: object
color                                                                    Color
director_name                                                      Henry Joost
num_critic_for_reviews                                                     248
duration                                                                    96
director_facebook_likes                                                     24
actor_3_facebook_likes                                                     113
actor_2_name                                                 Brendon Eggertsen
actor_1_facebook_likes                                                     235
gross                                                              5.38848e+07
genres                                                                  Horror
actor_1_name                                                      Matt Shively
movie_title                                             Paranormal Activity 4 
num_voted_users                                                          51204
cast_total_facebook_likes                                                  799
actor_3_name                                                        Alisha Boe
facenumber_in_poster                                                         0
plot_keywords                boy in a bathtub|demon|laptop computer|pulled ...
movie_imdb_link              http://www.imdb.com/title/tt2109184/?ref_=fn_t...
num_user_for_reviews                                                       247
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2012
actor_2_facebook_likes                                                     119
imdb_score                                                                 4.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                     26000
Name: 3706, dtype: object
color                                                                    Color
director_name                                                     Henry Koster
num_critic_for_reviews                                                      42
duration                                                                   135
director_facebook_likes                                                     28
actor_3_facebook_likes                                                     275
actor_2_name                                                      Jean Simmons
actor_1_facebook_likes                                                     726
gross                                                                  3.6e+07
genres                                                           Drama|History
actor_1_name                                                    Richard Burton
movie_title                                                          The Robe 
num_voted_users                                                           6359
cast_total_facebook_likes                                                 1920
actor_3_name                                                     Victor Mature
facenumber_in_poster                                                         1
plot_keywords                box office hit|crucifixion|nightmare|palestine...
movie_imdb_link              http://www.imdb.com/title/tt0046247/?ref_=fn_t...
num_user_for_reviews                                                        69
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                   5e+06
title_year                                                                1953
actor_2_facebook_likes                                                     422
imdb_score                                                                 6.8
aspect_ratio                                                               2.2
movie_facebook_likes                                                         0
Name: 3707, dtype: object
color                                                                    Color
director_name                                                    Blake Edwards
num_critic_for_reviews                                                      33
duration                                                                   113
director_facebook_likes                                                    688
actor_3_facebook_likes                                                      80
actor_2_name                                                       Herbert Lom
actor_1_facebook_likes                                                     462
gross                                                                      NaN
genres                                                    Comedy|Crime|Mystery
actor_1_name                                                        Burt Kwouk
movie_title                                    The Return of the Pink Panther 
num_voted_users                                                          19596
cast_total_facebook_likes                                                  971
actor_3_name                                                  Catherine Schell
facenumber_in_poster                                                         0
plot_keywords                       clouseau|diamond|panther|pink|pink panther
movie_imdb_link              http://www.imdb.com/title/tt0072081/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                               English
country                                                                     UK
content_rating                                                               G
budget                                                                   5e+06
title_year                                                                1975
actor_2_facebook_likes                                                     278
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       620
Name: 3708, dtype: object
color                                                                    Color
director_name                                                   Rachel Talalay
num_critic_for_reviews                                                      91
duration                                                                    93
director_facebook_likes                                                     54
actor_3_facebook_likes                                                     581
actor_2_name                                                        Tom Arnold
actor_1_facebook_likes                                                   40000
gross                                                              3.48723e+07
genres                                          Comedy|Fantasy|Horror|Thriller
actor_1_name                                                       Johnny Depp
movie_title                                Freddy's Dead: The Final Nightmare 
num_voted_users                                                          30765
cast_total_facebook_likes                                                42002
actor_3_name                                                      Yaphet Kotto
facenumber_in_poster                                                         0
plot_keywords                dark comedy|dream|freddy krueger|nightmare|ser...
movie_imdb_link              http://www.imdb.com/title/tt0101917/?ref_=fn_t...
num_user_for_reviews                                                       252
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 8.5e+06
title_year                                                                1991
actor_2_facebook_likes                                                     618
imdb_score                                                                 4.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       963
Name: 3709, dtype: object
color                                                                    Color
director_name                                                    Patty Jenkins
num_critic_for_reviews                                                     185
duration                                                                   109
director_facebook_likes                                                    260
actor_3_facebook_likes                                                     592
actor_2_name                                                        Bruce Dern
actor_1_facebook_likes                                                    9000
gross                                                              3.44682e+07
genres                                          Biography|Crime|Drama|Thriller
actor_1_name                                                   Charlize Theron
movie_title                                                           Monster 
num_voted_users                                                         105568
cast_total_facebook_likes                                                11736
actor_3_name                                               Pruitt Taylor Vince
facenumber_in_poster                                                         2
plot_keywords                  beach|female criminal|hooker|lesbian|prostitute
movie_imdb_link              http://www.imdb.com/title/tt0340855/?ref_=fn_t...
num_user_for_reviews                                                       533
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 4.5e+06
title_year                                                                2003
actor_2_facebook_likes                                                     844
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3710, dtype: object
color                                                                    Color
director_name                                                Richard Fleischer
num_critic_for_reviews                                                      69
duration                                                                   127
director_facebook_likes                                                    130
actor_3_facebook_likes                                                      51
actor_2_name                                                   Robert J. Wilke
actor_1_facebook_likes                                                     617
gross                                                                      NaN
genres                                   Adventure|Drama|Family|Fantasy|Sci-Fi
actor_1_name                                                       James Mason
movie_title                                      20,000 Leagues Under the Sea 
num_voted_users                                                          22123
cast_total_facebook_likes                                                  799
actor_3_name                                                        Paul Lukas
facenumber_in_poster                                                         0
plot_keywords                           captain|expedition|sea|submarine|whale
movie_imdb_link              http://www.imdb.com/title/tt0046672/?ref_=fn_t...
num_user_for_reviews                                                       108
language                                                               English
country                                                                    USA
content_rating                                                        Approved
budget                                                                   5e+06
title_year                                                                1954
actor_2_facebook_likes                                                      53
imdb_score                                                                 7.2
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 3711, dtype: object
color                                                                    Color
director_name                                               Christopher Landon
num_critic_for_reviews                                                     220
duration                                                                   101
director_facebook_likes                                                     52
actor_3_facebook_likes                                                     332
actor_2_name                                                   Gloria Sandoval
actor_1_facebook_likes                                                     510
gross                                                              3.24533e+07
genres                                                 Fantasy|Horror|Thriller
actor_1_name                                                    Richard Cabral
movie_title                              Paranormal Activity: The Marked Ones 
num_voted_users                                                          31791
cast_total_facebook_likes                                                 2161
actor_3_name                                                     Molly Ephraim
facenumber_in_poster                                                         0
plot_keywords                apartment|blood|demonic possession|neighbor|pe...
movie_imdb_link              http://www.imdb.com/title/tt2473682/?ref_=fn_t...
num_user_for_reviews                                                       155
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2014
actor_2_facebook_likes                                                     358
imdb_score                                                                   5
aspect_ratio                                                              1.78
movie_facebook_likes                                                     10000
Name: 3712, dtype: object
color                                                          Black and White
director_name                                                      David Lynch
num_critic_for_reviews                                                     117
duration                                                                   124
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     452
actor_2_name                                                     Anne Bancroft
actor_1_facebook_likes                                                   12000
gross                                                                      NaN
genres                                                         Biography|Drama
actor_1_name                                                   Anthony Hopkins
movie_title                                                  The Elephant Man 
num_voted_users                                                         161972
cast_total_facebook_likes                                                13864
actor_3_name                                                   Dexter Fletcher
facenumber_in_poster                                                         1
plot_keywords                curiosity|exploitation|freak|hospital|physical...
movie_imdb_link              http://www.imdb.com/title/tt0080678/?ref_=fn_t...
num_user_for_reviews                                                       356
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   5e+06
title_year                                                                1980
actor_2_facebook_likes                                                     754
imdb_score                                                                 8.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                      9000
Name: 3713, dtype: object
color                                                                    Color
director_name                                                 Jean-Marc Vallée
num_critic_for_reviews                                                     471
duration                                                                   117
director_facebook_likes                                                    212
actor_3_facebook_likes                                                     896
actor_2_name                                                   Jennifer Garner
actor_1_facebook_likes                                                   11000
gross                                                              2.72965e+07
genres                                                         Biography|Drama
actor_1_name                                               Matthew McConaughey
movie_title                                                Dallas Buyers Club 
num_voted_users                                                         326494
cast_total_facebook_likes                                                17738
actor_3_name                                                      Denis O'Hare
facenumber_in_poster                                                         0
plot_keywords                           drugs|fda|gay community|hiv|homophobia
movie_imdb_link              http://www.imdb.com/title/tt0790636/?ref_=fn_t...
num_user_for_reviews                                                       340
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2013
actor_2_facebook_likes                                                    3000
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                     65000
Name: 3714, dtype: object
color                                                                    Color
director_name                                                       David Gelb
num_critic_for_reviews                                                     152
duration                                                                    83
director_facebook_likes                                                     26
actor_3_facebook_likes                                                     801
actor_2_name                                                      Mark Duplass
actor_1_facebook_likes                                                   10000
gross                                                               2.5799e+07
genres                                                  Horror|Sci-Fi|Thriller
actor_1_name                                                      Olivia Wilde
movie_title                                                The Lazarus Effect 
num_voted_users                                                          28513
cast_total_facebook_likes                                                11771
actor_3_name                                                     Donald Glover
facenumber_in_poster                                                         0
plot_keywords                    electrocuted|experiment|hell|serum|university
movie_imdb_link              http://www.imdb.com/title/tt2918436/?ref_=fn_t...
num_user_for_reviews                                                       126
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 3.3e+06
title_year                                                                2015
actor_2_facebook_likes                                                     830
imdb_score                                                                 5.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 3715, dtype: object
color                                                          Black and White
director_name                                                Christopher Nolan
num_critic_for_reviews                                                     274
duration                                                                   113
director_facebook_likes                                                  22000
actor_3_facebook_likes                                                     379
actor_2_name                                                     Thomas Lennon
actor_1_facebook_likes                                                     716
gross                                                              2.55309e+07
genres                                                        Mystery|Thriller
actor_1_name                                                     Callum Rennie
movie_title                                                           Memento 
num_voted_users                                                         845580
cast_total_facebook_likes                                                 1997
actor_3_name                                                         Jorja Fox
facenumber_in_poster                                                         0
plot_keywords                flashback|memory|murder|short term memory|tele...
movie_imdb_link              http://www.imdb.com/title/tt0209144/?ref_=fn_t...
num_user_for_reviews                                                      2067
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   9e+06
title_year                                                                2000
actor_2_facebook_likes                                                     651
imdb_score                                                                 8.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     40000
Name: 3716, dtype: object
color                                                                    Color
director_name                                                    Mike Flanagan
num_critic_for_reviews                                                     336
duration                                                                   104
director_facebook_likes                                                     59
actor_3_facebook_likes                                                     202
actor_2_name                                                     Rory Cochrane
actor_1_facebook_likes                                                     972
gross                                                              2.76895e+07
genres                                                          Horror|Mystery
actor_1_name                                                    James Lafferty
movie_title                                                            Oculus 
num_voted_users                                                          85688
cast_total_facebook_likes                                                 2071
actor_3_name                                                      Garrett Ryan
facenumber_in_poster                                                         0
plot_keywords                home office|mirror|released from a mental hosp...
movie_imdb_link              http://www.imdb.com/title/tt2388715/?ref_=fn_t...
num_user_for_reviews                                                       339
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2013
actor_2_facebook_likes                                                     407
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                     23000
Name: 3717, dtype: object
color                                                          Black and White
director_name                                                      Kevin Smith
num_critic_for_reviews                                                     174
duration                                                                    97
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     657
actor_2_name                                                       Jason Mewes
actor_1_facebook_likes                                                    1000
gross                                                              2.41388e+07
genres                                                                  Comedy
actor_1_name                                                      Ethan Suplee
movie_title                                                         Clerks II 
num_voted_users                                                         114797
cast_total_facebook_likes                                                 2990
actor_3_name                                                  Brian O'Halloran
facenumber_in_poster                                                         3
plot_keywords                fast food|fast food restaurant|new jersey|quic...
movie_imdb_link              http://www.imdb.com/title/tt0424345/?ref_=fn_t...
num_user_for_reviews                                                       472
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2006
actor_2_facebook_likes                                                     898
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3718, dtype: object
color                                                                    Color
director_name                                                   Stephen Daldry
num_critic_for_reviews                                                     151
duration                                                                   110
director_facebook_likes                                                    335
actor_3_facebook_likes                                                      34
actor_2_name                                                        Gary Lewis
actor_1_facebook_likes                                                     838
gross                                                              2.19949e+07
genres                                                             Drama|Music
actor_1_name                                                     Julie Walters
movie_title                                                      Billy Elliot 
num_voted_users                                                          98354
cast_total_facebook_likes                                                 1122
actor_3_name                                                      Jamie Draven
facenumber_in_poster                                                         0
plot_keywords                       audition|ballet|boxing|miner|miners strike
movie_imdb_link              http://www.imdb.com/title/tt0249462/?ref_=fn_t...
num_user_for_reviews                                                       433
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                2000
actor_2_facebook_likes                                                     203
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 3719, dtype: object
color                                                                    Color
director_name                                                        Nat Faxon
num_critic_for_reviews                                                     276
duration                                                                   103
director_facebook_likes                                                    214
actor_3_facebook_likes                                                     424
actor_2_name                                                        Liam James
actor_1_facebook_likes                                                    7000
gross                                                              2.15011e+07
genres                                                            Comedy|Drama
actor_1_name                                                      Steve Carell
movie_title                                                  The Way Way Back 
num_voted_users                                                         115813
cast_total_facebook_likes                                                 8375
actor_3_name                                                          Jim Rash
facenumber_in_poster                                                         1
plot_keywords                   awkward boy|shy kid|summer|vacation|water park
movie_imdb_link              http://www.imdb.com/title/tt1727388/?ref_=fn_t...
num_user_for_reviews                                                       216
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   5e+06
title_year                                                                2013
actor_2_facebook_likes                                                     468
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                     22000
Name: 3720, dtype: object
color                                                                    Color
director_name                                                   George Jackson
num_critic_for_reviews                                                      12
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     287
actor_2_name                                             Tisha Campbell-Martin
actor_1_facebook_likes                                                     901
gross                                                              1.92812e+07
genres                                              Comedy|Drama|Music|Romance
actor_1_name                                                 William Schallert
movie_title                                                     House Party 2 
num_voted_users                                                           3571
cast_total_facebook_likes                                                 2523
actor_3_name                                                      Helen Martin
facenumber_in_poster                                                         0
plot_keywords                          college|misogyny|money|new friend|party
movie_imdb_link              http://www.imdb.com/title/tt0102065/?ref_=fn_t...
num_user_for_reviews                                                        11
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   5e+06
title_year                                                                1991
actor_2_facebook_likes                                                     413
imdb_score                                                                 5.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       232
Name: 3721, dtype: object
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_data_rate_limit`.

Current values:
NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
NotebookApp.rate_limit_window=3.0 (secs)

color                                                                    Color
director_name                                                  William Gazecki
num_critic_for_reviews                                                       9
duration                                                                    96
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     205
actor_2_name                                                     Bruce Vilanch
actor_1_facebook_likes                                                     387
gross                                                                      NaN
genres                                                             Documentary
actor_1_name                                                    Carol Channing
movie_title                                      The Outrageous Sophie Tucker 
num_voted_users                                                             38
cast_total_facebook_likes                                                 1235
actor_3_name                                                      Tony Bennett
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2825768/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  500000
title_year                                                                2014
actor_2_facebook_likes                                                     244
imdb_score                                                                 7.2
aspect_ratio                                                              1.33
movie_facebook_likes                                                        16
Name: 4764, dtype: object
color                                                                    Color
director_name                                                        Ol Parker
num_critic_for_reviews                                                      48
duration                                                                   103
director_facebook_likes                                                     21
actor_3_facebook_likes                                                     680
actor_2_name                                                   Olivia Williams
actor_1_facebook_likes                                                   25000
gross                                                                      NaN
genres                                                           Drama|Romance
actor_1_name                                                     Jeremy Irvine
movie_title                                                       Now Is Good 
num_voted_users                                                          26863
cast_total_facebook_likes                                                26999
actor_3_name                                                   Paddy Considine
facenumber_in_poster                                                         3
plot_keywords                death|dying|leukemia|teenage girl|terminal ill...
movie_imdb_link              http://www.imdb.com/title/tt1937264/?ref_=fn_t...
num_user_for_reviews                                                        54
language                                                               English
country                                                                     UK
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2012
actor_2_facebook_likes                                                     766
imdb_score                                                                 7.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4765, dtype: object
color                                                                    Color
director_name                                              Michael Hoffman Jr.
num_critic_for_reviews                                                      64
duration                                                                   104
director_facebook_likes                                                     32
actor_3_facebook_likes                                                     238
actor_2_name                                                   John McGlothlin
actor_1_facebook_likes                                                     685
gross                                                                      NaN
genres                                                           Comedy|Horror
actor_1_name                                                   Vincent Chimato
movie_title                                                   Girls Gone Dead 
num_voted_users                                                           2012
cast_total_facebook_likes                                                 2102
actor_3_name                                                       Al Sapienza
facenumber_in_poster                                                         2
plot_keywords                  mini skirt|party|spring break|voyeur|war hammer
movie_imdb_link              http://www.imdb.com/title/tt1884318/?ref_=fn_t...
num_user_for_reviews                                                        28
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  500000
title_year                                                                2012
actor_2_facebook_likes                                                     492
imdb_score                                                                 3.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4766, dtype: object
color                                                                    Color
director_name                                                   Patrick Gilles
num_critic_for_reviews                                                     NaN
duration                                                                    90
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     569
actor_2_name                                                       Dylan Baker
actor_1_facebook_likes                                                     970
gross                                                                      NaN
genres                                                                 History
actor_1_name                                                    Emma Caulfield
movie_title                                        America Is Still the Place 
num_voted_users                                                             22
cast_total_facebook_likes                                                 3359
actor_3_name                                                       Mike Colter
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3417110/?ref_=fn_t...
num_user_for_reviews                                                       NaN
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2015
actor_2_facebook_likes                                                     812
imdb_score                                                                 7.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                       337
Name: 4767, dtype: object
color                                                                    Color
director_name                                                   Georgia Hilton
num_critic_for_reviews                                                       1
duration                                                                   122
director_facebook_likes                                                    406
actor_3_facebook_likes                                                     152
actor_2_name                                                         Tim Abell
actor_1_facebook_likes                                                     358
gross                                                                      NaN
genres                                                 Action|Mystery|Thriller
actor_1_name                                                   Mike Beckingham
movie_title                                                      Subconscious 
num_voted_users                                                            292
cast_total_facebook_likes                                                 1038
actor_3_name                                                       Tom Stedham
facenumber_in_poster                                                         0
plot_keywords                military|submarine|suspense|time travel|world ...
movie_imdb_link              http://www.imdb.com/title/tt2909932/?ref_=fn_t...
num_user_for_reviews                                                        16
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2015
actor_2_facebook_likes                                                     317
imdb_score                                                                 2.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                       353
Name: 4768, dtype: object
color                                                                    Color
director_name                                                      Tamra Davis
num_critic_for_reviews                                                     111
duration                                                                    93
director_facebook_likes                                                     33
actor_3_facebook_likes                                                     135
actor_2_name                                                 Katherine Boecher
actor_1_facebook_likes                                                    1000
gross                                                              3.71887e+07
genres                                                            Comedy|Drama
actor_1_name                                                    Britney Spears
movie_title                                                        Crossroads 
num_voted_users                                                          34219
cast_total_facebook_likes                                                 1531
actor_3_name                                                        Dave Allen
facenumber_in_poster                                                         1
plot_keywords                audition|friendship|graduation|high school gra...
movie_imdb_link              http://www.imdb.com/title/tt0275022/?ref_=fn_t...
num_user_for_reviews                                                       578
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.2e+07
title_year                                                                2002
actor_2_facebook_likes                                                     188
imdb_score                                                                 3.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4769, dtype: object
color                                                                    Color
director_name                                                      Jack Heller
num_critic_for_reviews                                                      26
duration                                                                    90
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     120
actor_2_name                                               Katherine Waterston
actor_1_facebook_likes                                                     322
gross                                                                      NaN
genres                                                        Mystery|Thriller
actor_1_name                                                       Shaun Sipos
movie_title                                                     Enter Nowhere 
num_voted_users                                                           5025
cast_total_facebook_likes                                                  630
actor_3_name                                                Christopher Denham
facenumber_in_poster                                                         3
plot_keywords                    cabin|going in circles|pac man|stranger|woods
movie_imdb_link              http://www.imdb.com/title/tt1631707/?ref_=fn_t...
num_user_for_reviews                                                        45
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  500000
title_year                                                                2011
actor_2_facebook_likes                                                     178
imdb_score                                                                 6.6
aspect_ratio                                                               NaN
movie_facebook_likes                                                       701
Name: 4770, dtype: object
color                                                                    Color
director_name                                              Fernando Baez Mella
num_critic_for_reviews                                                       1
duration                                                                   101
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      15
actor_2_name                                                 Christian Alvarez
actor_1_facebook_likes                                                     159
gross                                                                      NaN
genres                                                             Crime|Drama
actor_1_name                                                       Manny Perez
movie_title                                                The King of Najayo 
num_voted_users                                                            197
cast_total_facebook_likes                                                  206
actor_3_name                                                    Claudette Lalí
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2275671/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               Spanish
country                                                     Dominican Republic
content_rating                                                               R
budget                                                                  500000
title_year                                                                2012
actor_2_facebook_likes                                                      15
imdb_score                                                                 6.9
aspect_ratio                                                                16
movie_facebook_likes                                                       126
Name: 4771, dtype: object
color                                                                    Color
director_name                                                  Warren Sheppard
num_critic_for_reviews                                                       3
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     212
actor_2_name                                                 Randy Jay Burrell
actor_1_facebook_likes                                                     918
gross                                                                      NaN
genres                                                    Action|Romance|Sport
actor_1_name                                                     Jennifer Hale
movie_title                                               Fight to the Finish 
num_voted_users                                                             60
cast_total_facebook_likes                                                 2091
actor_3_name                                                   Vincent De Paul
facenumber_in_poster                                                         0
plot_keywords                                                  fighting|karate
movie_imdb_link              http://www.imdb.com/title/tt3152288/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                  150000
title_year                                                                2016
actor_2_facebook_likes                                                     402
imdb_score                                                                   4
aspect_ratio                                                               NaN
movie_facebook_likes                                                       381
Name: 4772, dtype: object
color                                                                    Color
director_name                                              Darren Lynn Bousman
num_critic_for_reviews                                                      10
duration                                                                    97
director_facebook_likes                                                    163
actor_3_facebook_likes                                                     303
actor_2_name                                                    Barry Bostwick
actor_1_facebook_likes                                                     636
gross                                                                      NaN
genres                                                          Horror|Musical
actor_1_name                                                      Paul Sorvino
movie_title                                    Alleluia! The Devil's Carnival 
num_voted_users                                                            259
cast_total_facebook_likes                                                 2438
actor_3_name                                                  Terrance Zdunich
facenumber_in_poster                                                         5
plot_keywords                       carnival|devil|redemption|reference to god
movie_imdb_link              http://www.imdb.com/title/tt3892618/?ref_=fn_t...
num_user_for_reviews                                                        20
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  500000
title_year                                                                2016
actor_2_facebook_likes                                                     456
imdb_score                                                                 7.4
aspect_ratio                                                              1.78
movie_facebook_likes                                                       707
Name: 4773, dtype: object
color                                                                    Color
director_name                                               Justin Paul Miller
num_critic_for_reviews                                                       1
duration                                                                    90
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      33
actor_2_name                                                    Jennifer Landa
actor_1_facebook_likes                                                      84
gross                                                                      NaN
genres                                                 Comedy|Mystery|Thriller
actor_1_name                                                   Mary Kate Wiles
movie_title                                          The Sound and the Shadow 
num_voted_users                                                             30
cast_total_facebook_likes                                                  254
actor_3_name                                                      Felix Avitia
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2190180/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2014
actor_2_facebook_likes                                                      41
imdb_score                                                                 8.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                        70
Name: 4774, dtype: object
color                                                                    Color
director_name                                                 Joel Paul Reisig
num_critic_for_reviews                                                       1
duration                                                                   108
director_facebook_likes                                                    431
actor_3_facebook_likes                                                     317
actor_2_name                                                  Joel Paul Reisig
actor_1_facebook_likes                                                     466
gross                                                                      NaN
genres                                                                  Family
actor_1_name                                                 Carrie Bradstreet
movie_title                                                        Rodeo Girl 
num_voted_users                                                             62
cast_total_facebook_likes                                                 1628
actor_3_name                                                     Yassie Hawkes
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt4062896/?ref_=fn_t...
num_user_for_reviews                                                         4
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                  500000
title_year                                                                2016
actor_2_facebook_likes                                                     431
imdb_score                                                                 5.7
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 4775, dtype: object
color                                                                    Color
director_name                                                   Catherine Gund
num_critic_for_reviews                                                      10
duration                                                                    82
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                      Sarah Callan
actor_1_facebook_likes                                                       0
gross                                                                    21199
genres                                      Action|Biography|Documentary|Sport
actor_1_name                                                   Elizabeth Streb
movie_title                          Born to Fly: Elizabeth Streb vs. Gravity 
num_voted_users                                                             40
cast_total_facebook_likes                                                    0
actor_3_name                                                    Laura Flanders
facenumber_in_poster                                                         1
plot_keywords                                                 three word title
movie_imdb_link              http://www.imdb.com/title/tt2246526/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  500000
title_year                                                                2014
actor_2_facebook_likes                                                       0
imdb_score                                                                 6.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                        44
Name: 4776, dtype: object
color                                                                    Color
director_name                                                         Luke Dye
num_critic_for_reviews                                                       1
duration                                                                    84
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      53
actor_2_name                                                      Jeff Delaney
actor_1_facebook_likes                                                     385
gross                                                                      NaN
genres                                                                  Family
actor_1_name                                                      Mike Stanley
movie_title                                          The Little Ponderosa Zoo 
num_voted_users                                                             15
cast_total_facebook_likes                                                  683
actor_3_name                                                Jamison Stalsworth
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3846442/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  500000
title_year                                                                2016
actor_2_facebook_likes                                                     169
imdb_score                                                                 5.2
aspect_ratio                                                                16
movie_facebook_likes                                                         9
Name: 4777, dtype: object
color                                                                    Color
director_name                                                        Sam Raimi
num_critic_for_reviews                                                     525
duration                                                                   130
director_facebook_likes                                                      0
actor_3_facebook_likes                                                   11000
actor_2_name                                                        Mila Kunis
actor_1_facebook_likes                                                   44000
gross                                                              2.34903e+08
genres                                                Adventure|Family|Fantasy
actor_1_name                                                        Tim Holmes
movie_title                                         Oz the Great and Powerful 
num_voted_users                                                         175413
cast_total_facebook_likes                                                73441
actor_3_name                                                      James Franco
facenumber_in_poster                                                         4
plot_keywords                                   circus|magic|magician|oz|witch
movie_imdb_link              http://www.imdb.com/title/tt1623205/?ref_=fn_t...
num_user_for_reviews                                                       511
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                2.15e+08
title_year                                                                2013
actor_2_facebook_likes                                                   15000
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     60000
Name: 4778, dtype: object
color                                                                    Color
director_name                                                     Michael Herz
num_critic_for_reviews                                                      96
duration                                                                    91
director_facebook_likes                                                      6
actor_3_facebook_likes                                                      10
actor_2_name                                                        Mark Torgl
actor_1_facebook_likes                                                     488
gross                                                                      NaN
genres                                             Action|Comedy|Horror|Sci-Fi
actor_1_name                                                Patrick Kilpatrick
movie_title                                                 The Toxic Avenger 
num_voted_users                                                          19253
cast_total_facebook_likes                                                  553
actor_3_name                                                          Pat Ryan
facenumber_in_poster                                                         0
plot_keywords                      boy|health club|superhero|toxic waste|troma
movie_imdb_link              http://www.imdb.com/title/tt0090190/?ref_=fn_t...
num_user_for_reviews                                                       147
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                  475000
title_year                                                                1984
actor_2_facebook_likes                                                      11
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4779, dtype: object
color                                                                    Color
director_name                                                       Matty Rich
num_critic_for_reviews                                                       8
duration                                                                    91
director_facebook_likes                                                     10
actor_3_facebook_likes                                                      10
actor_2_name                                                    George T. Odom
actor_1_facebook_likes                                                     353
gross                                                              2.71229e+06
genres                                                             Crime|Drama
actor_1_name                                             Lawrence Gilliard Jr.
movie_title                                          Straight Out of Brooklyn 
num_voted_users                                                            475
cast_total_facebook_likes                                                  380
actor_3_name                                                        Matty Rich
facenumber_in_poster                                                         4
plot_keywords                domestic violence|housing project|new york cit...
movie_imdb_link              http://www.imdb.com/title/tt0102989/?ref_=fn_t...
num_user_for_reviews                                                        11
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  450000
title_year                                                                1991
actor_2_facebook_likes                                                      12
imdb_score                                                                 5.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       123
Name: 4780, dtype: object
color                                                                    Color
director_name                                                  Paul Greengrass
num_critic_for_reviews                                                      92
duration                                                                   107
director_facebook_likes                                                    521
actor_3_facebook_likes                                                      80
actor_2_name                                                  Nicholas Farrell
actor_1_facebook_likes                                                     773
gross                                                                   768045
genres                                                       Drama|History|War
actor_1_name                                                     James Nesbitt
movie_title                                                     Bloody Sunday 
num_voted_users                                                          19732
cast_total_facebook_likes                                                  976
actor_3_name                                                  Tim Pigott-Smith
facenumber_in_poster                                                         0
plot_keywords                civil rights|irish|march|northern ireland|prot...
movie_imdb_link              http://www.imdb.com/title/tt0280491/?ref_=fn_t...
num_user_for_reviews                                                       120
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                   2e+06
title_year                                                                2002
actor_2_facebook_likes                                                      89
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4781, dtype: object
color                                                                    Color
director_name                                                       Alec Asten
num_critic_for_reviews                                                       1
duration                                                                    82
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     237
actor_2_name                                                 Dennis L.A. White
actor_1_facebook_likes                                                     472
gross                                                                      NaN
genres                                                                  Action
actor_1_name                                                      Luis Sanchez
movie_title                                                      Diamond Ruff 
num_voted_users                                                             53
cast_total_facebook_likes                                                 1752
actor_3_name                                                      Fredro Starr
facenumber_in_poster                                                         6
plot_keywords                prison|prisoner|reverend|terminal illness|two ...
movie_imdb_link              http://www.imdb.com/title/tt2111292/?ref_=fn_t...
num_user_for_reviews                                                         5
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  500000
title_year                                                                2015
actor_2_facebook_likes                                                     251
imdb_score                                                                 4.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                        62
Name: 4782, dtype: object
color                                                                    Color
director_name                                                      Hans Canosa
num_critic_for_reviews                                                     365
duration                                                                    84
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     446
actor_2_name                                                     Thomas Lennon
actor_1_facebook_likes                                                   10000
gross                                                                   379122
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Olivia Wilde
movie_title                                    Conversations with Other Women 
num_voted_users                                                          10143
cast_total_facebook_likes                                                12496
actor_3_name                                                     Nora Zehetner
facenumber_in_poster                                                         0
plot_keywords                female frontal nudity|filming a wedding|linger...
movie_imdb_link              http://www.imdb.com/title/tt0435623/?ref_=fn_t...
num_user_for_reviews                                                        54
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                  450000
title_year                                                                2005
actor_2_facebook_likes                                                     651
imdb_score                                                                 7.1
aspect_ratio                                                              2.39
movie_facebook_likes                                                         0
Name: 4783, dtype: object
color                                                                    Color
director_name                                                    Lloyd Kaufman
num_critic_for_reviews                                                      88
duration                                                                   103
director_facebook_likes                                                    365
actor_3_facebook_likes                                                      49
actor_2_name                                                     Lloyd Kaufman
actor_1_facebook_likes                                                     907
gross                                                                    23000
genres                                                   Comedy|Horror|Musical
actor_1_name                                                       John Karyus
movie_title                           Poultrygeist: Night of the Chicken Dead 
num_voted_users                                                           5931
cast_total_facebook_likes                                                 1411
actor_3_name                                                       Kate Graham
facenumber_in_poster                                                         0
plot_keywords                castration|chicken|fast food|indian burial gro...
movie_imdb_link              http://www.imdb.com/title/tt0462485/?ref_=fn_t...
num_user_for_reviews                                                        58
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                  500000
title_year                                                                2006
actor_2_facebook_likes                                                     365
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4784, dtype: object
color                                                                    Color
director_name                                                    Matthew Watts
num_critic_for_reviews                                                       3
duration                                                                    86
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     304
actor_2_name                                                  Cheyenne Jackson
actor_1_facebook_likes                                                     873
gross                                                                      NaN
genres                                                          Comedy|Romance
actor_1_name                                                  Jennifer Lafleur
movie_title                                                    Mutual Friends 
num_voted_users                                                             64
cast_total_facebook_likes                                                 2830
actor_3_name                                               Michael Stahl-David
facenumber_in_poster                                                         1
plot_keywords                bromance|manhattan new york city|new york city...
movie_imdb_link              http://www.imdb.com/title/tt2112209/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  450000
title_year                                                                2013
actor_2_facebook_likes                                                     469
imdb_score                                                                 6.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                        31
Name: 4785, dtype: object
color                                                          Black and White
director_name                                                      Lloyd Bacon
num_critic_for_reviews                                                      65
duration                                                                    89
director_facebook_likes                                                     24
actor_3_facebook_likes                                                      45
actor_2_name                                                       Dick Powell
actor_1_facebook_likes                                                     610
gross                                                                  2.3e+06
genres                                                  Comedy|Musical|Romance
actor_1_name                                                     Ginger Rogers
movie_title                                                       42nd Street 
num_voted_users                                                           7921
cast_total_facebook_likes                                                  995
actor_3_name                                                      George Brent
facenumber_in_poster                                                         2
plot_keywords                chorus girl|chorus line|director|gala premiere...
movie_imdb_link              http://www.imdb.com/title/tt0024034/?ref_=fn_t...
num_user_for_reviews                                                        97
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                  439000
title_year                                                                1933
actor_2_facebook_likes                                                     105
imdb_score                                                                 7.7
aspect_ratio                                                              1.37
movie_facebook_likes                                                       439
Name: 4786, dtype: object
color                                                                    Color
director_name                                                     Joe Kenemore
num_critic_for_reviews                                                     NaN
duration                                                                    52
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                     Jack Canfield
actor_1_facebook_likes                                                       8
gross                                                                      NaN
genres                                                             Documentary
actor_1_name                                                       Bob Proctor
movie_title                  Rise of the Entrepreneur: The Search for a Bet...
num_voted_users                                                             78
cast_total_facebook_likes                                                   10
actor_3_name                                                        Eric Worre
facenumber_in_poster                                                         0
plot_keywords                          business|entrepreneur|network marketing
movie_imdb_link              http://www.imdb.com/title/tt4273494/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                  450000
title_year                                                                2014
actor_2_facebook_likes                                                       2
imdb_score                                                                 8.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                       460
Name: 4787, dtype: object
color                                                                    Color
director_name                                                    Whit Stillman
num_critic_for_reviews                                                      71
duration                                                                    98
director_facebook_likes                                                     89
actor_3_facebook_likes                                                       3
actor_2_name                                                    Taylor Nichols
actor_1_facebook_likes                                                      88
gross                                                              2.93821e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Chris Eigeman
movie_title                                                      Metropolitan 
num_voted_users                                                           7143
cast_total_facebook_likes                                                  173
actor_3_name                                                    Ellia Thompson
facenumber_in_poster                                                         1
plot_keywords                 apartment|dancing|debutante|new york|upper class
movie_imdb_link              http://www.imdb.com/title/tt0100142/?ref_=fn_t...
num_user_for_reviews                                                        52
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                  225000
title_year                                                                1990
actor_2_facebook_likes                                                      74
imdb_score                                                                 7.5
aspect_ratio                                                              1.66
movie_facebook_likes                                                       865
Name: 4788, dtype: object
color                                                                    Color
director_name                                                       Kay Pollak
num_critic_for_reviews                                                      34
duration                                                                   133
director_facebook_likes                                                     10
actor_3_facebook_likes                                                      19
actor_2_name                                                    Frida Hallgren
actor_1_facebook_likes                                                     690
gross                                                                     9910
genres                                              Comedy|Drama|Music|Romance
actor_1_name                                                   Michael Nyqvist
movie_title                                                As It Is in Heaven 
num_voted_users                                                          13543
cast_total_facebook_likes                                                  774
actor_3_name                                             Nils-Anders Vallgårda
facenumber_in_poster                                                        15
plot_keywords                amazing grace the hymn|choir|heart attack|home...
movie_imdb_link              http://www.imdb.com/title/tt0382330/?ref_=fn_t...
num_user_for_reviews                                                        94
language                                                               Swedish
country                                                                 Sweden
content_rating                                                             NaN
budget                                                                 2.5e+07
title_year                                                                2004
actor_2_facebook_likes                                                      24
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4789, dtype: object
color                                                                    Color
director_name                                                     Eric England
num_critic_for_reviews                                                      15
duration                                                                    81
director_facebook_likes                                                     15
actor_3_facebook_likes                                                      93
actor_2_name                                                       Ace Marrero
actor_1_facebook_likes                                                     847
gross                                                                      NaN
genres                                           Drama|Horror|Mystery|Thriller
actor_1_name                                                  Jack E. Curenton
movie_title                                                          Roadside 
num_voted_users                                                            268
cast_total_facebook_likes                                                 1151
actor_3_name                                                Alan Pietruszewski
facenumber_in_poster                                                         0
plot_keywords                dog|gun|hostage|husband wife relationship|jeal...
movie_imdb_link              http://www.imdb.com/title/tt1958007/?ref_=fn_t...
num_user_for_reviews                                                         6
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2013
actor_2_facebook_likes                                                      94
imdb_score                                                                 4.1
aspect_ratio                                                                16
movie_facebook_likes                                                        61
Name: 4790, dtype: object
color                                                                    Color
director_name                                                       Jared Hess
num_critic_for_reviews                                                     220
duration                                                                    92
director_facebook_likes                                                    100
actor_3_facebook_likes                                                     482
actor_2_name                                                    Diedrich Bader
actor_1_facebook_likes                                                     970
gross                                                               4.4541e+07
genres                                                                  Comedy
actor_1_name                                                         Jon Heder
movie_title                                                 Napoleon Dynamite 
num_voted_users                                                         161448
cast_total_facebook_likes                                                 3950
actor_3_name                                                         Jon Gries
facenumber_in_poster                                                         0
plot_keywords                class president|family relationships|friend|hi...
movie_imdb_link              http://www.imdb.com/title/tt0374900/?ref_=fn_t...
num_user_for_reviews                                                      1473
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                  400000
title_year                                                                2004
actor_2_facebook_likes                                                     759
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4791, dtype: object
color                                                                    Color
director_name                                                  Jeremy Saulnier
num_critic_for_reviews                                                     279
duration                                                                    90
director_facebook_likes                                                     57
actor_3_facebook_likes                                                      92
actor_2_name                                                         Eve Plumb
actor_1_facebook_likes                                                    1000
gross                                                                   258113
genres                                                    Crime|Drama|Thriller
actor_1_name                                                      Devin Ratray
movie_title                                                         Blue Ruin 
num_voted_users                                                          42678
cast_total_facebook_likes                                                 1528
actor_3_name                                                    Amy Hargreaves
facenumber_in_poster                                                         0
plot_keywords                   blood splatter|car|neo noir|vengeance|vomiting
movie_imdb_link              http://www.imdb.com/title/tt2359024/?ref_=fn_t...
num_user_for_reviews                                                       135
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                             1.06617e+06
title_year                                                                2013
actor_2_facebook_likes                                                     235
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4792, dtype: object
color                                                                    Color
director_name                                                        Oren Peli
num_critic_for_reviews                                                     409
duration                                                                    84
director_facebook_likes                                                    110
actor_3_facebook_likes                                                      21
actor_2_name                                                     Ashley Palmer
actor_1_facebook_likes                                                     189
gross                                                              1.07917e+08
genres                                                                  Horror
actor_1_name                                                       Micah Sloat
movie_title                                               Paranormal Activity 
num_voted_users                                                         184824
cast_total_facebook_likes                                                  330
actor_3_name                                                   Amber Armstrong
facenumber_in_poster                                                         0
plot_keywords                dark force|entity|evil force|found footage|par...
movie_imdb_link              http://www.imdb.com/title/tt1179904/?ref_=fn_t...
num_user_for_reviews                                                      1189
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   15000
title_year                                                                2007
actor_2_facebook_likes                                                     109
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     12000
Name: 4793, dtype: object
color                                                          Black and White
director_name                                                    Stacy Peralta
num_critic_for_reviews                                                      86
duration                                                                    91
director_facebook_likes                                                    147
actor_3_facebook_likes                                                       5
actor_2_name                                                         Jay Adams
actor_1_facebook_likes                                                      22
gross                                                               1.2933e+06
genres                                                       Documentary|Sport
actor_1_name                                                         Tony Alva
movie_title                                                Dogtown and Z-Boys 
num_voted_users                                                          10366
cast_total_facebook_likes                                                   54
actor_3_name                                                        Jeff Ament
facenumber_in_poster                                                         0
plot_keywords                california|drought|playground|skateboarding|su...
movie_imdb_link              http://www.imdb.com/title/tt0275309/?ref_=fn_t...
num_user_for_reviews                                                        88
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2001
actor_2_facebook_likes                                                      20
imdb_score                                                                 7.7
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 4794, dtype: object
color                                                                    Color
director_name                                                    Terry Gilliam
num_critic_for_reviews                                                     131
duration                                                                    91
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     332
actor_2_name                                                     Michael Palin
actor_1_facebook_likes                                                     795
gross                                                               1.2292e+06
genres                                                Adventure|Comedy|Fantasy
actor_1_name                                                         Eric Idle
movie_title                                   Monty Python and the Holy Grail 
num_voted_users                                                         382240
cast_total_facebook_likes                                                 2158
actor_3_name                                                       Terry Jones
facenumber_in_poster                                                         0
plot_keywords                   camelot|holy grail|king arthur|knight|lancelot
movie_imdb_link              http://www.imdb.com/title/tt0071853/?ref_=fn_t...
num_user_for_reviews                                                       660
language                                                               English
country                                                                     UK
content_rating                                                              PG
budget                                                                  229575
title_year                                                                1975
actor_2_facebook_likes                                                     561
imdb_score                                                                 8.3
aspect_ratio                                                              1.66
movie_facebook_likes                                                     14000
Name: 4795, dtype: object
color                                                                    Color
director_name                                                  Richard Glatzer
num_critic_for_reviews                                                      69
duration                                                                    90
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     138
actor_2_name                                                      Jesse Garcia
actor_1_facebook_likes                                                     231
gross                                                                 1.69e+06
genres                                                                   Drama
actor_1_name                                                        Emily Rios
movie_title                                                       Quinceañera 
num_voted_users                                                           3675
cast_total_facebook_likes                                                  771
actor_3_name                                                     Alicia Sixtos
facenumber_in_poster                                                         1
plot_keywords                  15th birthday|birthday|gay|party|security guard
movie_imdb_link              http://www.imdb.com/title/tt0451176/?ref_=fn_t...
num_user_for_reviews                                                        48
language                                                               Spanish
country                                                                    USA
content_rating                                                               R
budget                                                                  400000
title_year                                                                2006
actor_2_facebook_likes                                                     200
imdb_score                                                                 7.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                       426
Name: 4796, dtype: object
color                                                                    Color
director_name                                                     Sue Corcoran
num_critic_for_reviews                                                       8
duration                                                                    96
director_facebook_likes                                                     14
actor_3_facebook_likes                                                       6
actor_2_name                                                      Sue Corcoran
actor_1_facebook_likes                                                     361
gross                                                                    11798
genres                                           Comedy|Fantasy|Horror|Musical
actor_1_name                                                        Tony Doupe
movie_title                                              Gory Gory Hallelujah 
num_voted_users                                                            179
cast_total_facebook_likes                                                  387
actor_3_name                                             David Frederick White
facenumber_in_poster                                                         2
plot_keywords                conspiracy|feminist|hippie|motorcycle|slapstic...
movie_imdb_link              http://www.imdb.com/title/tt0396041/?ref_=fn_t...
num_user_for_reviews                                                        18
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  100000
title_year                                                                2003
actor_2_facebook_likes                                                      14
imdb_score                                                                 4.7
aspect_ratio                                                              1.78
movie_facebook_likes                                                        39
Name: 4797, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      75
duration                                                                    60
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     833
actor_2_name                                                          Masi Oka
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                           Drama|Fantasy|Sci-Fi|Thriller
actor_1_name                                                Sendhil Ramamurthy
movie_title                                                Heroes             
num_voted_users                                                         202115
cast_total_facebook_likes                                                 4908
actor_3_name                                                     Greg Grunberg
facenumber_in_poster                                                         4
plot_keywords                father daughter relationship|serial killer|sup...
movie_imdb_link              http://www.imdb.com/title/tt0813715/?ref_=fn_t...
num_user_for_reviews                                                       379
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     923
imdb_score                                                                 7.7
aspect_ratio                                                                16
movie_facebook_likes                                                         0
Name: 4798, dtype: object
color                                                                    Color
director_name                                                Jonathan Caouette
num_critic_for_reviews                                                      72
duration                                                                    88
director_facebook_likes                                                     20
actor_3_facebook_likes                                                       0
actor_2_name                                                 Jonathan Caouette
actor_1_facebook_likes                                                      58
gross                                                                   592014
genres                                                   Biography|Documentary
actor_1_name                                                        Greg Ayres
movie_title                                                         Tarnation 
num_voted_users                                                           5709
cast_total_facebook_likes                                                   78
actor_3_name                                                     Renee Leblanc
facenumber_in_poster                                                         3
plot_keywords                answering machine|home movie|lithium|schizophr...
movie_imdb_link              http://www.imdb.com/title/tt0390538/?ref_=fn_t...
num_user_for_reviews                                                       114
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                     218
title_year                                                                2003
actor_2_facebook_likes                                                      20
imdb_score                                                                 7.2
aspect_ratio                                                              1.37
movie_facebook_likes                                                       754
Name: 4799, dtype: object
color                                                                    Color
director_name                                                       Ray Griggs
num_critic_for_reviews                                                       4
duration                                                                    92
director_facebook_likes                                                      4
actor_3_facebook_likes                                                      12
actor_2_name                                                         Chris Cox
actor_1_facebook_likes                                                      93
gross                                                                   425899
genres                                                             Documentary
actor_1_name                                                       Bill Farmer
movie_title                                                 I Want Your Money 
num_voted_users                                                           1123
cast_total_facebook_likes                                                  168
actor_3_name                                                     Mike Huckabee
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1560957/?ref_=fn_t...
num_user_for_reviews                                                        31
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                  400000
title_year                                                                2010
actor_2_facebook_likes                                                      31
imdb_score                                                                 5.1
aspect_ratio                                                              1.78
movie_facebook_likes                                                       638
Name: 4800, dtype: object
color                                                                    Color
director_name                                                     Matt Jackson
num_critic_for_reviews                                                       9
duration                                                                    97
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     271
actor_2_name                                                         Paul Elia
actor_1_facebook_likes                                                     935
gross                                                                      NaN
genres                                                           Comedy|Horror
actor_1_name                                                       Kane Hodder
movie_title                                      Love in the Time of Monsters 
num_voted_users                                                            143
cast_total_facebook_likes                                                 2350
actor_3_name                                                      Alex Sanborn
facenumber_in_poster                                                         3
plot_keywords                           bigfoot|love|monster|sasquatch|tourist
movie_imdb_link              http://www.imdb.com/title/tt2403415/?ref_=fn_t...
num_user_for_reviews                                                         5
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  500000
title_year                                                                2014
actor_2_facebook_likes                                                     709
imdb_score                                                                 5.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                       194
Name: 4801, dtype: object
color                                                          Black and White
director_name                                                      Lucio Fulci
num_critic_for_reviews                                                     203
duration                                                                    82
director_facebook_likes                                                    385
actor_3_facebook_likes                                                      22
actor_2_name                                                     David Warbeck
actor_1_facebook_likes                                                      48
gross                                                                   126387
genres                                                                  Horror
actor_1_name                                                  Catriona MacColl
movie_title                                                        The Beyond 
num_voted_users                                                          14985
cast_total_facebook_likes                                                  123
actor_3_name                                                         Al Cliver
facenumber_in_poster                                                         0
plot_keywords                                doctor|hell|hotel|painter|plumber
movie_imdb_link              http://www.imdb.com/title/tt0082307/?ref_=fn_t...
num_user_for_reviews                                                       253
language                                                               Italian
country                                                                  Italy
content_rating                                                               X
budget                                                                  400000
title_year                                                                1981
actor_2_facebook_likes                                                      22
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 4802, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      11
duration                                                                    22
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                       6
actor_2_name                                                         Ron Lynch
actor_1_facebook_likes                                                      59
gross                                                                      NaN
genres                                                  Animation|Comedy|Drama
actor_1_name                                                     Brendon Small
movie_title                                           Home Movies             
num_voted_users                                                           7458
cast_total_facebook_likes                                                   81
actor_3_name                                             Melissa Bardin Galsky
facenumber_in_poster                                                         0
plot_keywords                             coach|friend|school|series|tv series
movie_imdb_link              http://www.imdb.com/title/tt0197159/?ref_=fn_t...
num_user_for_reviews                                                        82
language                                                               English
country                                                                    USA
content_rating                                                           TV-PG
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                      11
imdb_score                                                                 8.2
aspect_ratio                                                              1.33
movie_facebook_likes                                                       526
Name: 4803, dtype: object
color                                                                    Color
director_name                                                      Tom Vaughan
num_critic_for_reviews                                                     148
duration                                                                   101
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     149
actor_2_name                                                       Andrew Daly
actor_1_facebook_likes                                                     642
gross                                                              8.02769e+07
genres                                                          Comedy|Romance
actor_1_name                                                    Treat Williams
movie_title                                             What Happens in Vegas 
num_voted_users                                                         140740
cast_total_facebook_likes                                                 1026
actor_3_name                                                  Michelle Krusiec
facenumber_in_poster                                                         2
plot_keywords                casino|father son relationship|jackpot|judge|w...
movie_imdb_link              http://www.imdb.com/title/tt1033643/?ref_=fn_t...
num_user_for_reviews                                                       151
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 3.5e+07
title_year                                                                2008
actor_2_facebook_likes                                                     171
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4804, dtype: object
color                                                                    Color
director_name                                                         Paul Fox
num_critic_for_reviews                                                      80
duration                                                                    80
director_facebook_likes                                                      3
actor_3_facebook_likes                                                      39
actor_2_name                                                      Jeff Seymour
actor_1_facebook_likes                                                     108
gross                                                                      NaN
genres                                                         Horror|Thriller
actor_1_name                                                    Dov Tiefenbach
movie_title                                                    The Dark Hours 
num_voted_users                                                           4788
cast_total_facebook_likes                                                  272
actor_3_name                                                     Gordon Currie
facenumber_in_poster                                                         0
plot_keywords                  brain tumor|champagne|game|psychiatrist|weekend
movie_imdb_link              http://www.imdb.com/title/tt0402249/?ref_=fn_t...
num_user_for_reviews                                                        52
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                  500000
title_year                                                                2005
actor_2_facebook_likes                                                      64
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       166
Name: 4805, dtype: object
color                                                                    Color
director_name                                                   Stephen Frears
num_critic_for_reviews                                                      46
duration                                                                    97
director_facebook_likes                                                    350
actor_3_facebook_likes                                                      33
actor_2_name                                                       Roshan Seth
actor_1_facebook_likes                                                     114
gross                                                                      NaN
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Saeed Jaffrey
movie_title                                           My Beautiful Laundrette 
num_voted_users                                                          10577
cast_total_facebook_likes                                                  260
actor_3_name                                                      Garry Cooper
facenumber_in_poster                                                         1
plot_keywords                     england|mistress|pakistani|politics|thatcher
movie_imdb_link              http://www.imdb.com/title/tt0091578/?ref_=fn_t...
num_user_for_reviews                                                        64
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                  650000
title_year                                                                1985
actor_2_facebook_likes                                                      61
imdb_score                                                                 6.9
aspect_ratio                                                              1.66
movie_facebook_likes                                                         0
Name: 4806, dtype: object
color                                                          Black and White
director_name                                                 Ari Kirschenbaum
num_critic_for_reviews                                                       8
duration                                                                    84
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      36
actor_2_name                                                      Adam LeFevre
actor_1_facebook_likes                                                     169
gross                                                                    25918
genres                                           Drama|Horror|Mystery|Thriller
actor_1_name                                                R. Brandon Johnson
movie_title                                                            Fabled 
num_voted_users                                                            191
cast_total_facebook_likes                                                  312
actor_3_name                                                     Desmond Askew
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt0299863/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2002
actor_2_facebook_likes                                                      80
imdb_score                                                                 5.8
aspect_ratio                                                              1.78
movie_facebook_likes                                                         7
Name: 4807, dtype: object
color                                                                    Color
director_name                                               Cassandra Nicolaou
num_critic_for_reviews                                                      10
duration                                                                    97
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      83
actor_2_name                                                   Michelle Nolden
actor_1_facebook_likes                                                     918
gross                                                                      NaN
genres                                                          Drama|Thriller
actor_1_name                                                Katharine Isabelle
movie_title                                                           Show Me 
num_voted_users                                                            369
cast_total_facebook_likes                                                 1163
actor_3_name                                                     Gabriel Hogan
facenumber_in_poster                                                         0
plot_keywords                bathtub|implied incest|lesbian|squeegee|tied t...
movie_imdb_link              http://www.imdb.com/title/tt0414510/?ref_=fn_t...
num_user_for_reviews                                                         5
language                                                                French
country                                                                 Canada
content_rating                                                               R
budget                                                                  900000
title_year                                                                2004
actor_2_facebook_likes                                                     100
imdb_score                                                                   6
aspect_ratio                                                              1.78
movie_facebook_likes                                                        12
Name: 4808, dtype: object
color                                                                    Color
director_name                                                   Ingmar Bergman
num_critic_for_reviews                                                      76
duration                                                                    91
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      92
actor_2_name                                                     Ingrid Thulin
actor_1_facebook_likes                                                     440
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                       Liv Ullmann
movie_title                                                  Cries & Whispers 
num_voted_users                                                          19964
cast_total_facebook_likes                                                  809
actor_3_name                                                  Erland Josephson
facenumber_in_poster                                                         0
plot_keywords                dying|love|mansion|selfishness|turn of the cen...
movie_imdb_link              http://www.imdb.com/title/tt0069467/?ref_=fn_t...
num_user_for_reviews                                                       197
language                                                               Swedish
country                                                                 Sweden
content_rating                                                               R
budget                                                                  400000
title_year                                                                1972
actor_2_facebook_likes                                                     132
imdb_score                                                                 8.2
aspect_ratio                                                              1.66
movie_facebook_likes                                                         0
Name: 4809, dtype: object
color                                                          Black and White
director_name                                                    D.W. Griffith
num_critic_for_reviews                                                      69
duration                                                                   123
director_facebook_likes                                                    204
actor_3_facebook_likes                                                       9
actor_2_name                                                         Mae Marsh
actor_1_facebook_likes                                                     436
gross                                                                      NaN
genres                                                       Drama|History|War
actor_1_name                                                      Lillian Gish
movie_title                  Intolerance: Love's Struggle Throughout the Ages 
num_voted_users                                                          10718
cast_total_facebook_likes                                                  481
actor_3_name                                                       Walter Long
facenumber_in_poster                                                         1
plot_keywords                  huguenot|intolerance|medicis|protestant|wedding
movie_imdb_link              http://www.imdb.com/title/tt0006864/?ref_=fn_t...
num_user_for_reviews                                                        88
language                                                                   NaN
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                  385907
title_year                                                                1916
actor_2_facebook_likes                                                      22
imdb_score                                                                   8
aspect_ratio                                                              1.33
movie_facebook_likes                                                       691
Name: 4810, dtype: object
color                                                                    Color
director_name                                                     Roger Nygard
num_critic_for_reviews                                                      43
duration                                                                    86
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     513
actor_2_name                                                   DeForest Kelley
actor_1_facebook_likes                                                     643
gross                                                                   617172
genres                                                             Documentary
actor_1_name                                                     Walter Koenig
movie_title                                                          Trekkies 
num_voted_users                                                           4407
cast_total_facebook_likes                                                 2864
actor_3_name                                                      James Doohan
facenumber_in_poster                                                         1
plot_keywords                autograph|dentist|outer space|star trek|teleph...
movie_imdb_link              http://www.imdb.com/title/tt0120370/?ref_=fn_t...
num_user_for_reviews                                                        75
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                  375000
title_year                                                                1997
actor_2_facebook_likes                                                     606
imdb_score                                                                   7
aspect_ratio                                                               NaN
movie_facebook_likes                                                       672
Name: 4811, dtype: object
color                                                          Black and White
director_name                                                   Harry Beaumont
num_critic_for_reviews                                                      36
duration                                                                   100
director_facebook_likes                                                      4
actor_3_facebook_likes                                                       4
actor_2_name                                                       Bessie Love
actor_1_facebook_likes                                                      77
gross                                                                2.808e+06
genres                                                         Musical|Romance
actor_1_name                                                        Anita Page
movie_title                                               The Broadway Melody 
num_voted_users                                                           4546
cast_total_facebook_likes                                                  109
actor_3_name                                                      Charles King
facenumber_in_poster                                                         8
plot_keywords                sibling rivalry|singer|sister act|whistling|wi...
movie_imdb_link              http://www.imdb.com/title/tt0019729/?ref_=fn_t...
num_user_for_reviews                                                        71
language                                                               English
country                                                                    USA
content_rating                                                          Passed
budget                                                                  379000
title_year                                                                1929
actor_2_facebook_likes                                                      28
imdb_score                                                                 6.3
aspect_ratio                                                              1.37
movie_facebook_likes                                                       167
Name: 4812, dtype: object
color                                                                    Color
director_name                                                        Sam Raimi
num_critic_for_reviews                                                     304
duration                                                                    96
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      58
actor_2_name                                                       Betsy Baker
actor_1_facebook_likes                                                     634
gross                                                                      NaN
genres                                                          Fantasy|Horror
actor_1_name                                                         Ted Raimi
movie_title                                                     The Evil Dead 
num_voted_users                                                         141219
cast_total_facebook_likes                                                  813
actor_3_name                                                   Ellen Sandweiss
facenumber_in_poster                                                         0
plot_keywords                cult director|cult film|evil dead|necronomicon...
movie_imdb_link              http://www.imdb.com/title/tt0083907/?ref_=fn_t...
num_user_for_reviews                                                       740
language                                                               English
country                                                                    USA
content_rating                                                           NC-17
budget                                                                  375000
title_year                                                                1981
actor_2_facebook_likes                                                      66
imdb_score                                                                 7.6
aspect_ratio                                                              1.37
movie_facebook_likes                                                     12000
Name: 4813, dtype: object
color                                                                    Color
director_name                                                  Franck Khalfoun
num_critic_for_reviews                                                     279
duration                                                                    89
director_facebook_likes                                                     33
actor_3_facebook_likes                                                     118
actor_2_name                                                    Nora Arnezeder
actor_1_facebook_likes                                                     470
gross                                                                    12843
genres                                                         Horror|Thriller
actor_1_name                                                     America Olivo
movie_title                                                            Maniac 
num_voted_users                                                          27297
cast_total_facebook_likes                                                 1233
actor_3_name                                                     Liane Balaban
facenumber_in_poster                                                         0
plot_keywords                exhibition|mannequin|obsession|oral sex|photog...
movie_imdb_link              http://www.imdb.com/title/tt2103217/?ref_=fn_t...
num_user_for_reviews                                                       131
language                                                               English
country                                                                 France
content_rating                                                       Not Rated
budget                                                                   6e+06
title_year                                                                2012
actor_2_facebook_likes                                                     378
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4814, dtype: object
color                                                                    Color
director_name                                                       Mor Loushy
num_critic_for_reviews                                                      23
duration                                                                    84
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     NaN
actor_2_name                                                               NaN
actor_1_facebook_likes                                                       3
gross                                                                    34151
genres                                                     Documentary|History
actor_1_name                                                           Amos Oz
movie_title                                                   Censored Voices 
num_voted_users                                                            186
cast_total_facebook_likes                                                    3
actor_3_name                                                               NaN
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3457376/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                                Hebrew
country                                                                 Israel
content_rating                                                             NaN
budget                                                                  450000
title_year                                                                2015
actor_2_facebook_likes                                                     NaN
imdb_score                                                                 7.2
aspect_ratio                                                              1.78
movie_facebook_likes                                                       111
Name: 4815, dtype: object
color                                                                    Color
director_name                                                 Henry Alex Rubin
num_critic_for_reviews                                                     110
duration                                                                    88
director_facebook_likes                                                     30
actor_3_facebook_likes                                                       0
actor_2_name                                                        Joe Bishop
actor_1_facebook_likes                                                      15
gross                                                              1.52388e+06
genres                                                       Documentary|Sport
actor_1_name                                                        Mark Zupan
movie_title                                                        Murderball 
num_voted_users                                                           9037
cast_total_facebook_likes                                                   15
actor_3_name                                                         Andy Cohn
facenumber_in_poster                                                         1
plot_keywords                     paralympics|quad rugby|rugby|team|wheelchair
movie_imdb_link              http://www.imdb.com/title/tt0436613/?ref_=fn_t...
num_user_for_reviews                                                        70
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                             1.75021e+06
title_year                                                                2005
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4816, dtype: object
color                                                                    Color
director_name                                                  Sam Firstenberg
num_critic_for_reviews                                                      40
duration                                                                    90
director_facebook_likes                                                     44
actor_3_facebook_likes                                                      93
actor_2_name                                                       Steve James
actor_1_facebook_likes                                                     615
gross                                                                    4e+06
genres                                                            Action|Drama
actor_1_name                                                  Michael Dudikoff
movie_title                               American Ninja 2: The Confrontation 
num_voted_users                                                           6046
cast_total_facebook_likes                                                  872
actor_3_name                                                  Larry Poindexter
facenumber_in_poster                                                         0
plot_keywords                blood splatter|island|motorboat|ninja|sequel t...
movie_imdb_link              http://www.imdb.com/title/tt0092548/?ref_=fn_t...
num_user_for_reviews                                                        46
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  350000
title_year                                                                1987
actor_2_facebook_likes                                                      96
imdb_score                                                                 4.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       583
Name: 4817, dtype: object
color                                                                    Color
director_name                                                       Doug Block
num_critic_for_reviews                                                      45
duration                                                                    90
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                       Ellen Block
actor_1_facebook_likes                                                       0
gross                                                                    84689
genres                                                             Documentary
actor_1_name                                                       Carol Block
movie_title                                                   51 Birch Street 
num_voted_users                                                            695
cast_total_facebook_likes                                                    0
actor_3_name                                                        Mike Block
facenumber_in_poster                                                         2
plot_keywords                         address as title|number in title|parents
movie_imdb_link              http://www.imdb.com/title/tt0468442/?ref_=fn_t...
num_user_for_reviews                                                        16
language                                                               English
country                                                                Germany
content_rating                                                         Unrated
budget                                                                     NaN
title_year                                                                2005
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                        70
Name: 4818, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      23
duration                                                                    43
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     576
actor_2_name                                                  Tracy Spiridakos
actor_1_facebook_likes                                                    2000
gross                                                                      NaN
genres                                           Action|Adventure|Drama|Sci-Fi
actor_1_name                                                       Billy Burke
movie_title                                            Revolution             
num_voted_users                                                          72017
cast_total_facebook_likes                                                 5052
actor_3_name                                                       David Lyons
facenumber_in_poster                                                         6
plot_keywords                2020s|near future|one word series title|post a...
movie_imdb_link              http://www.imdb.com/title/tt2070791/?ref_=fn_t...
num_user_for_reviews                                                       323
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     821
imdb_score                                                                 6.7
aspect_ratio                                                                16
movie_facebook_likes                                                     17000
Name: 4819, dtype: object
color                                                                    Color
director_name                                                      Chad Kapper
num_critic_for_reviews                                                       4
duration                                                                    98
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                     Natalie Welch
actor_1_facebook_likes                                                     196
gross                                                                      NaN
genres                                                           Family|Sci-Fi
actor_1_name                                                  Tom E. Nicholson
movie_title                                                         Rotor DR1 
num_voted_users                                                            209
cast_total_facebook_likes                                                  199
actor_3_name                                                  Christian Kapper
facenumber_in_poster                                                         2
plot_keywords                drone|playing with gun|post apocalypse|road tr...
movie_imdb_link              http://www.imdb.com/title/tt4162992/?ref_=fn_t...
num_user_for_reviews                                                         8
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  350000
title_year                                                                2015
actor_2_facebook_likes                                                       3
imdb_score                                                                 3.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       240
Name: 4820, dtype: object
color                                                                    Color
director_name                                                   John Carpenter
num_critic_for_reviews                                                     318
duration                                                                   101
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     598
actor_2_name                                                  Donald Pleasence
actor_1_facebook_likes                                                    2000
gross                                                                  4.7e+07
genres                                                         Horror|Thriller
actor_1_name                                                  Jamie Lee Curtis
movie_title                                                         Halloween 
num_voted_users                                                         157863
cast_total_facebook_likes                                                 4400
actor_3_name                                                        P.J. Soles
facenumber_in_poster                                                         0
plot_keywords                halloween|masked killer|michael myers|slasher|...
movie_imdb_link              http://www.imdb.com/title/tt0077651/?ref_=fn_t...
num_user_for_reviews                                                      1191
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  300000
title_year                                                                1978
actor_2_facebook_likes                                                     742
imdb_score                                                                 7.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     12000
Name: 4821, dtype: object
color                                                          Black and White
director_name                                                     Sidney Lumet
num_critic_for_reviews                                                     177
duration                                                                    96
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     253
actor_2_name                                                       Lee J. Cobb
actor_1_facebook_likes                                                     359
gross                                                                      NaN
genres                                                             Crime|Drama
actor_1_name                                                       Jack Warden
movie_title                                                      12 Angry Men 
num_voted_users                                                         447785
cast_total_facebook_likes                                                 1433
actor_3_name                                                      John Fiedler
facenumber_in_poster                                                         1
plot_keywords                courtroom|dialogue driven|dialogue driven stor...
movie_imdb_link              http://www.imdb.com/title/tt0050083/?ref_=fn_t...
num_user_for_reviews                                                       888
language                                                               English
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                  350000
title_year                                                                1957
actor_2_facebook_likes                                                     259
imdb_score                                                                 8.9
aspect_ratio                                                              1.66
movie_facebook_likes                                                     40000
Name: 4822, dtype: object
color                                                                    Color
director_name                                                  Paul Fierlinger
num_critic_for_reviews                                                      51
duration                                                                    83
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     258
actor_2_name                                                      Peter Gerety
actor_1_facebook_likes                                                     812
gross                                                                   246574
genres                                                         Animation|Drama
actor_1_name                                               Isabella Rossellini
movie_title                                                      My Dog Tulip 
num_voted_users                                                           1272
cast_total_facebook_likes                                                 1370
actor_3_name                                                     Lynn Redgrave
facenumber_in_poster                                                         0
plot_keywords                autobiography|dog movie|german shepherd|memoir...
movie_imdb_link              http://www.imdb.com/title/tt0843358/?ref_=fn_t...
num_user_for_reviews                                                        15
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     277
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       675
Name: 4823, dtype: object
color                                                          Black and White
director_name                                                      Frank Capra
num_critic_for_reviews                                                     124
duration                                                                    65
director_facebook_likes                                                    964
actor_3_facebook_likes                                                      21
actor_2_name                                                         Alan Hale
actor_1_facebook_likes                                                     380
gross                                                                      NaN
genres                                                          Comedy|Romance
actor_1_name                                                 Claudette Colbert
movie_title                                             It Happened One Night 
num_voted_users                                                          64888
cast_total_facebook_likes                                                  540
actor_3_name                                                   Walter Connolly
facenumber_in_poster                                                         1
plot_keywords                                bus|detective|love|money|reporter
movie_imdb_link              http://www.imdb.com/title/tt0025316/?ref_=fn_t...
num_user_for_reviews                                                       235
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                  325000
title_year                                                                1934
actor_2_facebook_likes                                                     114
imdb_score                                                                 8.2
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 4824, dtype: object
color                                                                    Color
director_name                                                 Yorgos Lanthimos
num_critic_for_reviews                                                     211
duration                                                                    94
director_facebook_likes                                                    252
actor_3_facebook_likes                                                      14
actor_2_name                                                        Mary Tsoni
actor_1_facebook_likes                                                      47
gross                                                                   110197
genres                                                          Drama|Thriller
actor_1_name                                                 Angeliki Papoulia
movie_title                                                          Dogtooth 
num_voted_users                                                          44864
cast_total_facebook_likes                                                  126
actor_3_name                                                 Sissy Petropoulou
facenumber_in_poster                                                         0
plot_keywords                fellatio|isolated house|overprotective father|...
movie_imdb_link              http://www.imdb.com/title/tt1379182/?ref_=fn_t...
num_user_for_reviews                                                       170
language                                                                 Greek
country                                                                 Greece
content_rating                                                         Unrated
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                      37
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                     13000
Name: 4825, dtype: object
color                                                                    Color
director_name                                                     Lauren Lazin
num_critic_for_reviews                                                      26
duration                                                                   112
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     321
actor_2_name                                                      Gary Coleman
actor_1_facebook_likes                                                     786
gross                                                              7.70756e+06
genres                                             Biography|Documentary|Music
actor_1_name                                                      James Cagney
movie_title                                               Tupac: Resurrection 
num_voted_users                                                           7687
cast_total_facebook_likes                                                 2638
actor_3_name                                                      Todd Bridges
facenumber_in_poster                                                         0
plot_keywords                hip hop|name in title|rap star|rapper|referenc...
movie_imdb_link              http://www.imdb.com/title/tt0343121/?ref_=fn_t...
num_user_for_reviews                                                        32
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2003
actor_2_facebook_likes                                                     633
imdb_score                                                                   8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4826, dtype: object
color                                                                    Color
director_name                                                   Gavin O'Connor
num_critic_for_reviews                                                      64
duration                                                                   102
director_facebook_likes                                                    149
actor_3_facebook_likes                                                     276
actor_2_name                                                      Janet McTeer
actor_1_facebook_likes                                                     409
gross                                                              1.28118e+06
genres                                                            Comedy|Drama
actor_1_name                                                 Kimberly J. Brown
movie_title                                                       Tumbleweeds 
num_voted_users                                                           2932
cast_total_facebook_likes                                                 1986
actor_3_name                                                        Lois Smith
facenumber_in_poster                                                         1
plot_keywords                boss|fight|reference to william shakespeare|wh...
movie_imdb_link              http://www.imdb.com/title/tt0161023/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                  312000
title_year                                                                1999
actor_2_facebook_likes                                                     277
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       121
Name: 4827, dtype: object
color                                                                    Color
director_name                                                    Gregory Widen
num_critic_for_reviews                                                      56
duration                                                                    98
director_facebook_likes                                                     10
actor_3_facebook_likes                                                     912
actor_2_name                                                     Adam Goldberg
actor_1_facebook_likes                                                   10000
gross                                                              1.61159e+07
genres                                  Action|Fantasy|Horror|Mystery|Thriller
actor_1_name                                                   Viggo Mortensen
movie_title                                                      The Prophecy 
num_voted_users                                                          24438
cast_total_facebook_likes                                                13433
actor_3_name                                                   Virginia Madsen
facenumber_in_poster                                                         0
plot_keywords                                    angel|corpse|girl|heaven|soul
movie_imdb_link              http://www.imdb.com/title/tt0114194/?ref_=fn_t...
num_user_for_reviews                                                       194
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   8e+06
title_year                                                                1995
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4828, dtype: object
color                                                                    Color
director_name                                                  Cédric Klapisch
num_critic_for_reviews                                                      29
duration                                                                    91
director_facebook_likes                                                     82
actor_3_facebook_likes                                                       8
actor_2_name                                                  Zinedine Soualem
actor_1_facebook_likes                                                      75
gross                                                              1.65247e+06
genres                                                          Comedy|Romance
actor_1_name                                                    Simon Abkarian
movie_title                                               When the Cat's Away 
num_voted_users                                                           2843
cast_total_facebook_likes                                                  102
actor_3_name                                                     Jane Bradbury
facenumber_in_poster                                                         7
plot_keywords                cat|homosexual sex|male homosexuality|neighbor...
movie_imdb_link              http://www.imdb.com/title/tt0115856/?ref_=fn_t...
num_user_for_reviews                                                        25
language                                                                French
country                                                                 France
content_rating                                                               R
budget                                                                  300000
title_year                                                                1996
actor_2_facebook_likes                                                       9
imdb_score                                                                 6.9
aspect_ratio                                                              1.66
movie_facebook_likes                                                       166
Name: 4829, dtype: object
color                                                                    Color
director_name                                                     Peter Hedges
num_critic_for_reviews                                                     131
duration                                                                    80
director_facebook_likes                                                     54
actor_3_facebook_likes                                                     543
actor_2_name                                                   Adrian Martinez
actor_1_facebook_likes                                                    1000
gross                                                              2.36018e+06
genres                                                            Comedy|Drama
actor_1_name                                                      Oliver Platt
movie_title                                                   Pieces of April 
num_voted_users                                                          18035
cast_total_facebook_likes                                                 3010
actor_3_name                                                        Derek Luke
facenumber_in_poster                                                         3
plot_keywords                apartment|oven|stove|thanksgiving|thanksgiving...
movie_imdb_link              http://www.imdb.com/title/tt0311648/?ref_=fn_t...
num_user_for_reviews                                                       177
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                  300000
title_year                                                                2003
actor_2_facebook_likes                                                     806
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4830, dtype: object
color                                                                    Color
director_name                                                    Niall Johnson
num_critic_for_reviews                                                       4
duration                                                                   114
director_facebook_likes                                                      7
actor_3_facebook_likes                                                       2
actor_2_name                                                        Mark Caven
actor_1_facebook_likes                                                      19
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                     Kevin Howarth
movie_title                                                      The Big Swap 
num_voted_users                                                            270
cast_total_facebook_likes                                                   37
actor_3_name                                                  Thierry Harcourt
facenumber_in_poster                                                         0
plot_keywords                breasts|female frontal nudity|jealousy|male fu...
movie_imdb_link              http://www.imdb.com/title/tt0118717/?ref_=fn_t...
num_user_for_reviews                                                         7
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                1998
actor_2_facebook_likes                                                      16
imdb_score                                                                 5.6
aspect_ratio                                                              1.33
movie_facebook_likes                                                        29
Name: 4831, dtype: object
color                                                                    Color
director_name                                                  Kelly Reichardt
num_critic_for_reviews                                                      88
duration                                                                    76
director_facebook_likes                                                    129
actor_3_facebook_likes                                                      26
actor_2_name                                                              Lucy
actor_1_facebook_likes                                                      52
gross                                                                   255352
genres                                                                   Drama
actor_1_name                                                     Daniel London
movie_title                                                           Old Joy 
num_voted_users                                                           4423
cast_total_facebook_likes                                                  132
actor_3_name                                                       Will Oldham
facenumber_in_poster                                                         2
plot_keywords                cell phone|male frontal nudity|oregon|sexual a...
movie_imdb_link              http://www.imdb.com/title/tt0468526/?ref_=fn_t...
num_user_for_reviews                                                        57
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                  300000
title_year                                                                2006
actor_2_facebook_likes                                                      44
imdb_score                                                                 6.7
aspect_ratio                                                              1.66
movie_facebook_likes                                                       594
Name: 4832, dtype: object
color                                                                    Color
director_name                                                  Kelly Reichardt
num_critic_for_reviews                                                     189
duration                                                                    80
director_facebook_likes                                                    129
actor_3_facebook_likes                                                      26
actor_2_name                                                              Lucy
actor_1_facebook_likes                                                     375
gross                                                                   856942
genres                                                                   Drama
actor_1_name                                                     John Robinson
movie_title                                                    Wendy and Lucy 
num_voted_users                                                          12241
cast_total_facebook_likes                                                  460
actor_3_name                                                       Will Oldham
facenumber_in_poster                                                         1
plot_keywords                        car|dog|flip phone|rape threat|vulnerable
movie_imdb_link              http://www.imdb.com/title/tt1152850/?ref_=fn_t...
num_user_for_reviews                                                       112
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  200000
title_year                                                                2008
actor_2_facebook_likes                                                      44
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4833, dtype: object
color                                                                    Color
director_name                                                  Eric Mendelsohn
num_critic_for_reviews                                                      20
duration                                                                    88
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     301
actor_2_name                                                        Edie Falco
actor_1_facebook_likes                                                     795
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                    Embeth Davidtz
movie_title                                                       3 Backyards 
num_voted_users                                                            554
cast_total_facebook_likes                                                 1884
actor_3_name                                                      Kathryn Erbe
facenumber_in_poster                                                         0
plot_keywords                                                  number in title
movie_imdb_link              http://www.imdb.com/title/tt1314190/?ref_=fn_t...
num_user_for_reviews                                                        23
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  300000
title_year                                                                2010
actor_2_facebook_likes                                                     659
imdb_score                                                                 5.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                        92
Name: 4834, dtype: object
color                                                                    Color
director_name                                                  Jean-Luc Godard
num_critic_for_reviews                                                      96
duration                                                                   110
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                       Anna Karina
actor_1_facebook_likes                                                     710
gross                                                                      NaN
genres                                                     Crime|Drama|Romance
actor_1_name                                                Jean-Paul Belmondo
movie_title                                                    Pierrot le Fou 
num_voted_users                                                          19386
cast_total_facebook_likes                                                  967
actor_3_name                                                 Graziella Galvani
facenumber_in_poster                                                         1
plot_keywords                           beach|money|on the run|party|smuggling
movie_imdb_link              http://www.imdb.com/title/tt0059592/?ref_=fn_t...
num_user_for_reviews                                                        74
language                                                                French
country                                                                 France
content_rating                                                       Not Rated
budget                                                                  300000
title_year                                                                1965
actor_2_facebook_likes                                                     257
imdb_score                                                                 7.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 4835, dtype: object
color                                                                    Color
director_name                                                   Florence Ayisi
num_critic_for_reviews                                                      27
duration                                                                   104
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     NaN
actor_2_name                                                    Beatrice Ntuba
actor_1_facebook_likes                                                       2
gross                                                                    32631
genres                                                             Documentary
actor_1_name                                                       Vera Ngassa
movie_title                                                    Sisters in Law 
num_voted_users                                                            291
cast_total_facebook_likes                                                    2
actor_3_name                                                               NaN
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt0474361/?ref_=fn_t...
num_user_for_reviews                                                         8
language                                                               English
country                                                               Cameroon
content_rating                                                       Not Rated
budget                                                                     NaN
title_year                                                                2005
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                        50
Name: 4836, dtype: object
color                                                                    Color
director_name                                                        Pan Nalin
num_critic_for_reviews                                                      15
duration                                                                   102
director_facebook_likes                                                     95
actor_3_facebook_likes                                                     NaN
actor_2_name                                                               NaN
actor_1_facebook_likes                                                     NaN
gross                                                                    16892
genres                                                             Documentary
actor_1_name                                                               NaN
movie_title                                            Ayurveda: Art of Being 
num_voted_users                                                            341
cast_total_facebook_likes                                                    0
actor_3_name                                                               NaN
facenumber_in_poster                                                         0
plot_keywords                            eastern philosophy|healing|india|life
movie_imdb_link              http://www.imdb.com/title/tt0221809/?ref_=fn_t...
num_user_for_reviews                                                        12
language                                                               English
country                                                                  India
content_rating                                                             NaN
budget                                                                  300000
title_year                                                                2001
actor_2_facebook_likes                                                     NaN
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       379
Name: 4837, dtype: object
color                                                          Black and White
director_name                                                   Michael Roemer
num_critic_for_reviews                                                      24
duration                                                                    95
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      87
actor_2_name                                                     Gloria Foster
actor_1_facebook_likes                                                     581
gross                                                                    12438
genres                                                           Drama|Romance
actor_1_name                                                      Yaphet Kotto
movie_title                                                 Nothing But a Man 
num_voted_users                                                            891
cast_total_facebook_likes                                                  835
actor_3_name                                                        Ivan Dixon
facenumber_in_poster                                                         1
plot_keywords                                1960s|father|railroad|town|worker
movie_imdb_link              http://www.imdb.com/title/tt0058414/?ref_=fn_t...
num_user_for_reviews                                                        26
language                                                               English
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                  160000
title_year                                                                1964
actor_2_facebook_likes                                                      99
imdb_score                                                                 8.1
aspect_ratio                                                               NaN
movie_facebook_likes                                                       363
Name: 4838, dtype: object
color                                                                    Color
director_name                                                     Jesse Peretz
num_critic_for_reviews                                                      16
duration                                                                    94
director_facebook_likes                                                     37
actor_3_facebook_likes                                                     104
actor_2_name                                                    Eli Marienthal
actor_1_facebook_likes                                                     318
gross                                                                    40542
genres                                                           Drama|Romance
actor_1_name                                                 Robert John Burke
movie_title                                            First Love, Last Rites 
num_voted_users                                                            294
cast_total_facebook_likes                                                  751
actor_3_name                                            Natasha Gregson Wagner
facenumber_in_poster                                                         0
plot_keywords                listening to music|misfit|panties|red panties|sex
movie_imdb_link              http://www.imdb.com/title/tt0128214/?ref_=fn_t...
num_user_for_reviews                                                        16
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  300000
title_year                                                                1997
actor_2_facebook_likes                                                     157
imdb_score                                                                 5.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                        26
Name: 4839, dtype: object
color                                                                    Color
director_name                                                 Eddie O'Flaherty
num_critic_for_reviews                                                      13
duration                                                                   109
director_facebook_likes                                                      3
actor_3_facebook_likes                                                      25
actor_2_name                                                       Eddie Jones
actor_1_facebook_likes                                                      54
gross                                                                     5199
genres                                                             Drama|Sport
actor_1_name                                                       Don Wallace
movie_title                                              Fighting Tommy Riley 
num_voted_users                                                            720
cast_total_facebook_likes                                                  185
actor_3_name                                                Christina Chambers
facenumber_in_poster                                                         0
plot_keywords                older man younger man relationship|punching ba...
movie_imdb_link              http://www.imdb.com/title/tt0366444/?ref_=fn_t...
num_user_for_reviews                                                        23
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  200000
title_year                                                                2004
actor_2_facebook_likes                                                      53
imdb_score                                                                 6.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                        30
Name: 4840, dtype: object
color                                                                    Color
director_name                                                      Babar Ahmed
num_critic_for_reviews                                                       8
duration                                                                    90
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      32
actor_2_name                                                  Alexander Wraith
actor_1_facebook_likes                                                     502
gross                                                                      NaN
genres                                                         Action|Thriller
actor_1_name                                                           Lalaine
movie_title                                                        Royal Kill 
num_voted_users                                                            476
cast_total_facebook_likes                                                  689
actor_3_name                                                   Darren Kendrick
facenumber_in_poster                                                         0
plot_keywords                assassin|female assassin|kingdom|martial arts|...
movie_imdb_link              http://www.imdb.com/title/tt0421237/?ref_=fn_t...
num_user_for_reviews                                                        18
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                  350000
title_year                                                                2009
actor_2_facebook_likes                                                     119
imdb_score                                                                 3.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                        53
Name: 4841, dtype: object
color                                                                    Color
director_name                                                     Julie Taymor
num_critic_for_reviews                                                     156
duration                                                                   133
director_facebook_likes                                                    278
actor_3_facebook_likes                                                     107
actor_2_name                                                       T.V. Carpio
actor_1_facebook_likes                                                    5000
gross                                                              2.43437e+07
genres                                           Drama|Fantasy|Musical|Romance
actor_1_name                                                      Jim Sturgess
movie_title                                               Across the Universe 
num_voted_users                                                          91863
cast_total_facebook_likes                                                 5405
actor_3_name                                                   Robert Clohessy
facenumber_in_poster                                                         0
plot_keywords                             anti war|liverpool|love|protest|song
movie_imdb_link              http://www.imdb.com/title/tt0445922/?ref_=fn_t...
num_user_for_reviews                                                       524
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 4.5e+07
title_year                                                                2007
actor_2_facebook_likes                                                     117
imdb_score                                                                 7.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                     14000
Name: 4842, dtype: object
color                                                                    Color
director_name                                                  John D. Hancock
num_critic_for_reviews                                                       4
duration                                                                   110
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     221
actor_2_name                                                Elizabeth Stenholt
actor_1_facebook_likes                                                     644
gross                                                                     1711
genres                                                             Drama|Music
actor_1_name                                                    Trish Basinger
movie_title                                                 The Looking Glass 
num_voted_users                                                             82
cast_total_facebook_likes                                                 1440
actor_3_name                                                      Mary Norwood
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2912776/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2015
actor_2_facebook_likes                                                     503
imdb_score                                                                 6.6
aspect_ratio                                                               NaN
movie_facebook_likes                                                       175
Name: 4843, dtype: object
color                                                                    Color
director_name                                                      Paul Bartel
num_critic_for_reviews                                                     164
duration                                                                    80
director_facebook_likes                                                     43
actor_3_facebook_likes                                                     668
actor_2_name                                                   David Carradine
actor_1_facebook_likes                                                   13000
gross                                                                      NaN
genres                                              Action|Comedy|Sci-Fi|Sport
actor_1_name                                                Sylvester Stallone
movie_title                                                   Death Race 2000 
num_voted_users                                                          19875
cast_total_facebook_likes                                                14950
actor_3_name                                                       Martin Kove
facenumber_in_poster                                                         0
plot_keywords                cult director|cult film|drive in classic|psych...
movie_imdb_link              http://www.imdb.com/title/tt0072856/?ref_=fn_t...
num_user_for_reviews                                                       147
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  300000
title_year                                                                1975
actor_2_facebook_likes                                                     926
imdb_score                                                                 6.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4844, dtype: object
color                                                                    Color
director_name                                                     Bruce Dellis
num_critic_for_reviews                                                      10
duration                                                                    95
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     309
actor_2_name                                                    Ricky Schroder
actor_1_facebook_likes                                                     685
gross                                                                     2468
genres                                                                Thriller
actor_1_name                                                       Tatyana Ali
movie_title                                                         Locker 13 
num_voted_users                                                            241
cast_total_facebook_likes                                                 2048
actor_3_name                                                        Jon Polito
facenumber_in_poster                                                         3
plot_keywords                digit in title|latino|life or death|philosophy...
movie_imdb_link              http://www.imdb.com/title/tt1241226/?ref_=fn_t...
num_user_for_reviews                                                         5
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  300000
title_year                                                                2014
actor_2_facebook_likes                                                     665
imdb_score                                                                 4.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       261
Name: 4845, dtype: object
color                                                                      NaN
director_name                                                       Pece Dingo
num_critic_for_reviews                                                       1
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      87
actor_2_name                                               Wilhelm von Homburg
actor_1_facebook_likes                                                     156
gross                                                                      NaN
genres                                                                  Horror
actor_1_name                                                Michael Des Barres
movie_title                                                  Midnight Cabaret 
num_voted_users                                                             47
cast_total_facebook_likes                                                  544
actor_3_name                                                      Thom Mathews
facenumber_in_poster                                                         0
plot_keywords                cigarette smoking|death|devil|nightmare|satani...
movie_imdb_link              http://www.imdb.com/title/tt0100146/?ref_=fn_t...
num_user_for_reviews                                                         4
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1990
actor_2_facebook_likes                                                     102
imdb_score                                                                 4.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                         4
Name: 4846, dtype: object
color                                                                    Color
director_name                                              Jerome Elston Scott
num_critic_for_reviews                                                       8
duration                                                                    98
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     248
actor_2_name                                                    Joanna Cassidy
actor_1_facebook_likes                                                     500
gross                                                                      NaN
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Taran Killam
movie_title                                                  Anderson's Cross 
num_voted_users                                                             95
cast_total_facebook_likes                                                 1545
actor_3_name                                                       Ryan Carnes
facenumber_in_poster                                                         7
plot_keywords                divorce|marriage|mother daughter relationship|...
movie_imdb_link              http://www.imdb.com/title/tt0393049/?ref_=fn_t...
num_user_for_reviews                                                         7
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  300000
title_year                                                                2010
actor_2_facebook_likes                                                     317
imdb_score                                                                 7.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                         7
Name: 4847, dtype: object
color                                                                    Color
director_name                                                    Étienne Faure
num_critic_for_reviews                                                       9
duration                                                                    98
director_facebook_likes                                                     77
actor_3_facebook_likes                                                       0
actor_2_name                                                     Pierre Prieur
actor_1_facebook_likes                                                      19
gross                                                                      NaN
genres                                                   Drama|Musical|Romance
actor_1_name                                                      Rumi Missabu
movie_title                                                           Bizarre 
num_voted_users                                                            569
cast_total_facebook_likes                                                   19
actor_3_name                                                       Raquel Nave
facenumber_in_poster                                                         0
plot_keywords                full frontal nudity|group shower|male full fro...
movie_imdb_link              http://www.imdb.com/title/tt3904272/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                 France
content_rating                                                         Unrated
budget                                                                  500000
title_year                                                                2015
actor_2_facebook_likes                                                       0
imdb_score                                                                 4.3
aspect_ratio                                                              1.78
movie_facebook_likes                                                       114
Name: 4848, dtype: object
color                                                                    Color
director_name                                                       Herb Freed
num_critic_for_reviews                                                      78
duration                                                                    96
director_facebook_likes                                                      5
actor_3_facebook_likes                                                     180
actor_2_name                                                 Carmen Argenziano
actor_1_facebook_likes                                                     431
gross                                                                      NaN
genres                                                          Horror|Mystery
actor_1_name                                                    Linnea Quigley
movie_title                                                    Graduation Day 
num_voted_users                                                           1905
cast_total_facebook_likes                                                 1228
actor_3_name                                                       Vanna White
facenumber_in_poster                                                         0
plot_keywords                           coach|mask|school principal|team|track
movie_imdb_link              http://www.imdb.com/title/tt0082467/?ref_=fn_t...
num_user_for_reviews                                                        58
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  250000
title_year                                                                1981
actor_2_facebook_likes                                                     338
imdb_score                                                                 4.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       249
Name: 4849, dtype: object
color                                                                    Color
director_name                                                       Jack Perez
num_critic_for_reviews                                                     131
duration                                                                    97
director_facebook_likes                                                     19
actor_3_facebook_likes                                                     313
actor_2_name                                                    Barry Bostwick
actor_1_facebook_likes                                                     778
gross                                                                      NaN
genres                              Comedy|Crime|Drama|Horror|Mystery|Thriller
actor_1_name                                                    Kevin Corrigan
movie_title                                         Some Guy Who Kills People 
num_voted_users                                                           4550
cast_total_facebook_likes                                                 2515
actor_3_name                                                        Ahmed Best
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1568341/?ref_=fn_t...
num_user_for_reviews                                                        58
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  300000
title_year                                                                2011
actor_2_facebook_likes                                                     456
imdb_score                                                                 6.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4850, dtype: object
color                                                                    Color
director_name                                                      Craig Zobel
num_critic_for_reviews                                                     286
duration                                                                    90
director_facebook_likes                                                     25
actor_3_facebook_likes                                                     235
actor_2_name                                                     Matt Servitto
actor_1_facebook_likes                                                     601
gross                                                                   318622
genres                                          Biography|Crime|Drama|Thriller
actor_1_name                                                     Dreama Walker
movie_title                                                        Compliance 
num_voted_users                                                          24668
cast_total_facebook_likes                                                 1734
actor_3_name                                                   James McCaffrey
facenumber_in_poster                                                         0
plot_keywords                authority|boss subordinate relationship|fast f...
movie_imdb_link              http://www.imdb.com/title/tt1971352/?ref_=fn_t...
num_user_for_reviews                                                       175
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  270000
title_year                                                                2012
actor_2_facebook_likes                                                     260
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4851, dtype: object
color                                                                    Color
director_name                                                      Kevin Smith
num_critic_for_reviews                                                     147
duration                                                                   113
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     781
actor_2_name                                                      Ethan Suplee
actor_1_facebook_likes                                                   13000
gross                                                              1.20065e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                        Matt Damon
movie_title                                                       Chasing Amy 
num_voted_users                                                         114070
cast_total_facebook_likes                                                15765
actor_3_name                                                 Joey Lauren Adams
facenumber_in_poster                                                         5
plot_keywords                         comic book|friendship|gay|lesbian|secret
movie_imdb_link              http://www.imdb.com/title/tt0118842/?ref_=fn_t...
num_user_for_reviews                                                       500
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  250000
title_year                                                                1997
actor_2_facebook_likes                                                    1000
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4852, dtype: object
color                                                                    Color
director_name                                                Nicole Holofcener
num_critic_for_reviews                                                      71
duration                                                                    91
director_facebook_likes                                                    132
actor_3_facebook_likes                                                     225
actor_2_name                                                    Brenda Blethyn
actor_1_facebook_likes                                                     400
gross                                                              4.18693e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                    Aunjanue Ellis
movie_title                                                  Lovely & Amazing 
num_voted_users                                                           6041
cast_total_facebook_likes                                                 1330
actor_3_name                                                     Raven Goodwin
facenumber_in_poster                                                         3
plot_keywords                african american|dog|homecoming queen|insecuri...
movie_imdb_link              http://www.imdb.com/title/tt0258273/?ref_=fn_t...
num_user_for_reviews                                                        85
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  250000
title_year                                                                2001
actor_2_facebook_likes                                                     286
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       169
Name: 4853, dtype: object
color                                                                    Color
director_name                                                    Ken Del Conte
num_critic_for_reviews                                                     NaN
duration                                                                    90
director_facebook_likes                                                      2
actor_3_facebook_likes                                                      99
actor_2_name                                                      Robert Miano
actor_1_facebook_likes                                                     466
gross                                                                      NaN
genres                               Action|Adventure|Mystery|Romance|Thriller
actor_1_name                                                 Hector Echavarria
movie_title                                                       Death Calls 
num_voted_users                                                             30
cast_total_facebook_likes                                                  842
actor_3_name                                                         Ron Roggé
facenumber_in_poster                                                         2
plot_keywords                  murder|oppression|rebirth|reincarnation|revenge
movie_imdb_link              http://www.imdb.com/title/tt1328873/?ref_=fn_t...
num_user_for_reviews                                                       NaN
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  290000
title_year                                                                2010
actor_2_facebook_likes                                                     216
imdb_score                                                                 4.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                        16
Name: 4854, dtype: object
color                                                                    Color
director_name                                                       Justin Lin
num_critic_for_reviews                                                      51
duration                                                                    98
director_facebook_likes                                                    681
actor_3_facebook_likes                                                      13
actor_2_name                                                       Jason Tobin
actor_1_facebook_likes                                                      94
gross                                                              3.79934e+06
genres                                                     Crime|Drama|Romance
actor_1_name                                                        Parry Shen
movie_title                                              Better Luck Tomorrow 
num_voted_users                                                           8000
cast_total_facebook_likes                                                  139
actor_3_name                                                      Collin Kahey
facenumber_in_poster                                                         1
plot_keywords                asian american|high school|overachiever|pubic ...
movie_imdb_link              http://www.imdb.com/title/tt0280477/?ref_=fn_t...
num_user_for_reviews                                                       138
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  250000
title_year                                                                2002
actor_2_facebook_likes                                                      26
imdb_score                                                                 7.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       661
Name: 4855, dtype: object
color                                                                    Color
director_name                                                   Maria Maggenti
num_critic_for_reviews                                                      23
duration                                                                    94
director_facebook_likes                                                      4
actor_3_facebook_likes                                                      10
actor_2_name                                                   Laurel Holloman
actor_1_facebook_likes                                                     360
gross                                                              1.97754e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                 Nicole Ari Parker
movie_title                  The Incredibly True Adventure of Two Girls in ...
num_voted_users                                                           3513
cast_total_facebook_likes                                                  656
actor_3_name                                                   Stephanie Berry
facenumber_in_poster                                                         0
plot_keywords                caught having sex|class|friend|lesbian|lesbian...
movie_imdb_link              http://www.imdb.com/title/tt0113416/?ref_=fn_t...
num_user_for_reviews                                                        36
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  250000
title_year                                                                1995
actor_2_facebook_likes                                                     273
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       423
Name: 4856, dtype: object
color                                                                    Color
director_name                                                    Miguel Arteta
num_critic_for_reviews                                                      59
duration                                                                    96
director_facebook_likes                                                     44
actor_3_facebook_likes                                                     129
actor_2_name                                                        Mike White
actor_1_facebook_likes                                                     625
gross                                                               1.0506e+06
genres                                                            Comedy|Drama
actor_1_name                                                    Lupe Ontiveros
movie_title                                                      Chuck & Buck 
num_voted_users                                                           4662
cast_total_facebook_likes                                                 1378
actor_3_name                                                       Chris Weitz
facenumber_in_poster                                                         0
plot_keywords                best friend|bisexuality|friend|gay kiss|sexuality
movie_imdb_link              http://www.imdb.com/title/tt0200530/?ref_=fn_t...
num_user_for_reviews                                                       136
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  250000
title_year                                                                2000
actor_2_facebook_likes                                                     487
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       170
Name: 4857, dtype: object
color                                                                    Color
director_name                                             Piyush Dinker Pandya
num_critic_for_reviews                                                       9
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      51
actor_2_name                                                      Rizwan Manji
actor_1_facebook_likes                                                     250
gross                                                                   902835
genres                                                    Comedy|Drama|Romance
actor_1_name                                                        Purva Bedi
movie_title                                                     American Desi 
num_voted_users                                                           1489
cast_total_facebook_likes                                                  454
actor_3_name                                                        Anil Kumar
facenumber_in_poster                                                         2
plot_keywords                      college|desi|heritage|india|indian american
movie_imdb_link              http://www.imdb.com/title/tt0203289/?ref_=fn_t...
num_user_for_reviews                                                        40
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                  250000
title_year                                                                2001
actor_2_facebook_likes                                                      89
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       133
Name: 4858, dtype: object
color                                                                    Color
director_name                                                  Daniel Columbie
num_critic_for_reviews                                                     NaN
duration                                                                    90
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     185
actor_2_name                                                  Nicholas Simmons
actor_1_facebook_likes                                                     569
gross                                                                      NaN
genres                                                      Action|Crime|Drama
actor_1_name                                                      Keri Maletto
movie_title                                          Amidst the Devil's Wings 
num_voted_users                                                             28
cast_total_facebook_likes                                                 1461
actor_3_name                                                     Barbie Castro
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3976258/?ref_=fn_t...
num_user_for_reviews                                                       NaN
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  300000
title_year                                                                2014
actor_2_facebook_likes                                                     553
imdb_score                                                                 4.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                        17
Name: 4859, dtype: object
color                                                                    Color
director_name                                                  Vincenzo Natali
num_critic_for_reviews                                                      99
duration                                                                    90
director_facebook_likes                                                    165
actor_3_facebook_likes                                                     319
actor_2_name                                                   Julian Richings
actor_1_facebook_likes                                                     686
gross                                                                   489220
genres                                                 Mystery|Sci-Fi|Thriller
actor_1_name                                                     David Hewlett
movie_title                                                              Cube 
num_voted_users                                                         160511
cast_total_facebook_likes                                                 1743
actor_3_name                                                    Nicole de Boer
facenumber_in_poster                                                         0
plot_keywords                             escape|labyrinth|maze|red light|trap
movie_imdb_link              http://www.imdb.com/title/tt0123755/?ref_=fn_t...
num_user_for_reviews                                                       696
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                  365000
title_year                                                                1997
actor_2_facebook_likes                                                     648
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                     11000
Name: 4860, dtype: object
color                                                                    Color
director_name                                                Emma-Kate Croghan
num_critic_for_reviews                                                      21
duration                                                                    76
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      62
actor_2_name                                                  Frances O'Connor
actor_1_facebook_likes                                                     991
gross                                                                   212285
genres                                                          Comedy|Romance
actor_1_name                                                    Radha Mitchell
movie_title                                       Love and Other Catastrophes 
num_voted_users                                                           1727
cast_total_facebook_likes                                                 1661
actor_3_name                                                          Matt Day
facenumber_in_poster                                                         1
plot_keywords                film school|love|medical student|student|unive...
movie_imdb_link              http://www.imdb.com/title/tt0116931/?ref_=fn_t...
num_user_for_reviews                                                        21
language                                                               English
country                                                              Australia
content_rating                                                               R
budget                                                                  250000
title_year                                                                1996
actor_2_facebook_likes                                                     575
imdb_score                                                                 6.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                        46
Name: 4861, dtype: object
color                                                                    Color
director_name                                                    Bill Plympton
num_critic_for_reviews                                                      19
duration                                                                    75
director_facebook_likes                                                     45
actor_3_facebook_likes                                                       0
actor_2_name                                                      Bill Martone
actor_1_facebook_likes                                                       5
gross                                                                   203134
genres                                   Animation|Comedy|Drama|Fantasy|Sci-Fi
actor_1_name                                                  Charis Michelsen
movie_title                                       I Married a Strange Person! 
num_voted_users                                                           1428
cast_total_facebook_likes                                                    7
actor_3_name                                                     Richard Spore
facenumber_in_poster                                                         0
plot_keywords                claim in title|exclamation point in title|punc...
movie_imdb_link              http://www.imdb.com/title/tt0119346/?ref_=fn_t...
num_user_for_reviews                                                        21
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  250000
title_year                                                                1997
actor_2_facebook_likes                                                       2
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       178
Name: 4862, dtype: object
color                                                                    Color
director_name                                                    Greg Harrison
num_critic_for_reviews                                                      43
duration                                                                    78
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     142
actor_2_name                                                       Anne Archer
actor_1_facebook_likes                                                     308
gross                                                                   191309
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                        Amir Talai
movie_title                                                          November 
num_voted_users                                                           2787
cast_total_facebook_likes                                                 1008
actor_3_name                                                         Nora Dunn
facenumber_in_poster                                                         1
plot_keywords                female protagonist|murder|photographer|robbery...
movie_imdb_link              http://www.imdb.com/title/tt0368089/?ref_=fn_t...
num_user_for_reviews                                                        64
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  150000
title_year                                                                2004
actor_2_facebook_likes                                                     249
imdb_score                                                                 5.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                        98
Name: 4863, dtype: object
color                                                                    Color
director_name                                                    Drake Doremus
num_critic_for_reviews                                                     206
duration                                                                    90
director_facebook_likes                                                     52
actor_3_facebook_likes                                                     224
actor_2_name                                                    Charlie Bewley
actor_1_facebook_likes                                                   34000
gross                                                              3.38821e+06
genres                                                           Drama|Romance
actor_1_name                                                 Jennifer Lawrence
movie_title                                                        Like Crazy 
num_voted_users                                                          46813
cast_total_facebook_likes                                                34983
actor_3_name                                                     Finola Hughes
facenumber_in_poster                                                         1
plot_keywords                girlfriend|immigration|long distance relations...
movie_imdb_link              http://www.imdb.com/title/tt1758692/?ref_=fn_t...
num_user_for_reviews                                                       150
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                  250000
title_year                                                                2011
actor_2_facebook_likes                                                     487
imdb_score                                                                 6.7
aspect_ratio                                                              1.78
movie_facebook_likes                                                     12000
Name: 4864, dtype: object
color                                                                    Color
director_name                                                      Al Franklin
num_critic_for_reviews                                                     NaN
duration                                                                    96
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     270
actor_2_name                                              Steffinnie Phrommany
actor_1_facebook_likes                                                     471
gross                                                                      NaN
genres                                                                  Horror
actor_1_name                                                    Marshal Hilton
movie_title                                                   Teeth and Blood 
num_voted_users                                                             24
cast_total_facebook_likes                                                 1399
actor_3_name                                                        Clint Jung
facenumber_in_poster                                                         0
plot_keywords                                                      blood|teeth
movie_imdb_link              http://www.imdb.com/title/tt1991199/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  300000
title_year                                                                2015
actor_2_facebook_likes                                                     320
imdb_score                                                                 4.3
aspect_ratio                                                                16
movie_facebook_likes                                                        85
Name: 4865, dtype: object
color                                                                    Color
director_name                                                   Allison Anders
num_critic_for_reviews                                                      29
duration                                                                    92
director_facebook_likes                                                     99
actor_3_facebook_likes                                                     181
actor_2_name                                                  Rosanna Arquette
actor_1_facebook_likes                                                     793
gross                                                                   177840
genres                                                            Comedy|Music
actor_1_name                                                       Ally Sheedy
movie_title                                                        Sugar Town 
num_voted_users                                                            708
cast_total_facebook_likes                                                 1987
actor_3_name                                                          John Doe
facenumber_in_poster                                                         2
plot_keywords                drugs|music producer|rock music|title directed...
movie_imdb_link              http://www.imdb.com/title/tt0173390/?ref_=fn_t...
num_user_for_reviews                                                        22
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                  250000
title_year                                                                1999
actor_2_facebook_likes                                                     605
imdb_score                                                                 6.1
aspect_ratio                                                               NaN
movie_facebook_likes                                                        93
Name: 4866, dtype: object
color                                                                    Color
director_name                                                     Michael Kang
num_critic_for_reviews                                                      27
duration                                                                    75
director_facebook_likes                                                    269
actor_3_facebook_likes                                                       7
actor_2_name                                                      Clint Jordan
actor_1_facebook_likes                                                     100
gross                                                                    47111
genres                                                            Comedy|Drama
actor_1_name                                                 Samantha Futerman
movie_title                                                         The Motel 
num_voted_users                                                           1227
cast_total_facebook_likes                                                  127
actor_3_name                                                       Jackie Nova
facenumber_in_poster                                                         1
plot_keywords                absent father|asian american|friendship betwee...
movie_imdb_link              http://www.imdb.com/title/tt0436607/?ref_=fn_t...
num_user_for_reviews                                                        11
language                                                             Cantonese
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2005
actor_2_facebook_likes                                                       8
imdb_score                                                                 6.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                        62
Name: 4867, dtype: object
color                                                                    Color
director_name                                                    Paul Schrader
num_critic_for_reviews                                                     162
duration                                                                    99
director_facebook_likes                                                    261
actor_3_facebook_likes                                                     461
actor_2_name                                                      Gus Van Sant
actor_1_facebook_likes                                                     924
gross                                                                    49494
genres                                                          Drama|Thriller
actor_1_name                                                 Nolan Gerard Funk
movie_title                                                       The Canyons 
num_voted_users                                                           8511
cast_total_facebook_likes                                                 2862
actor_3_name                                                        James Deen
facenumber_in_poster                                                         0
plot_keywords                   cocaine|homosexual|penis|psychopath|pubic hair
movie_imdb_link              http://www.imdb.com/title/tt2292959/?ref_=fn_t...
num_user_for_reviews                                                        87
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  250000
title_year                                                                2013
actor_2_facebook_likes                                                     835
imdb_score                                                                 3.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4868, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      11
duration                                                                    58
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     250
actor_2_name                                                      James Norton
actor_1_facebook_likes                                                     887
gross                                                                      NaN
genres                                                             Crime|Drama
actor_1_name                                                 Shirley Henderson
movie_title                                          Happy Valley             
num_voted_users                                                          12848
cast_total_facebook_likes                                                 2572
actor_3_name                                                  Sarah Lancashire
facenumber_in_poster                                                         1
plot_keywords                caravan|police|police sergeant|tied to a chair...
movie_imdb_link              http://www.imdb.com/title/tt3428912/?ref_=fn_t...
num_user_for_reviews                                                        59
language                                                               English
country                                                                     UK
content_rating                                                           TV-MA
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     340
imdb_score                                                                 8.5
aspect_ratio                                                                16
movie_facebook_likes                                                     10000
Name: 4869, dtype: object
color                                                                    Color
director_name                                                  Lori Silverbush
num_critic_for_reviews                                                      26
duration                                                                    86
director_facebook_likes                                                      5
actor_3_facebook_likes                                                      41
actor_2_name                                                      Flaco Navaja
actor_1_facebook_likes                                                      68
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                        Judy Marte
movie_title                                                       On the Outs 
num_voted_users                                                            603
cast_total_facebook_likes                                                  216
actor_3_name                                                     Dominic Colón
facenumber_in_poster                                                         3
plot_keywords                dominican|drug dealer|prison|single mother|tee...
movie_imdb_link              http://www.imdb.com/title/tt0389235/?ref_=fn_t...
num_user_for_reviews                                                        15
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2004
actor_2_facebook_likes                                                      64
imdb_score                                                                 6.9
aspect_ratio                                                               NaN
movie_facebook_likes                                                       122
Name: 4870, dtype: object
color                                                                    Color
director_name                                                     Jeff Nichols
num_critic_for_reviews                                                      85
duration                                                                    92
director_facebook_likes                                                    337
actor_3_facebook_likes                                                      22
actor_2_name                                                  Natalie Canerday
actor_1_facebook_likes                                                      35
gross                                                                    45661
genres                                                          Drama|Thriller
actor_1_name                                                Michael Abbott Jr.
movie_title                                                   Shotgun Stories 
num_voted_users                                                           7148
cast_total_facebook_likes                                                  114
actor_3_name                                                      Travis Smith
facenumber_in_poster                                                         0
plot_keywords                bare chested male|half brother|indifference|sh...
movie_imdb_link              http://www.imdb.com/title/tt0952682/?ref_=fn_t...
num_user_for_reviews                                                        32
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2007
actor_2_facebook_likes                                                      32
imdb_score                                                                 7.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       773
Name: 4871, dtype: object
color                                                                    Color
director_name                                                 Stuart Hazeldine
num_critic_for_reviews                                                      77
duration                                                                   101
director_facebook_likes                                                     17
actor_3_facebook_likes                                                     289
actor_2_name                                                        Luke Mably
actor_1_facebook_likes                                                     766
gross                                                                      NaN
genres                                                        Mystery|Thriller
actor_1_name                                                      Colin Salmon
movie_title                                                              Exam 
num_voted_users                                                          70076
cast_total_facebook_likes                                                 2123
actor_3_name                                                Pollyanna McIntosh
facenumber_in_poster                                                         0
plot_keywords                band aid|hairpin|one day|single set production...
movie_imdb_link              http://www.imdb.com/title/tt1258197/?ref_=fn_t...
num_user_for_reviews                                                       120
language                                                               English
country                                                                     UK
content_rating                                                       Not Rated
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     438
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                     14000
Name: 4872, dtype: object
color                                                          Black and White
director_name                                                  Hilary Brougher
num_critic_for_reviews                                                       8
duration                                                                    81
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       5
actor_2_name                                                     Samantha Buck
actor_1_facebook_likes                                                     119
gross                                                                    18195
genres                                                                  Sci-Fi
actor_1_name                                                    James Urbaniak
movie_title                                        The Sticky Fingers of Time 
num_voted_users                                                            336
cast_total_facebook_likes                                                  154
actor_3_name                                                   Terumi Matthews
facenumber_in_poster                                                         0
plot_keywords                future|nonlinear timeline|time travel|title di...
movie_imdb_link              http://www.imdb.com/title/tt0127302/?ref_=fn_t...
num_user_for_reviews                                                         7
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  250000
title_year                                                                1997
actor_2_facebook_likes                                                      24
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                        67
Name: 4873, dtype: object
color                                                                    Color
director_name                                                Rachel Goldenberg
num_critic_for_reviews                                                       5
duration                                                                    93
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      73
actor_2_name                                                       Mark Hengst
actor_1_facebook_likes                                                     349
gross                                                                      NaN
genres                                                           Drama|Musical
actor_1_name                                                 Dustin Fitzsimons
movie_title                                             Sunday School Musical 
num_voted_users                                                            602
cast_total_facebook_likes                                                  631
actor_3_name                                                   Debra Lynn Hull
facenumber_in_poster                                                         0
plot_keywords                 church|competition|high school|new school|pastor
movie_imdb_link              http://www.imdb.com/title/tt1270792/?ref_=fn_t...
num_user_for_reviews                                                        18
language                                                               English
country                                                                    USA
content_rating                                                               G
budget                                                                     NaN
title_year                                                                2008
actor_2_facebook_likes                                                     168
imdb_score                                                                 2.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       777
Name: 4874, dtype: object
color                                                                    Color
director_name                                                   Corbin Bernsen
num_critic_for_reviews                                                       3
duration                                                                    95
director_facebook_likes                                                   1000
actor_3_facebook_likes                                                       3
actor_2_name                                                    Lorne Cardinal
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                    Corbin Bernsen
movie_title                                                              Rust 
num_voted_users                                                            300
cast_total_facebook_likes                                                 1056
actor_3_name                                                   Kirsten Collins
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1360826/?ref_=fn_t...
num_user_for_reviews                                                         8
language                                                               English
country                                                                 Canada
content_rating                                                              PG
budget                                                                  250000
title_year                                                                2010
actor_2_facebook_likes                                                      53
imdb_score                                                                 5.7
aspect_ratio                                                              1.78
movie_facebook_likes                                                       141
Name: 4875, dtype: object
color                                                                    Color
director_name                                                     Jamin Winans
num_critic_for_reviews                                                      66
duration                                                                   107
director_facebook_likes                                                     63
actor_3_facebook_likes                                                      76
actor_2_name                                                     Marty Lindsey
actor_1_facebook_likes                                                     135
gross                                                                      NaN
genres                                             Action|Drama|Fantasy|Sci-Fi
actor_1_name                                                      Eme Ikwuakor
movie_title                                                               Ink 
num_voted_users                                                          18486
cast_total_facebook_likes                                                  457
actor_3_name                                                     Jessica Duffy
facenumber_in_poster                                                         0
plot_keywords                dream|self destructiveness|storyteller|time pa...
movie_imdb_link              http://www.imdb.com/title/tt1071804/?ref_=fn_t...
num_user_for_reviews                                                       215
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     115
imdb_score                                                                   7
aspect_ratio                                                              1.78
movie_facebook_likes                                                     11000
Name: 4876, dtype: object
color                                                                    Color
director_name                                                      Tom Seidman
num_critic_for_reviews                                                       4
duration                                                                    98
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     104
actor_2_name                                                     Derek Brandon
actor_1_facebook_likes                                                     337
gross                                                                      NaN
genres                                                            Drama|Family
actor_1_name                                                Florence Henderson
movie_title                                               The Christmas Bunny 
num_voted_users                                                            450
cast_total_facebook_likes                                                  694
actor_3_name                                              Charles Irving Beale
facenumber_in_poster                                                         2
plot_keywords                   animal in title|christmas|farm|michigan|rabbit
movie_imdb_link              http://www.imdb.com/title/tt1640714/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                  250000
title_year                                                                2010
actor_2_facebook_likes                                                     168
imdb_score                                                                 6.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 4877, dtype: object
color                                                                    Color
director_name                                                    Jason Naumann
num_critic_for_reviews                                                     NaN
duration                                                                    35
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     152
actor_2_name                                                     Kate Flannery
actor_1_facebook_likes                                                     338
gross                                                                      NaN
genres                                                            Comedy|Short
actor_1_name                                                  Victoria Jackson
movie_title                                                      Jesus People 
num_voted_users                                                             31
cast_total_facebook_likes                                                  968
actor_3_name                                                        Tim Bagley
facenumber_in_poster                                                         5
plot_keywords                         mockumentary|single camera|subtle comedy
movie_imdb_link              http://www.imdb.com/title/tt1003002/?ref_=fn_t...
num_user_for_reviews                                                       NaN
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2007
actor_2_facebook_likes                                                     219
imdb_score                                                                 6.9
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 4878, dtype: object
color                                                                    Color
director_name                                                      Matt Cimber
num_critic_for_reviews                                                      15
duration                                                                   108
director_facebook_likes                                                     32
actor_3_facebook_likes                                                     180
actor_2_name                                                     June Lockhart
actor_1_facebook_likes                                                     602
gross                                                                      NaN
genres                                                             Crime|Drama
actor_1_name                                                       Stacy Keach
movie_title                                                         Butterfly 
num_voted_users                                                            870
cast_total_facebook_likes                                                 1991
actor_3_name                                                    Stuart Whitman
facenumber_in_poster                                                         0
plot_keywords                breasts|female frontal nudity|female rear nudi...
movie_imdb_link              http://www.imdb.com/title/tt0082122/?ref_=fn_t...
num_user_for_reviews                                                        18
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1982
actor_2_facebook_likes                                                     427
imdb_score                                                                 4.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                        76
Name: 4879, dtype: object
color                                                                    Color
director_name                                                       Sam Martin
num_critic_for_reviews                                                       1
duration                                                                    66
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                        Steve Duin
actor_1_facebook_likes                                                       0
gross                                                                      NaN
genres                                                             Documentary
actor_1_name                                                         Sam Adams
movie_title                                                         UnDivided 
num_voted_users                                                              6
cast_total_facebook_likes                                                    0
actor_3_name                                                        Jeff Jacob
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3564748/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                  250000
title_year                                                                2013
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                        53
Name: 4880, dtype: object
color                                                                    Color
director_name                                                     Andrew Hyatt
num_critic_for_reviews                                                      12
duration                                                                    95
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      89
actor_2_name                                                       Brit Morgan
actor_1_facebook_likes                                                     236
gross                                                                      NaN
genres                                                         Horror|Thriller
actor_1_name                                                        Noah Segan
movie_title                                                        The Frozen 
num_voted_users                                                           1488
cast_total_facebook_likes                                                  537
actor_3_name                                                      Sedona James
facenumber_in_poster                                                         1
plot_keywords                                                   two word title
movie_imdb_link              http://www.imdb.com/title/tt2363439/?ref_=fn_t...
num_user_for_reviews                                                        28
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                  250000
title_year                                                                2012
actor_2_facebook_likes                                                     206
imdb_score                                                                 4.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                       519
Name: 4881, dtype: object
color                                                                    Color
director_name                                                       Dan Curtis
num_critic_for_reviews                                                     NaN
duration                                                                    99
director_facebook_likes                                                     45
actor_3_facebook_likes                                                     224
actor_2_name                                                    Campbell Scott
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                         Fantasy|Romance
actor_1_name                                              Jennifer Jason Leigh
movie_title                                                   The Love Letter 
num_voted_users                                                           1465
cast_total_facebook_likes                                                 2166
actor_3_name                                                   Estelle Parsons
facenumber_in_poster                                                         1
plot_keywords                             antique|desk|letter|love|time travel
movie_imdb_link              http://www.imdb.com/title/tt0140340/?ref_=fn_t...
num_user_for_reviews                                                        56
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                     NaN
title_year                                                                1998
actor_2_facebook_likes                                                     393
imdb_score                                                                 7.4
aspect_ratio                                                              1.33
movie_facebook_likes                                                       515
Name: 4882, dtype: object
color                                                                    Color
director_name                                                 Joel Paul Reisig
num_critic_for_reviews                                                       1
duration                                                                   108
director_facebook_likes                                                    431
actor_3_facebook_likes                                                       3
actor_2_name                                                   Dana Blackstone
actor_1_facebook_likes                                                     288
gross                                                                      NaN
genres                                                                  Family
actor_1_name                                                   Joshua Ray Bell
movie_title                                                        Horse Camp 
num_voted_users                                                             25
cast_total_facebook_likes                                                  387
actor_3_name                                                    Annelyse Ahmad
facenumber_in_poster                                                         6
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3421204/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                  250000
title_year                                                                2014
actor_2_facebook_likes                                                      96
imdb_score                                                                 6.6
aspect_ratio                                                               NaN
movie_facebook_likes                                                        71
Name: 4883, dtype: object
color                                                                    Color
director_name                                                    Kristin Rizzo
num_critic_for_reviews                                                       6
duration                                                                    90
director_facebook_likes                                                     30
actor_3_facebook_likes                                                     670
actor_2_name                                                       Robert Davi
actor_1_facebook_likes                                                     699
gross                                                                      NaN
genres                                                             Documentary
actor_1_name                                                      Esai Morales
movie_title                                                   Give Me Shelter 
num_voted_users                                                             37
cast_total_facebook_likes                                                 3967
actor_3_name                                                    Elaine Hendrix
facenumber_in_poster                                                         0
plot_keywords                                                 independent film
movie_imdb_link              http://www.imdb.com/title/tt2559658/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  250000
title_year                                                                2014
actor_2_facebook_likes                                                     683
imdb_score                                                                   8
aspect_ratio                                                               NaN
movie_facebook_likes                                                       199
Name: 4884, dtype: object
color                                                          Black and White
director_name                                                       King Vidor
num_critic_for_reviews                                                      48
duration                                                                   151
director_facebook_likes                                                     54
actor_3_facebook_likes                                                       6
actor_2_name                                                      Renée Adorée
actor_1_facebook_likes                                                      81
gross                                                                      NaN
genres                                                       Drama|Romance|War
actor_1_name                                                      John Gilbert
movie_title                                                    The Big Parade 
num_voted_users                                                           4849
cast_total_facebook_likes                                                  108
actor_3_name                                                      Claire Adams
facenumber_in_poster                                                         0
plot_keywords                chewing gum|climbing a tree|france|translation...
movie_imdb_link              http://www.imdb.com/title/tt0015624/?ref_=fn_t...
num_user_for_reviews                                                        45
language                                                                   NaN
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                  245000
title_year                                                                1925
actor_2_facebook_likes                                                      12
imdb_score                                                                 8.3
aspect_ratio                                                              1.33
movie_facebook_likes                                                       226
Name: 4885, dtype: object
color                                                                    Color
director_name                                                     Ward Roberts
num_critic_for_reviews                                                       2
duration                                                                    83
director_facebook_likes                                                     12
actor_3_facebook_likes                                                      29
actor_2_name                                                      Jacob Zachar
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                          Sid Haig
movie_title                                                    Little Big Top 
num_voted_users                                                            110
cast_total_facebook_likes                                                 1244
actor_3_name                                                       Travis Betz
facenumber_in_poster                                                         0
plot_keywords                   amateur|circus|clown|unconsciousness|urination
movie_imdb_link              http://www.imdb.com/title/tt0469690/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  240000
title_year                                                                2006
actor_2_facebook_likes                                                     185
imdb_score                                                                 6.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                        72
Name: 4886, dtype: object
color                                                                    Color
director_name                                                    Zoran Lisinac
num_critic_for_reviews                                                      17
duration                                                                   108
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     142
actor_2_name                                                       Brock Baker
actor_1_facebook_likes                                                     431
gross                                                                      NaN
genres                                                    Comedy|Music|Romance
actor_1_name                                                   Matthew Emerick
movie_title                                                Along the Roadside 
num_voted_users                                                            330
cast_total_facebook_likes                                                 1087
actor_3_name                                                    Sheldon Bailey
facenumber_in_poster                                                         3
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2290113/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  250000
title_year                                                                2013
actor_2_facebook_likes                                                     297
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                       231
Name: 4887, dtype: object
color                                                                    Color
director_name                                             Nicolas Winding Refn
num_critic_for_reviews                                                     225
duration                                                                    92
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     146
actor_2_name                                                       James Lance
actor_1_facebook_likes                                                   27000
gross                                                                   104792
genres                                            Action|Biography|Crime|Drama
actor_1_name                                                         Tom Hardy
movie_title                                                           Bronson 
num_voted_users                                                          84817
cast_total_facebook_likes                                                27507
actor_3_name                                                         Matt King
facenumber_in_poster                                                         0
plot_keywords                male full frontal nudity|prison|prisoner|solit...
movie_imdb_link              http://www.imdb.com/title/tt1172570/?ref_=fn_t...
num_user_for_reviews                                                       145
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2008
actor_2_facebook_likes                                                     161
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     22000
Name: 4888, dtype: object
color                                                                    Color
director_name                                                    James O'Brien
num_critic_for_reviews                                                       5
duration                                                                   105
director_facebook_likes                                                      7
actor_3_facebook_likes                                                     494
actor_2_name                                                    Vivian Lamolli
actor_1_facebook_likes                                                     814
gross                                                                      NaN
genres                                Adventure|Drama|Fantasy|Thriller|Western
actor_1_name                                                     Mark Fantasia
movie_title                                                  Western Religion 
num_voted_users                                                            146
cast_total_facebook_likes                                                 2970
actor_3_name                                                      Greg Jackson
facenumber_in_poster                                                         0
plot_keywords                 arizona|gambling|gunfighter|poker game|year 1879
movie_imdb_link              http://www.imdb.com/title/tt3210710/?ref_=fn_t...
num_user_for_reviews                                                         4
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  250000
title_year                                                                2015
actor_2_facebook_likes                                                     755
imdb_score                                                                   4
aspect_ratio                                                               NaN
movie_facebook_likes                                                       244
Name: 4889, dtype: object
color                                                                    Color
director_name                                                       Tom Putnam
num_critic_for_reviews                                                      22
duration                                                                    86
director_facebook_likes                                                     15
actor_3_facebook_likes                                                       0
actor_2_name                                                     Donald Austin
actor_1_facebook_likes                                                       2
gross                                                                   111300
genres                                                             Documentary
actor_1_name                                           Brendan Doogie Milewski
movie_title                                                              Burn 
num_voted_users                                                            575
cast_total_facebook_likes                                                    2
actor_3_name                                                   Craig Dougherty
facenumber_in_poster                                                         0
plot_keywords                abandoned building|detroit michigan|firefighte...
movie_imdb_link              http://www.imdb.com/title/tt1781784/?ref_=fn_t...
num_user_for_reviews                                                         6
language                                                               English
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                  225000
title_year                                                                2012
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       801
Name: 4890, dtype: object
color                                                                    Color
director_name                                                        Jon Shear
num_critic_for_reviews                                                      38
duration                                                                   106
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     131
actor_2_name                                                     Josh Hamilton
actor_1_facebook_likes                                                     254
gross                                                              1.02712e+06
genres                                                                   Drama
actor_1_name                                                     Dan Futterman
movie_title                                                           Urbania 
num_voted_users                                                           2742
cast_total_facebook_likes                                                  964
actor_3_name                                                      Matt Keeslar
facenumber_in_poster                                                         1
plot_keywords                          hot dog bun|needle|new york|rat|tourist
movie_imdb_link              http://www.imdb.com/title/tt0182508/?ref_=fn_t...
num_user_for_reviews                                                        73
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  225000
title_year                                                                2000
actor_2_facebook_likes                                                     147
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                        72
Name: 4891, dtype: object
color                                                                    Color
director_name                                                  Al Silliman Jr.
num_critic_for_reviews                                                      21
duration                                                                    93
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                        Nancy Ison
actor_1_facebook_likes                                                      12
gross                                                                      NaN
genres                                                            Comedy|Drama
actor_1_name                                                    Christina Hart
movie_title                                                  The Stewardesses 
num_voted_users                                                            161
cast_total_facebook_likes                                                   24
actor_3_name                                                    William Condos
facenumber_in_poster                                                         0
plot_keywords                female frontal nudity|female nudity|lesbian se...
movie_imdb_link              http://www.imdb.com/title/tt0168192/?ref_=fn_t...
num_user_for_reviews                                                         5
language                                                               English
country                                                                    USA
content_rating                                                               X
budget                                                                  100000
title_year                                                                1969
actor_2_facebook_likes                                                      12
imdb_score                                                                   4
aspect_ratio                                                              1.37
movie_facebook_likes                                                        17
Name: 4892, dtype: object
color                                                          Black and White
director_name                                                    Eugène Lourié
num_critic_for_reviews                                                      67
duration                                                                    80
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      21
actor_2_name                                                    Cecil Kellaway
actor_1_facebook_likes                                                      57
gross                                                                    5e+06
genres                                                 Adventure|Horror|Sci-Fi
actor_1_name                                                     Kenneth Tobey
movie_title                                     The Beast from 20,000 Fathoms 
num_voted_users                                                           4812
cast_total_facebook_likes                                                  205
actor_3_name                                                      Ross Elliott
facenumber_in_poster                                                         0
plot_keywords                        arctic|beast|dinosaur|monster|rhedosaurus
movie_imdb_link              http://www.imdb.com/title/tt0045546/?ref_=fn_t...
num_user_for_reviews                                                        88
language                                                               English
country                                                                    USA
content_rating                                                        Approved
budget                                                                  210000
title_year                                                                1953
actor_2_facebook_likes                                                      40
imdb_score                                                                 6.7
aspect_ratio                                                              1.37
movie_facebook_likes                                                       465
Name: 4893, dtype: object
color                                                                    Color
director_name                                                Richard Fleischer
num_critic_for_reviews                                                      69
duration                                                                   127
director_facebook_likes                                                    130
actor_3_facebook_likes                                                      51
actor_2_name                                                   Robert J. Wilke
actor_1_facebook_likes                                                     618
gross                                                                      NaN
genres                                   Adventure|Drama|Family|Fantasy|Sci-Fi
actor_1_name                                                       James Mason
movie_title                                      20,000 Leagues Under the Sea 
num_voted_users                                                          22124
cast_total_facebook_likes                                                  800
actor_3_name                                                        Paul Lukas
facenumber_in_poster                                                         0
plot_keywords                           captain|expedition|sea|submarine|whale
movie_imdb_link              http://www.imdb.com/title/tt0046672/?ref_=fn_t...
num_user_for_reviews                                                       108
language                                                               English
country                                                                    USA
content_rating                                                        Approved
budget                                                                   5e+06
title_year                                                                1954
actor_2_facebook_likes                                                      53
imdb_score                                                                 7.2
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 4894, dtype: object
color                                                                    Color
director_name                                                    George Miller
num_critic_for_reviews                                                     208
duration                                                                    93
director_facebook_likes                                                    750
actor_3_facebook_likes                                                      28
actor_2_name                                                      Steve Bisley
actor_1_facebook_likes                                                     728
gross                                                                      NaN
genres                                        Action|Adventure|Sci-Fi|Thriller
actor_1_name                                                  Hugh Keays-Byrne
movie_title                                                           Mad Max 
num_voted_users                                                         152232
cast_total_facebook_likes                                                  928
actor_3_name                                                     Joanne Samuel
facenumber_in_poster                                                         0
plot_keywords                biker|motorcycle|motorcycle gang|post apocalyp...
movie_imdb_link              http://www.imdb.com/title/tt0079501/?ref_=fn_t...
num_user_for_reviews                                                       303
language                                                               English
country                                                              Australia
content_rating                                                               R
budget                                                                  200000
title_year                                                                1979
actor_2_facebook_likes                                                      76
imdb_score                                                                   7
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 4895, dtype: object
color                                                                    Color
director_name                                                       Doug Liman
num_critic_for_reviews                                                      77
duration                                                                    96
director_facebook_likes                                                    218
actor_3_facebook_likes                                                      31
actor_2_name                                                       Alex Désert
actor_1_facebook_likes                                                    4000
gross                                                              4.50592e+06
genres                                                            Comedy|Drama
actor_1_name                                                       Jon Favreau
movie_title                                                          Swingers 
num_voted_users                                                          63951
cast_total_facebook_likes                                                 4230
actor_3_name                                                    Blake Lindsley
facenumber_in_poster                                                         0
plot_keywords                     actor|black panties|cult film|friend|upskirt
movie_imdb_link              http://www.imdb.com/title/tt0117802/?ref_=fn_t...
num_user_for_reviews                                                       252
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  200000
title_year                                                                1996
actor_2_facebook_likes                                                     135
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4896, dtype: object
color                                                                    Color
director_name                                                     Sergio Leone
num_critic_for_reviews                                                     122
duration                                                                    99
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      93
actor_2_name                                                Gian Maria Volontè
actor_1_facebook_likes                                                   16000
gross                                                                  3.5e+06
genres                                                    Action|Drama|Western
actor_1_name                                                    Clint Eastwood
movie_title                                              A Fistful of Dollars 
num_voted_users                                                         147566
cast_total_facebook_likes                                                16534
actor_3_name                                                     Aldo Sambrell
facenumber_in_poster                                                         1
plot_keywords                            balladeer|bar|drifter|mexican|revenge
movie_imdb_link              http://www.imdb.com/title/tt0058461/?ref_=fn_t...
num_user_for_reviews                                                       235
language                                                               Italian
country                                                                  Italy
content_rating                                                               R
budget                                                                  200000
title_year                                                                1964
actor_2_facebook_likes                                                     360
imdb_score                                                                   8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4897, dtype: object
color                                                          Black and White
director_name                                                   Lowell Sherman
num_critic_for_reviews                                                      35
duration                                                                    66
director_facebook_likes                                                     16
actor_3_facebook_likes                                                      28
actor_2_name                                                    Gilbert Roland
actor_1_facebook_likes                                                     418
gross                                                                      NaN
genres                                    Comedy|Drama|History|Musical|Romance
actor_1_name                                                          Mae West
movie_title                                                She Done Him Wrong 
num_voted_users                                                           4152
cast_total_facebook_likes                                                  583
actor_3_name                                                    Louise Beavers
facenumber_in_poster                                                         1
plot_keywords                captain|marriage proposal|saloon|saloon singer...
movie_imdb_link              http://www.imdb.com/title/tt0024548/?ref_=fn_t...
num_user_for_reviews                                                        59
language                                                               English
country                                                                    USA
content_rating                                                        Approved
budget                                                                  200000
title_year                                                                1933
actor_2_facebook_likes                                                      85
imdb_score                                                                 6.5
aspect_ratio                                                              1.37
movie_facebook_likes                                                       328
Name: 4898, dtype: object
color                                                                    Color
director_name                                                 Maurizio Benazzo
num_critic_for_reviews                                                      15
duration                                                                    85
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                      Jasper Johal
actor_1_facebook_likes                                                      66
gross                                                                   381225
genres                                                             Documentary
actor_1_name                                                    The Dalai Lama
movie_title                                  Short Cut to Nirvana: Kumbh Mela 
num_voted_users                                                            131
cast_total_facebook_likes                                                   66
actor_3_name                                                  Swami Krishnanad
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt0420723/?ref_=fn_t...
num_user_for_reviews                                                        13
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                  200000
title_year                                                                2004
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.2
aspect_ratio                                                              1.78
movie_facebook_likes                                                        30
Name: 4899, dtype: object
color                                                                    Color
director_name                                                   David G. Evans
num_critic_for_reviews                                                      25
duration                                                                   101
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      16
actor_2_name                                                      Chris Thomas
actor_1_facebook_likes                                                   77000
gross                                                              2.42824e+06
genres                                                                   Drama
actor_1_name                                                    Michael Joiner
movie_title                                                    The Grace Card 
num_voted_users                                                           2099
cast_total_facebook_likes                                                77046
actor_3_name                                              Michael Higgenbottom
facenumber_in_poster                                                         7
plot_keywords                christian film|forgiveness|hospital|pastor|police
movie_imdb_link              http://www.imdb.com/title/tt1544600/?ref_=fn_t...
num_user_for_reviews                                                        26
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                  200000
title_year                                                                2010
actor_2_facebook_likes                                                      21
imdb_score                                                                 6.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 4900, dtype: object
color                                                                    Color
director_name                                                     Ava DuVernay
num_critic_for_reviews                                                      37
duration                                                                    97
director_facebook_likes                                                    151
actor_3_facebook_likes                                                     305
actor_2_name                                                     David Oyelowo
actor_1_facebook_likes                                                    1000
gross                                                                    78030
genres                                                                   Drama
actor_1_name                                                    Omari Hardwick
movie_title                                                 Middle of Nowhere 
num_voted_users                                                           1034
cast_total_facebook_likes                                                 3021
actor_3_name                                                Lorraine Toussaint
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1211890/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  200000
title_year                                                                2012
actor_2_facebook_likes                                                    1000
imdb_score                                                                 6.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       569
Name: 4901, dtype: object
color                                                                    Color
director_name                                                       Tom Tykwer
num_critic_for_reviews                                                      76
duration                                                                   119
director_facebook_likes                                                    670
actor_3_facebook_likes                                                       9
actor_2_name                                                Sebastian Schipper
actor_1_facebook_likes                                                      24
gross                                                                    59774
genres                                                    Comedy|Drama|Romance
actor_1_name                                                    Devid Striesow
movie_title                                                                 3 
num_voted_users                                                           4212
cast_total_facebook_likes                                                   69
actor_3_name                                                       Sophie Rois
facenumber_in_poster                                                         0
plot_keywords                female nudity|full frontal female nudity|male ...
movie_imdb_link              http://www.imdb.com/title/tt1517177/?ref_=fn_t...
num_user_for_reviews                                                        18
language                                                                German
country                                                                Germany
content_rating                                                         Unrated
budget                                                                     NaN
title_year                                                                2010
actor_2_facebook_likes                                                      20
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                      2000
Name: 4902, dtype: object
color                                                                    Color
director_name                                                   Sherman Alexie
num_critic_for_reviews                                                      12
duration                                                                   103
director_facebook_likes                                                     18
actor_3_facebook_likes                                                      61
actor_2_name                                                         Leo Rossi
actor_1_facebook_likes                                                      96
gross                                                                   174682
genres                                                             Drama|Music
actor_1_name                                            William Joseph Elk III
movie_title                                      The Business of Fancydancing 
num_voted_users                                                            460
cast_total_facebook_likes                                                  314
actor_3_name                                                     Cynthia Geary
facenumber_in_poster                                                         0
plot_keywords                funeral|gay|native american protagonist|poet|r...
movie_imdb_link              http://www.imdb.com/title/tt0303313/?ref_=fn_t...
num_user_for_reviews                                                        14
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  200000
title_year                                                                2002
actor_2_facebook_likes                                                      90
imdb_score                                                                 6.9
aspect_ratio                                                               NaN
movie_facebook_likes                                                        96
Name: 4903, dtype: object
color                                                                    Color
director_name                                                    Justin Dillon
num_critic_for_reviews                                                       7
duration                                                                    86
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      15
actor_2_name                                               Natasha Bedingfield
actor_1_facebook_likes                                                     178
gross                                                                   215185
genres                                               Documentary|History|Music
actor_1_name                                                         Matisyahu
movie_title                                                   Call + Response 
num_voted_users                                                             48
cast_total_facebook_likes                                                  279
actor_3_name                                                Madeleine Albright
facenumber_in_poster                                                         3
plot_keywords                fair trade|human trafficking|non profit|rockum...
movie_imdb_link              http://www.imdb.com/title/tt1301130/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                  200000
title_year                                                                2008
actor_2_facebook_likes                                                      58
imdb_score                                                                 7.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                        26
Name: 4904, dtype: object
color                                                                    Color
director_name                                                Steven Soderbergh
num_critic_for_reviews                                                     450
duration                                                                   106
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     273
actor_2_name                                                   David Costabile
actor_1_facebook_likes                                                   17000
gross                                                              3.21544e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                    Channing Tatum
movie_title                                                      Side Effects 
num_voted_users                                                         148334
cast_total_facebook_likes                                                18469
actor_3_name                                                       Katie Lowes
facenumber_in_poster                                                         0
plot_keywords                clinical trial|female protagonist|neuropharmac...
movie_imdb_link              http://www.imdb.com/title/tt2053463/?ref_=fn_t...
num_user_for_reviews                                                       274
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   3e+07
title_year                                                                2013
actor_2_facebook_likes                                                     681
imdb_score                                                                 7.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                     29000
Name: 4905, dtype: object
color                                                                    Color
director_name                                                      Stevan Mena
num_critic_for_reviews                                                      60
duration                                                                    90
director_facebook_likes                                                     25
actor_3_facebook_likes                                                      10
actor_2_name                                                       Stevan Mena
actor_1_facebook_likes                                                     169
gross                                                                      NaN
genres                                           Crime|Horror|Mystery|Thriller
actor_1_name                                                R. Brandon Johnson
movie_title                                                       Malevolence 
num_voted_users                                                           2413
cast_total_facebook_likes                                                  206
actor_3_name                                                    Richard Glover
facenumber_in_poster                                                         0
plot_keywords                        abandoned house|bank|robber|swing|witness
movie_imdb_link              http://www.imdb.com/title/tt0388230/?ref_=fn_t...
num_user_for_reviews                                                       112
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  200000
title_year                                                                2003
actor_2_facebook_likes                                                      25
imdb_score                                                                 5.1
aspect_ratio                                                              1.33
movie_facebook_likes                                                       198
Name: 4906, dtype: object
color                                                                    Color
director_name                                                      Adam Rifkin
num_critic_for_reviews                                                       4
duration                                                                    95
director_facebook_likes                                                     89
actor_3_facebook_likes                                                      45
actor_2_name                                                       Adam Rifkin
actor_1_facebook_likes                                                     471
gross                                                                      NaN
genres                                                            Comedy|Drama
actor_1_name                                                     Marri Savinar
movie_title                                             Shooting the Warwicks 
num_voted_users                                                             81
cast_total_facebook_likes                                                  705
actor_3_name                                                    Bethany Blakey
facenumber_in_poster                                                         0
plot_keywords                family relationships|husband wife relationship...
movie_imdb_link              http://www.imdb.com/title/tt2690560/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  250000
title_year                                                                2015
actor_2_facebook_likes                                                      89
imdb_score                                                                 6.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                        47
Name: 4907, dtype: object
color                                                                    Color
director_name                                                     Eric Valette
num_critic_for_reviews                                                      42
duration                                                                    94
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     156
actor_2_name                                                      Ryan Kennedy
actor_1_facebook_likes                                                     259
gross                                                                      NaN
genres                                                  Horror|Sci-Fi|Thriller
actor_1_name                                                   Melanie Papalia
movie_title                                                      Super Hybrid 
num_voted_users                                                           1328
cast_total_facebook_likes                                                  711
actor_3_name                                                      John Reardon
facenumber_in_poster                                                         0
plot_keywords                based on comic book|blue bra and panties|femal...
movie_imdb_link              http://www.imdb.com/title/tt1152827/?ref_=fn_t...
num_user_for_reviews                                                        22
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                 1.3e+07
title_year                                                                2010
actor_2_facebook_likes                                                     165
imdb_score                                                                 3.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4908, dtype: object
color                                                                    Color
director_name                                                      Jay Duplass
num_critic_for_reviews                                                      93
duration                                                                    84
director_facebook_likes                                                    157
actor_3_facebook_likes                                                      98
actor_2_name                                                  Jennifer Lafleur
actor_1_facebook_likes                                                     962
gross                                                                   140016
genres                                             Comedy|Drama|Horror|Romance
actor_1_name                                                      Greta Gerwig
movie_title                                                           Baghead 
num_voted_users                                                           3507
cast_total_facebook_likes                                                 2016
actor_3_name                                                      Elise Muller
facenumber_in_poster                                                         0
plot_keywords                        actor|cabin|california|paper bag|vomiting
movie_imdb_link              http://www.imdb.com/title/tt0923600/?ref_=fn_t...
num_user_for_reviews                                                        40
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2008
actor_2_facebook_likes                                                     873
imdb_score                                                                   6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       443
Name: 4909, dtype: object
color                                                                    Color
director_name                                                  Livingston Oden
num_critic_for_reviews                                                       1
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      15
actor_2_name                                                 Victoria Lachelle
actor_1_facebook_likes                                                     138
gross                                                                      NaN
genres                                          Comedy|Horror|Mystery|Thriller
actor_1_name                                                    Susan Chambers
movie_title                                                          Solitude 
num_voted_users                                                             78
cast_total_facebook_likes                                                  192
actor_3_name                                                       Ali Daniels
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3565836/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2014
actor_2_facebook_likes                                                      18
imdb_score                                                                 6.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                       267
Name: 4910, dtype: object
color                                                                    Color
director_name                                                     Chris Marker
num_critic_for_reviews                                                      16
duration                                                                    59
director_facebook_likes                                                    121
actor_3_facebook_likes                                                       0
actor_2_name                                                   Bertrand Cantat
actor_1_facebook_likes                                                      27
gross                                                                      NaN
genres                                                             Documentary
actor_1_name                                                      Marina Vlady
movie_title                                      The Case of the Grinning Cat 
num_voted_users                                                            352
cast_total_facebook_likes                                                   27
actor_3_name                                               Léon Schwartzenberg
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt0437123/?ref_=fn_t...
num_user_for_reviews                                                         4
language                                                                French
country                                                                 France
content_rating                                                             NaN
budget                                                                  150000
title_year                                                                2004
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.4
aspect_ratio                                                              1.37
movie_facebook_likes                                                        44
Name: 4911, dtype: object
color                                                          Black and White
director_name                                              Carl Theodor Dreyer
num_critic_for_reviews                                                      54
duration                                                                   126
director_facebook_likes                                                    147
actor_3_facebook_likes                                                       0
actor_2_name                                                  Sylvia Eckhausen
actor_1_facebook_likes                                                       0
gross                                                                      NaN
genres                                                           Drama|Fantasy
actor_1_name                                                     Hanne Aagesen
movie_title                                                             Ordet 
num_voted_users                                                           9903
cast_total_facebook_likes                                                    0
actor_3_name                                                  Ejner Federspiel
facenumber_in_poster                                                         0
plot_keywords                             august|doctor|faith|patriarch|prayer
movie_imdb_link              http://www.imdb.com/title/tt0048452/?ref_=fn_t...
num_user_for_reviews                                                        49
language                                                                Danish
country                                                                Denmark
content_rating                                                       Not Rated
budget                                                                     NaN
title_year                                                                1955
actor_2_facebook_likes                                                       0
imdb_score                                                                 8.1
aspect_ratio                                                              1.37
movie_facebook_likes                                                       863
Name: 4912, dtype: object
color                                                                    Color
director_name                                                   Marianna Palka
num_critic_for_reviews                                                      38
duration                                                                    86
director_facebook_likes                                                    123
actor_3_facebook_likes                                                     782
actor_2_name                                                      Martin Starr
actor_1_facebook_likes                                                    3000
gross                                                                    15542
genres                                                    Comedy|Drama|Romance
actor_1_name                                               Bryce Dallas Howard
movie_title                                                         Good Dick 
num_voted_users                                                           6689
cast_total_facebook_likes                                                 7144
actor_3_name                                                      Jason Ritter
facenumber_in_poster                                                         0
plot_keywords                avoidant personality disorder|emotionally vuln...
movie_imdb_link              http://www.imdb.com/title/tt0944101/?ref_=fn_t...
num_user_for_reviews                                                        51
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2008
actor_2_facebook_likes                                                     985
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4913, dtype: object
color                                                                    Color
director_name                                                Richard Schenkman
num_critic_for_reviews                                                      66
duration                                                                    87
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     131
actor_2_name                                                  John Billingsley
actor_1_facebook_likes                                                     505
gross                                                                      NaN
genres                                                    Drama|Romance|Sci-Fi
actor_1_name                                                      William Katt
movie_title                                                The Man from Earth 
num_voted_users                                                         129799
cast_total_facebook_likes                                                 1181
actor_3_name                                                   David Lee Smith
facenumber_in_poster                                                         0
plot_keywords                cro magnon|dialogue driven storyline|single se...
movie_imdb_link              http://www.imdb.com/title/tt0756683/?ref_=fn_t...
num_user_for_reviews                                                       638
language                                                               English
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                  200000
title_year                                                                2007
actor_2_facebook_likes                                                     323
imdb_score                                                                   8
aspect_ratio                                                              1.78
movie_facebook_likes                                                     46000
Name: 4914, dtype: object
color                                                                    Color
director_name                                                      Ricki Stern
num_critic_for_reviews                                                      11
duration                                                                   106
director_facebook_likes                                                     15
actor_3_facebook_likes                                                       0
actor_2_name                                                  Evelyn Jefferson
actor_1_facebook_likes                                                       2
gross                                                                     1111
genres                                                       Crime|Documentary
actor_1_name                                                       Darryl Hunt
movie_title                                         The Trials of Darryl Hunt 
num_voted_users                                                            771
cast_total_facebook_likes                                                    2
actor_3_name                                                       John Reeves
facenumber_in_poster                                                         0
plot_keywords                false accusation|murder|north carolina|trial|w...
movie_imdb_link              http://www.imdb.com/title/tt0446055/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                  200000
title_year                                                                2006
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.7
aspect_ratio                                                              1.66
movie_facebook_likes                                                       246
Name: 4915, dtype: object
color                                                                    Color
director_name                                                       Nadia Tass
num_critic_for_reviews                                                       6
duration                                                                    86
director_facebook_likes                                                     20
actor_3_facebook_likes                                                      32
actor_2_name                                                    Jordan Bridges
actor_1_facebook_likes                                                     563
gross                                                                      NaN
genres                                                            Drama|Family
actor_1_name                                                        Mia Farrow
movie_title                                          An American Girl Holiday 
num_voted_users                                                           1338
cast_total_facebook_likes                                                  828
actor_3_name                                                       Bruce Gooch
facenumber_in_poster                                                         1
plot_keywords                             courtship|friend|girl|servant|sister
movie_imdb_link              http://www.imdb.com/title/tt0412366/?ref_=fn_t...
num_user_for_reviews                                                        32
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  200000
title_year                                                                2004
actor_2_facebook_likes                                                     194
imdb_score                                                                 7.2
aspect_ratio                                                              1.33
movie_facebook_likes                                                        90
Name: 4916, dtype: object
color                                                          Black and White
director_name                                                     James Kerwin
num_critic_for_reviews                                                      25
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      31
actor_2_name                                                   Chase Masterson
actor_1_facebook_likes                                                     236
gross                                                                      NaN
genres                                      Drama|Music|Mystery|Romance|Sci-Fi
actor_1_name                                                       John Newton
movie_title                                               Yesterday Was a Lie 
num_voted_users                                                            374
cast_total_facebook_likes                                                  518
actor_3_name                                                       H.M. Wynant
facenumber_in_poster                                                         3
plot_keywords                claim in title|jazz|jazz singer|sexy woman|tim...
movie_imdb_link              http://www.imdb.com/title/tt0448182/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                 2.5e+06
title_year                                                                2008
actor_2_facebook_likes                                                     189
imdb_score                                                                 5.4
aspect_ratio                                                              1.78
movie_facebook_likes                                                        83
Name: 4917, dtype: object
color                                                                    Color
director_name                                                  C. Fraser Press
num_critic_for_reviews                                                      13
duration                                                                   105
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      27
actor_2_name                                                     Robert Turano
actor_1_facebook_likes                                                     178
gross                                                                      NaN
genres                                                      Comedy|Drama|Music
actor_1_name                                                     Elaine Bromka
movie_title                                               Theresa Is a Mother 
num_voted_users                                                             37
cast_total_facebook_likes                                                  263
actor_3_name                                                    Matthew Gumley
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1989646/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  200000
title_year                                                                2012
actor_2_facebook_likes                                                      32
imdb_score                                                                 6.7
aspect_ratio                                                               NaN
movie_facebook_likes                                                        38
Name: 4918, dtype: object
color                                                                    Color
director_name                                                     Rania Attieh
num_critic_for_reviews                                                      18
duration                                                                    93
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      75
actor_2_name                                                    Robin Bartlett
actor_1_facebook_likes                                                     110
gross                                                                      NaN
genres                                                   Drama|Sci-Fi|Thriller
actor_1_name                                                      Paul Hickert
movie_title                                                                H. 
num_voted_users                                                            191
cast_total_facebook_likes                                                  338
actor_3_name                                                     Rebecca Dayan
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3666210/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2014
actor_2_facebook_likes                                                      79
imdb_score                                                                 6.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                       142
Name: 4919, dtype: object
color                                                                    Color
director_name                                                   Sharon Greytak
num_critic_for_reviews                                                       3
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     178
actor_2_name                                                      Alex Emanuel
actor_1_facebook_likes                                                     433
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                    Sally Kirkland
movie_title                                            Archaeology of a Woman 
num_voted_users                                                             15
cast_total_facebook_likes                                                 1112
actor_3_name                                                     Elaine Bromka
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1702455/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  200000
title_year                                                                2012
actor_2_facebook_likes                                                     375
imdb_score                                                                 8.1
aspect_ratio                                                              1.78
movie_facebook_likes                                                        66
Name: 4920, dtype: object
color                                                                    Color
director_name                                                     Majid Majidi
num_critic_for_reviews                                                      46
duration                                                                    89
director_facebook_likes                                                    373
actor_3_facebook_likes                                                      27
actor_2_name                                            Amir Farrokh Hashemian
actor_1_facebook_likes                                                      36
gross                                                                   925402
genres                                                            Drama|Family
actor_1_name                                                    Bahare Seddiqi
movie_title                                                Children of Heaven 
num_voted_users                                                          27882
cast_total_facebook_likes                                                  100
actor_3_name                                                Mohammad Amir Naji
facenumber_in_poster                                                         0
plot_keywords                                 class|gardening|race|school|shoe
movie_imdb_link              http://www.imdb.com/title/tt0118849/?ref_=fn_t...
num_user_for_reviews                                                       130
language                                                               Persian
country                                                                   Iran
content_rating                                                              PG
budget                                                                  180000
title_year                                                                1997
actor_2_facebook_likes                                                      35
imdb_score                                                                 8.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4921, dtype: object
color                                                                    Color
director_name                                                     Andrew Haigh
num_critic_for_reviews                                                     143
duration                                                                    97
director_facebook_likes                                                    131
actor_3_facebook_likes                                                      67
actor_2_name                                                         Chris New
actor_1_facebook_likes                                                     507
gross                                                                   469947
genres                                                           Drama|Romance
actor_1_name                                                        Tom Cullen
movie_title                                                           Weekend 
num_voted_users                                                          19846
cast_total_facebook_likes                                                  654
actor_3_name                                                 Vauxhall Jermaine
facenumber_in_poster                                                         0
plot_keywords                coming out|fellatio|male in bathtub|male nudit...
movie_imdb_link              http://www.imdb.com/title/tt1714210/?ref_=fn_t...
num_user_for_reviews                                                        68
language                                                               English
country                                                                     UK
content_rating                                                       Not Rated
budget                                                                  120000
title_year                                                                2011
actor_2_facebook_likes                                                      75
imdb_score                                                                 7.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4922, dtype: object
color                                                          Black and White
director_name                                                        Spike Lee
num_critic_for_reviews                                                      26
duration                                                                    88
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      46
actor_2_name                                                          Joie Lee
actor_1_facebook_likes                                                     539
gross                                                               7.1375e+06
genres                                                          Comedy|Romance
actor_1_name                                               S. Epatha Merkerson
movie_title                                               She's Gotta Have It 
num_voted_users                                                           4769
cast_total_facebook_likes                                                  708
actor_3_name                                               Tracy Camilla Johns
facenumber_in_poster                                                         0
plot_keywords                female nudity|male model|nudity|rite of passag...
movie_imdb_link              http://www.imdb.com/title/tt0091939/?ref_=fn_t...
num_user_for_reviews                                                        26
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  175000
title_year                                                                1986
actor_2_facebook_likes                                                      53
imdb_score                                                                 6.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       406
Name: 4923, dtype: object
color                                                                    Color
director_name                                                        Cary Bell
num_critic_for_reviews                                                     NaN
duration                                                                    78
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                      Stacie Evans
actor_1_facebook_likes                                                       0
gross                                                                      NaN
genres                                                             Documentary
actor_1_name                                                     Abigail Evans
movie_title                                                    Butterfly Girl 
num_voted_users                                                             27
cast_total_facebook_likes                                                    0
actor_3_name                                                      Emily Gorell
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2421956/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  180000
title_year                                                                2014
actor_2_facebook_likes                                                       0
imdb_score                                                                 8.7
aspect_ratio                                                               NaN
movie_facebook_likes                                                        88
Name: 4924, dtype: object
color                                                                    Color
director_name                                        Nicolae Constantin Tanase
num_critic_for_reviews                                                       5
duration                                                                   104
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                   Ana Maria Guran
actor_1_facebook_likes                                                       0
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                    Iulia Ciochina
movie_title                                                 The World Is Mine 
num_voted_users                                                            354
cast_total_facebook_likes                                                    0
actor_3_name                                                      Ana Vatamanu
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt4707756/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                              Romanian
country                                                                Romania
content_rating                                                             NaN
budget                                                                  168000
title_year                                                                2015
actor_2_facebook_likes                                                       0
imdb_score                                                                 6.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                        34
Name: 4925, dtype: object
color                                                                    Color
director_name                                                      Mike Cahill
num_critic_for_reviews                                                     242
duration                                                                    92
director_facebook_likes                                                    135
actor_3_facebook_likes                                                     259
actor_2_name                                                  William Mapother
actor_1_facebook_likes                                                     574
gross                                                              1.31607e+06
genres                                                    Drama|Romance|Sci-Fi
actor_1_name                                                 Robin Lord Taylor
movie_title                                                     Another Earth 
num_voted_users                                                          71387
cast_total_facebook_likes                                                 1303
actor_3_name                                                    Flint Beverage
facenumber_in_poster                                                         1
plot_keywords                duplicate earth|janitor|planet|solar system|sy...
movie_imdb_link              http://www.imdb.com/title/tt1549572/?ref_=fn_t...
num_user_for_reviews                                                       228
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                  100000
title_year                                                                2011
actor_2_facebook_likes                                                     399
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     21000
Name: 4926, dtype: object
color                                                                    Color
director_name                                                      Jason Stone
num_critic_for_reviews                                                      48
duration                                                                   108
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     826
actor_2_name                                                     Ellen Burstyn
actor_1_facebook_likes                                                    2000
gross                                                                      NaN
genres                                                                Thriller
actor_1_name                                                      Topher Grace
movie_title                                                       The Calling 
num_voted_users                                                           6025
cast_total_facebook_likes                                                 4385
actor_3_name                                             Christopher Heyerdahl
facenumber_in_poster                                                         2
plot_keywords                bouquet|house fire|praying|serial killer|tied ...
movie_imdb_link              http://www.imdb.com/title/tt1666335/?ref_=fn_t...
num_user_for_reviews                                                        28
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2014
actor_2_facebook_likes                                                    1000
imdb_score                                                                 5.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 4927, dtype: object
color                                                                    Color
director_name                                               Melvin Van Peebles
num_critic_for_reviews                                                      38
duration                                                                    97
director_facebook_likes                                                    101
actor_3_facebook_likes                                                     101
actor_2_name                                                 Mario Van Peebles
actor_1_facebook_likes                                                     982
gross                                                                1.518e+07
genres                                                    Crime|Drama|Thriller
actor_1_name                                                         John Amos
movie_title                                 Sweet Sweetback's Baadasssss Song 
num_voted_users                                                           3340
cast_total_facebook_likes                                                 1631
actor_3_name                                                Melvin Van Peebles
facenumber_in_poster                                                         1
plot_keywords                black panther|hells angels|on the run|racist|r...
movie_imdb_link              http://www.imdb.com/title/tt0067810/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  500000
title_year                                                                1971
actor_2_facebook_likes                                                     535
imdb_score                                                                 5.5
aspect_ratio                                                              1.37
movie_facebook_likes                                                       566
Name: 4928, dtype: object
color                                                                    Color
director_name                                                         Ken Roht
num_critic_for_reviews                                                     NaN
duration                                                                   109
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      26
actor_2_name                                                           Joe Lev
actor_1_facebook_likes                                                     270
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                    Charla Cochran
movie_title                                                    Perfect Cowboy 
num_voted_users                                                              8
cast_total_facebook_likes                                                  364
actor_3_name                                                    Sienna Beckman
facenumber_in_poster                                                         3
plot_keywords                country singer|father son relationship|music g...
movie_imdb_link              http://www.imdb.com/title/tt3581098/?ref_=fn_t...
num_user_for_reviews                                                       NaN
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  200000
title_year                                                                2014
actor_2_facebook_likes                                                      54
imdb_score                                                                   7
aspect_ratio                                                               NaN
movie_facebook_likes                                                        65
Name: 4929, dtype: object
color                                                                    Color
director_name                                                      Gary Winick
num_critic_for_reviews                                                      91
duration                                                                    78
director_facebook_likes                                                     56
actor_3_facebook_likes                                                     184
actor_2_name                                                    Aaron Stanford
actor_1_facebook_likes                                                     376
gross                                                              2.88206e+06
genres                                                    Comedy|Drama|Romance
actor_1_name                                                     Bebe Neuwirth
movie_title                                                           Tadpole 
num_voted_users                                                           5178
cast_total_facebook_likes                                                 1144
actor_3_name                                                        Ron Rifkin
facenumber_in_poster                                                         2
plot_keywords                               best friend|boy|french|friend|love
movie_imdb_link              http://www.imdb.com/title/tt0271219/?ref_=fn_t...
num_user_for_reviews                                                       101
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                  150000
title_year                                                                2000
actor_2_facebook_likes                                                     346
imdb_score                                                                 6.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       132
Name: 4930, dtype: object
color                                                                    Color
director_name                                                      John Carney
num_critic_for_reviews                                                     232
duration                                                                    85
director_facebook_likes                                                    109
actor_3_facebook_likes                                                      18
actor_2_name                                                   Markéta Irglová
actor_1_facebook_likes                                                     200
gross                                                              9.43793e+06
genres                                                     Drama|Music|Romance
actor_1_name                                                      Glen Hansard
movie_title                                                              Once 
num_voted_users                                                          90827
cast_total_facebook_likes                                                  332
actor_3_name                                                      Darren Healy
facenumber_in_poster                                                         0
plot_keywords                immigrant|independent film|song|street|vacuum ...
movie_imdb_link              http://www.imdb.com/title/tt0907657/?ref_=fn_t...
num_user_for_reviews                                                       329
language                                                               English
country                                                                Ireland
content_rating                                                               R
budget                                                                  180000
title_year                                                                2007
actor_2_facebook_likes                                                      96
imdb_score                                                                 7.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                     26000
Name: 4931, dtype: object
color                                                          Black and White
director_name                                                   Robinson Devor
num_critic_for_reviews                                                      18
duration                                                                    88
director_facebook_likes                                                     14
actor_3_facebook_likes                                                       3
actor_2_name                                                      Eugene Roche
actor_1_facebook_likes                                                     142
gross                                                                   110720
genres                                                                  Comedy
actor_1_name                                                    Marilyn Rising
movie_title                                                  The Woman Chaser 
num_voted_users                                                            524
cast_total_facebook_likes                                                  168
actor_3_name                                                      Max Kerstein
facenumber_in_poster                                                         0
plot_keywords                car salesman|filmmaking|pulp fiction|santa cla...
movie_imdb_link              http://www.imdb.com/title/tt0217894/?ref_=fn_t...
num_user_for_reviews                                                        22
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                 1.2e+06
title_year                                                                1999
actor_2_facebook_likes                                                      23
imdb_score                                                                 7.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                        73
Name: 4932, dtype: object
color                                                                    Color
director_name                                               Michel Orion Scott
num_critic_for_reviews                                                      29
duration                                                                    93
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       2
actor_2_name                                                    Rowan Isaacson
actor_1_facebook_likes                                                      58
gross                                                                   155984
genres                                                             Documentary
actor_1_name                                                    Temple Grandin
movie_title                                                     The Horse Boy 
num_voted_users                                                            586
cast_total_facebook_likes                                                   62
actor_3_name                                                 Simon Baron-Cohen
facenumber_in_poster                                                         0
plot_keywords                             horse|journey|mongolia|shaman|travel
movie_imdb_link              http://www.imdb.com/title/tt1333668/?ref_=fn_t...
num_user_for_reviews                                                         9
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                  160000
title_year                                                                2009
actor_2_facebook_likes                                                       2
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4933, dtype: object
color                                                                    Color
director_name                                                       Pat Holden
num_critic_for_reviews                                                      44
duration                                                                    86
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     115
actor_2_name                                                   Martin Compston
actor_1_facebook_likes                                                     498
gross                                                                      NaN
genres                                                                  Horror
actor_1_name                                                        Alan Brent
movie_title                                          When the Lights Went Out 
num_voted_users                                                           3813
cast_total_facebook_likes                                                  895
actor_3_name                                                     Kate Ashfield
facenumber_in_poster                                                         0
plot_keywords                father daughter relationship|poltergeist|spiri...
movie_imdb_link              http://www.imdb.com/title/tt1743993/?ref_=fn_t...
num_user_for_reviews                                                        27
language                                                               English
country                                                                     UK
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2012
actor_2_facebook_likes                                                     204
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4934, dtype: object
color                                                                    Color
director_name                                                      Eric Bugbee
num_critic_for_reviews                                                       2
duration                                                                    98
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      21
actor_2_name                                                        Bill Allen
actor_1_facebook_likes                                                      52
gross                                                                      NaN
genres                                                      Action|Drama|Sport
actor_1_name                                                        Joel Moody
movie_title                                                    Heroes of Dirt 
num_voted_users                                                             53
cast_total_facebook_likes                                                  130
actor_3_name                                                        Lia Tucker
facenumber_in_poster                                                         0
plot_keywords                               bike|bmx|drugs|troubled teen|youth
movie_imdb_link              http://www.imdb.com/title/tt1934172/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2015
actor_2_facebook_likes                                                      36
imdb_score                                                                 7.1
aspect_ratio                                                               NaN
movie_facebook_likes                                                       197
Name: 4935, dtype: object
color                                                                    Color
director_name                                                      Tobe Hooper
num_critic_for_reviews                                                     277
duration                                                                    88
director_facebook_likes                                                    365
actor_3_facebook_likes                                                     177
actor_2_name                                                        Edwin Neal
actor_1_facebook_likes                                                     383
gross                                                               3.0859e+07
genres                                                         Horror|Thriller
actor_1_name                                                     Gunnar Hansen
movie_title                                      The Texas Chain Saw Massacre 
num_voted_users                                                          96411
cast_total_facebook_likes                                                 1094
actor_3_name                                                     Marilyn Burns
facenumber_in_poster                                                         0
plot_keywords                cannibal|chainsaw|hitchhiker|independent film|...
movie_imdb_link              http://www.imdb.com/title/tt0072271/?ref_=fn_t...
num_user_for_reviews                                                       826
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   83532
title_year                                                                1974
actor_2_facebook_likes                                                     371
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4936, dtype: object
color                                                                    Color
director_name                                                    Bill Melendez
num_critic_for_reviews                                                      43
duration                                                                    25
director_facebook_likes                                                     36
actor_3_facebook_likes                                                      27
actor_2_name                                                     Bill Melendez
actor_1_facebook_likes                                                      39
gross                                                                      NaN
genres                                                 Animation|Comedy|Family
actor_1_name                                                     Peter Robbins
movie_title                                         A Charlie Brown Christmas 
num_voted_users                                                          21826
cast_total_facebook_likes                                                  139
actor_3_name                                                  Christopher Shea
facenumber_in_poster                                                         0
plot_keywords                christmas|christmas tree|commercialism|meaning...
movie_imdb_link              http://www.imdb.com/title/tt0059026/?ref_=fn_t...
num_user_for_reviews                                                       126
language                                                               English
country                                                                    USA
content_rating                                                            TV-G
budget                                                                  150000
title_year                                                                1965
actor_2_facebook_likes                                                      36
imdb_score                                                                 8.4
aspect_ratio                                                              1.33
movie_facebook_likes                                                         0
Name: 4937, dtype: object
color                                                                    Color
director_name                                                      Dena Seidel
num_critic_for_reviews                                                       5
duration                                                                    72
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                      Hugh Ducklow
actor_1_facebook_likes                                                       0
gross                                                                     4914
genres                                                   Adventure|Documentary
actor_1_name                                                      Naderev Sano
movie_title                                         Antarctic Edge: 70° South 
num_voted_users                                                            123
cast_total_facebook_likes                                                    0
actor_3_name                                                        Mike Brett
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2780714/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  150000
title_year                                                                2015
actor_2_facebook_likes                                                       0
imdb_score                                                                   7
aspect_ratio                                                               NaN
movie_facebook_likes                                                       215
Name: 4938, dtype: object
color                                                          Black and White
director_name                                                 Deborah Anderson
num_critic_for_reviews                                                      16
duration                                                                    66
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     232
actor_2_name                                                        Jesse Jane
actor_1_facebook_likes                                                     502
gross                                                                      NaN
genres                                                             Documentary
actor_1_name                                                          Lisa Ann
movie_title                                                           Aroused 
num_voted_users                                                            502
cast_total_facebook_likes                                                 1796
actor_3_name                                                      Kayden Kross
facenumber_in_poster                                                         0
plot_keywords                aroused|photography|pornography documentary|po...
movie_imdb_link              http://www.imdb.com/title/tt2403815/?ref_=fn_t...
num_user_for_reviews                                                         9
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  150000
title_year                                                                2013
actor_2_facebook_likes                                                     366
imdb_score                                                                 5.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                       207
Name: 4939, dtype: object
color                                                                    Color
director_name                                                      Sara Newens
num_critic_for_reviews                                                      18
duration                                                                    80
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                      Xinhua Jiang
actor_1_facebook_likes                                                       0
gross                                                                     5858
genres                                                             Documentary
actor_1_name                                                       Ariel Hsing
movie_title                                                          Top Spin 
num_voted_users                                                            260
cast_total_facebook_likes                                                    0
actor_3_name                                                   Michael Landers
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt4219836/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  150000
title_year                                                                2014
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.1
aspect_ratio                                                               NaN
movie_facebook_likes                                                       116
Name: 4940, dtype: object
color                                                                    Color
director_name                                                    Michael Moore
num_critic_for_reviews                                                      40
duration                                                                    91
director_facebook_likes                                                    909
actor_3_facebook_likes                                                      42
actor_2_name                                                         Pat Boone
actor_1_facebook_likes                                                     909
gross                                                              6.70637e+06
genres                                                             Documentary
actor_1_name                                                     Michael Moore
movie_title                                                        Roger & Me 
num_voted_users                                                          22800
cast_total_facebook_likes                                                 1048
actor_3_name                                                       Bob Eubanks
facenumber_in_poster                                                         0
plot_keywords                factory|flint michigan|general motors|michigan...
movie_imdb_link              http://www.imdb.com/title/tt0098213/?ref_=fn_t...
num_user_for_reviews                                                       133
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  160000
title_year                                                                1989
actor_2_facebook_likes                                                      91
imdb_score                                                                 7.5
aspect_ratio                                                              1.66
movie_facebook_likes                                                       667
Name: 4941, dtype: object
color                                                                    Color
director_name                                                    Paul Schrader
num_critic_for_reviews                                                     130
duration                                                                    93
director_facebook_likes                                                    261
actor_3_facebook_likes                                                     697
actor_2_name                                                          Ruby Dee
actor_1_facebook_likes                                                     783
gross                                                                      NaN
genres                                                 Fantasy|Horror|Thriller
actor_1_name                                                     Ed Begley Jr.
movie_title                                                        Cat People 
num_voted_users                                                          14193
cast_total_facebook_likes                                                 3700
actor_3_name                                                        John Heard
facenumber_in_poster                                                         1
plot_keywords                cat|cat people|leopard|love|slip the undergarment
movie_imdb_link              http://www.imdb.com/title/tt0083722/?ref_=fn_t...
num_user_for_reviews                                                       106
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.8e+07
title_year                                                                1982
actor_2_facebook_likes                                                     782
imdb_score                                                                 6.1
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4942, dtype: object
color                                                                    Color
director_name                                                      Sai Varadan
num_critic_for_reviews                                                       3
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     163
actor_2_name                                                    Hassan Johnson
actor_1_facebook_likes                                                     196
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                     J.D. Williams
movie_title                                          An American in Hollywood 
num_voted_users                                                            100
cast_total_facebook_likes                                                  942
actor_3_name                                                  Samantha Esteban
facenumber_in_poster                                                         0
plot_keywords                                              place name in title
movie_imdb_link              http://www.imdb.com/title/tt2125430/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  125000
title_year                                                                2014
actor_2_facebook_likes                                                     180
imdb_score                                                                 7.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                        72
Name: 4943, dtype: object
color                                                                    Color
director_name                                                   Zal Batmanglij
num_critic_for_reviews                                                     136
duration                                                                    85
director_facebook_likes                                                    129
actor_3_facebook_likes                                                     100
actor_2_name                                                    James Urbaniak
actor_1_facebook_likes                                                     120
gross                                                                   405614
genres                                           Drama|Mystery|Sci-Fi|Thriller
actor_1_name                                                Christopher Denham
movie_title                                                 Sound of My Voice 
num_voted_users                                                          15775
cast_total_facebook_likes                                                  511
actor_3_name                                                      Constance Wu
facenumber_in_poster                                                         0
plot_keywords                cult|cult leader|female nudity|greedy institut...
movie_imdb_link              http://www.imdb.com/title/tt1748207/?ref_=fn_t...
num_user_for_reviews                                                        69
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2011
actor_2_facebook_likes                                                     119
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4944, dtype: object
color                                                                    Color
director_name                                                  Amal Al-Agroobi
num_critic_for_reviews                                                     NaN
duration                                                                    62
director_facebook_likes                                                     58
actor_3_facebook_likes                                                     NaN
actor_2_name                                                               NaN
actor_1_facebook_likes                                                     NaN
gross                                                                      NaN
genres                                                      Documentary|Family
actor_1_name                                                               NaN
movie_title                                              The Brain That Sings 
num_voted_users                                                             18
cast_total_facebook_likes                                                    0
actor_3_name                                                               NaN
facenumber_in_poster                                                         1
plot_keywords                autism|middle east|music therapy|united arab e...
movie_imdb_link              http://www.imdb.com/title/tt2638024/?ref_=fn_t...
num_user_for_reviews                                                       NaN
language                                                                Arabic
country                                                   United Arab Emirates
content_rating                                                             NaN
budget                                                                  125000
title_year                                                                2013
actor_2_facebook_likes                                                     NaN
imdb_score                                                                 8.2
aspect_ratio                                                               NaN
movie_facebook_likes                                                        54
Name: 4945, dtype: object
color                                                                    Color
director_name                                                   Andrew Berends
num_critic_for_reviews                                                      12
duration                                                                    90
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     NaN
actor_2_name                                                               NaN
actor_1_facebook_likes                                                     NaN
gross                                                                      NaN
genres                                                         Documentary|War
actor_1_name                                                               NaN
movie_title                                           The Blood of My Brother 
num_voted_users                                                            102
cast_total_facebook_likes                                                    0
actor_3_name                                                               NaN
facenumber_in_poster                                                         1
plot_keywords                                 american|blood|dream|patrol|tank
movie_imdb_link              http://www.imdb.com/title/tt0488873/?ref_=fn_t...
num_user_for_reviews                                                         7
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  120000
title_year                                                                2005
actor_2_facebook_likes                                                     NaN
imdb_score                                                                 6.6
aspect_ratio                                                              1.66
movie_facebook_likes                                                        14
Name: 4946, dtype: object
color                                                                    Color
director_name                                                     Lynn Shelton
num_critic_for_reviews                                                     171
duration                                                                    90
director_facebook_likes                                                    100
actor_3_facebook_likes                                                       9
actor_2_name                                                    Mike Birbiglia
actor_1_facebook_likes                                                     830
gross                                                              1.57371e+06
genres                                                            Comedy|Drama
actor_1_name                                                      Mark Duplass
movie_title                                              Your Sister's Sister 
num_voted_users                                                          21618
cast_total_facebook_likes                                                  973
actor_3_name                                                         Mel Eslyn
facenumber_in_poster                                                         2
plot_keywords                drunken sex|mashed potatoes|pancakes|tequila|t...
movie_imdb_link              http://www.imdb.com/title/tt1742336/?ref_=fn_t...
num_user_for_reviews                                                        62
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  125000
title_year                                                                2011
actor_2_facebook_likes                                                     128
imdb_score                                                                 6.7
aspect_ratio                                                               NaN
movie_facebook_likes                                                      3000
Name: 4947, dtype: object
color                                                                    Color
director_name                                                        Valentine
num_critic_for_reviews                                                     NaN
duration                                                                   NaN
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     NaN
actor_2_name                                                         Valentine
actor_1_facebook_likes                                                      17
gross                                                                      NaN
genres                                                                 Romance
actor_1_name                                                  Diane Sorrentino
movie_title                                                  Romantic Schemer 
num_voted_users                                                            172
cast_total_facebook_likes                                                   17
actor_3_name                                                               NaN
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt4607906/?ref_=fn_t...
num_user_for_reviews                                                       NaN
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                  125000
title_year                                                                2015
actor_2_facebook_likes                                                       0
imdb_score                                                                 5.1
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 4948, dtype: object
color                                                                    Color
director_name                                                    David Hewlett
num_critic_for_reviews                                                       8
duration                                                                    88
director_facebook_likes                                                    686
actor_3_facebook_likes                                                     405
actor_2_name                                                     David Hewlett
actor_1_facebook_likes                                                     847
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                 Christopher Judge
movie_title                                                 A Dog's Breakfast 
num_voted_users                                                           3262
cast_total_facebook_likes                                                 2364
actor_3_name                                                    Paul McGillion
facenumber_in_poster                                                         2
plot_keywords                                                   dog|vegetarian
movie_imdb_link              http://www.imdb.com/title/tt0796314/?ref_=fn_t...
num_user_for_reviews                                                        46
language                                                               English
country                                                                 Canada
content_rating                                                             NaN
budget                                                                  120000
title_year                                                                2007
actor_2_facebook_likes                                                     686
imdb_score                                                                   7
aspect_ratio                                                              1.78
movie_facebook_likes                                                       377
Name: 4949, dtype: object
color                                                                    Color
director_name                                                    David Hewlett
num_critic_for_reviews                                                       8
duration                                                                    88
director_facebook_likes                                                    686
actor_3_facebook_likes                                                     405
actor_2_name                                                     David Hewlett
actor_1_facebook_likes                                                     847
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                 Christopher Judge
movie_title                                                 A Dog's Breakfast 
num_voted_users                                                           3262
cast_total_facebook_likes                                                 2364
actor_3_name                                                    Paul McGillion
facenumber_in_poster                                                         2
plot_keywords                                                   dog|vegetarian
movie_imdb_link              http://www.imdb.com/title/tt0796314/?ref_=fn_t...
num_user_for_reviews                                                        46
language                                                               English
country                                                                 Canada
content_rating                                                             NaN
budget                                                                  120000
title_year                                                                2007
actor_2_facebook_likes                                                     686
imdb_score                                                                   7
aspect_ratio                                                              1.78
movie_facebook_likes                                                       377
Name: 4950, dtype: object
color                                                          Black and White
director_name                                                 George A. Romero
num_critic_for_reviews                                                     284
duration                                                                    96
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      56
actor_2_name                                                       Duane Jones
actor_1_facebook_likes                                                     125
gross                                                                      NaN
genres                                                    Drama|Horror|Mystery
actor_1_name                                                      Judith O'Dea
movie_title                                          Night of the Living Dead 
num_voted_users                                                          87978
cast_total_facebook_likes                                                  403
actor_3_name                                                S. William Hinzman
facenumber_in_poster                                                         5
plot_keywords                cemetery|farmhouse|radiation|running out of ga...
movie_imdb_link              http://www.imdb.com/title/tt0063350/?ref_=fn_t...
num_user_for_reviews                                                       580
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                  114000
title_year                                                                1968
actor_2_facebook_likes                                                     108
imdb_score                                                                   8
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4951, dtype: object
color                                                          Black and White
director_name                                                  Jean-Luc Godard
num_critic_for_reviews                                                      36
duration                                                                    94
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       5
actor_2_name                                                       Macha Méril
actor_1_facebook_likes                                                      12
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                    Philippe Leroy
movie_title                                                  Une Femme Mariée 
num_voted_users                                                           1962
cast_total_facebook_likes                                                   27
actor_3_name                                                       Rita Maiden
facenumber_in_poster                                                         0
plot_keywords                          acting|actor|face slap|fashion|magazine
movie_imdb_link              http://www.imdb.com/title/tt0058701/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                                French
country                                                                 France
content_rating                                                             NaN
budget                                                                  120000
title_year                                                                1964
actor_2_facebook_likes                                                       7
imdb_score                                                                 7.4
aspect_ratio                                                              1.37
movie_facebook_likes                                                       187
Name: 4952, dtype: object
color                                                                    Color
director_name                                                      Nate Parker
num_critic_for_reviews                                                      21
duration                                                                   120
director_facebook_likes                                                    664
actor_3_facebook_likes                                                     400
actor_2_name                                                       Nate Parker
actor_1_facebook_likes                                                     990
gross                                                                      NaN
genres                                                         Biography|Drama
actor_1_name                                                      Jason Stuart
movie_title                                             The Birth of a Nation 
num_voted_users                                                           1197
cast_total_facebook_likes                                                 3525
actor_3_name                                                    Aunjanue Ellis
facenumber_in_poster                                                         1
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt4196450/?ref_=fn_t...
num_user_for_reviews                                                         8
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   1e+07
title_year                                                                2016
actor_2_facebook_likes                                                     664
imdb_score                                                                 5.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4953, dtype: object
color                                                                    Color
director_name                                               Nathan Smith Jones
num_critic_for_reviews                                                       1
duration                                                                    77
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      69
actor_2_name                                                     Frank Gerrish
actor_1_facebook_likes                                                     206
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                      Richard Moll
movie_title                                            The Work and the Story 
num_voted_users                                                             98
cast_total_facebook_likes                                                  516
actor_3_name                                          Christopher Robin Miller
facenumber_in_poster                                                         0
plot_keywords                latter day saints|lds film|mock documentary|mo...
movie_imdb_link              http://www.imdb.com/title/tt0339921/?ref_=fn_t...
num_user_for_reviews                                                         5
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  103000
title_year                                                                2003
actor_2_facebook_likes                                                      81
imdb_score                                                                 5.7
aspect_ratio                                                               NaN
movie_facebook_likes                                                         0
Name: 4954, dtype: object
color                                                                    Color
director_name                                                    Alex Kendrick
num_critic_for_reviews                                                      31
duration                                                                   111
director_facebook_likes                                                    589
actor_3_facebook_likes                                                      51
actor_2_name                                                       Erin Bethea
actor_1_facebook_likes                                                     589
gross                                                              1.01747e+07
genres                                                             Drama|Sport
actor_1_name                                                     Alex Kendrick
movie_title                                                 Facing the Giants 
num_voted_users                                                          12399
cast_total_facebook_likes                                                  916
actor_3_name                                                    Shannen Fields
facenumber_in_poster                                                         0
plot_keywords                     christian|coach|faith|football|football team
movie_imdb_link              http://www.imdb.com/title/tt0805526/?ref_=fn_t...
num_user_for_reviews                                                       382
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                  100000
title_year                                                                2006
actor_2_facebook_likes                                                     150
imdb_score                                                                 6.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4955, dtype: object
color                                                                    Color
director_name                                                     Travis Cluff
num_critic_for_reviews                                                     159
duration                                                                    81
director_facebook_likes                                                      3
actor_3_facebook_likes                                                       7
actor_2_name                                                   Cassidy Gifford
actor_1_facebook_likes                                                     220
gross                                                              2.27578e+07
genres                                                         Horror|Thriller
actor_1_name                                                     Pfeifer Brown
movie_title                                                       The Gallows 
num_voted_users                                                          13521
cast_total_facebook_likes                                                  276
actor_3_name                                                     Reese Mishler
facenumber_in_poster                                                         0
plot_keywords                breaking and entering|gallows|hanging|high sch...
movie_imdb_link              http://www.imdb.com/title/tt2309260/?ref_=fn_t...
num_user_for_reviews                                                       150
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  100000
title_year                                                                2015
actor_2_facebook_likes                                                      40
imdb_score                                                                 4.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4956, dtype: object
color                                                          Black and White
director_name                                                      David Lynch
num_critic_for_reviews                                                     152
duration                                                                    89
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     121
actor_2_name                                                        Jack Nance
actor_1_facebook_likes                                                     195
gross                                                                      NaN
genres                                                   Fantasy|Horror|Sci-Fi
actor_1_name                                                    Hal Landon Jr.
movie_title                                                        Eraserhead 
num_voted_users                                                          69831
cast_total_facebook_likes                                                  837
actor_3_name                                                 Charlotte Stewart
facenumber_in_poster                                                         1
plot_keywords                  apartment|baby|deformed baby|factory|surrealism
movie_imdb_link              http://www.imdb.com/title/tt0074486/?ref_=fn_t...
num_user_for_reviews                                                       535
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                   20000
title_year                                                                1977
actor_2_facebook_likes                                                     158
imdb_score                                                                 7.4
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 4957, dtype: object
color                                                          Black and White
director_name                                                Harry F. Millarde
num_critic_for_reviews                                                       1
duration                                                                   110
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                    Johnnie Walker
actor_1_facebook_likes                                                       2
gross                                                                    3e+06
genres                                                             Crime|Drama
actor_1_name                                                      Stephen Carr
movie_title                                    Over the Hill to the Poorhouse 
num_voted_users                                                              5
cast_total_facebook_likes                                                    4
actor_3_name                                                         Mary Carr
facenumber_in_poster                                                         1
plot_keywords                  family relationships|gang|idler|poorhouse|thief
movie_imdb_link              http://www.imdb.com/title/tt0011549/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                                   NaN
country                                                                    USA
content_rating                                                             NaN
budget                                                                  100000
title_year                                                                1920
actor_2_facebook_likes                                                       2
imdb_score                                                                 4.8
aspect_ratio                                                              1.33
movie_facebook_likes                                                         0
Name: 4958, dtype: object
color                                                                    Color
director_name                                                  Robert Townsend
num_critic_for_reviews                                                      21
duration                                                                    81
director_facebook_likes                                                    467
actor_3_facebook_likes                                                     287
actor_2_name                                               Keenen Ivory Wayans
actor_1_facebook_likes                                                     467
gross                                                              5.22862e+06
genres                                                                  Comedy
actor_1_name                                                   Robert Townsend
movie_title                                                 Hollywood Shuffle 
num_voted_users                                                           2770
cast_total_facebook_likes                                                 1431
actor_3_name                                                      Helen Martin
facenumber_in_poster                                                         1
plot_keywords                actor|african american|dream|two word title|wr...
movie_imdb_link              http://www.imdb.com/title/tt0093200/?ref_=fn_t...
num_user_for_reviews                                                        32
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  100000
title_year                                                                1987
actor_2_facebook_likes                                                     322
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                       471
Name: 4959, dtype: object
color                                                                    Color
director_name                                                    Peter Chelsom
num_critic_for_reviews                                                      57
duration                                                                   100
director_facebook_likes                                                     23
actor_3_facebook_likes                                                     545
actor_2_name                                                      Elden Henson
actor_1_facebook_likes                                                    1000
gross                                                              2.64369e+06
genres                                                            Comedy|Drama
actor_1_name                                                     Kieran Culkin
movie_title                                                        The Mighty 
num_voted_users                                                          10499
cast_total_facebook_likes                                                 2283
actor_3_name                                                     Gena Rowlands
facenumber_in_poster                                                         4
plot_keywords                 book|friendship|knight|learning disability|tutor
movie_imdb_link              http://www.imdb.com/title/tt0119670/?ref_=fn_t...
num_user_for_reviews                                                       113
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                1998
actor_2_facebook_likes                                                     577
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4960, dtype: object
color                                                                    Color
director_name                                                     Jamaa Fanaka
num_critic_for_reviews                                                      23
duration                                                                    99
director_facebook_likes                                                      9
actor_3_facebook_likes                                                      10
actor_2_name                                                    Chuck Mitchell
actor_1_facebook_likes                                                     116
gross                                                                      NaN
genres                                                       Crime|Drama|Sport
actor_1_name                                                Leon Isaac Kennedy
movie_title                                                      Penitentiary 
num_voted_users                                                            509
cast_total_facebook_likes                                                  170
actor_3_name                                              Wilbur 'Hi-Fi' White
facenumber_in_poster                                                         2
plot_keywords                blaxploitation|boxing|convict|drifter|false ac...
movie_imdb_link              http://www.imdb.com/title/tt0079709/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  100000
title_year                                                                1979
actor_2_facebook_likes                                                      24
imdb_score                                                                 5.8
aspect_ratio                                                              1.85
movie_facebook_likes                                                       157
Name: 4961, dtype: object
color                                                          Black and White
director_name                                                    Larry Blamire
num_critic_for_reviews                                                      88
duration                                                                    90
director_facebook_likes                                                     56
actor_3_facebook_likes                                                      56
actor_2_name                                                        Brian Howe
actor_1_facebook_likes                                                     126
gross                                                                   110536
genres                                                    Comedy|Horror|Sci-Fi
actor_1_name                                                     Fay Masterson
movie_title                                      The Lost Skeleton of Cadavra 
num_voted_users                                                           4117
cast_total_facebook_likes                                                  284
actor_3_name                                                     Larry Blamire
facenumber_in_poster                                                         1
plot_keywords                alien|cave|husband wife relationship|monster|s...
movie_imdb_link              http://www.imdb.com/title/tt0307109/?ref_=fn_t...
num_user_for_reviews                                                       118
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   40000
title_year                                                                2001
actor_2_facebook_likes                                                      76
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4962, dtype: object
color                                                                    Color
director_name                                                 Stephen Langford
num_critic_for_reviews                                                       2
duration                                                                    82
director_facebook_likes                                                      7
actor_3_facebook_likes                                                      50
actor_2_name                                                 Gabriela Castillo
actor_1_facebook_likes                                                     143
gross                                                                      NaN
genres                                                                  Family
actor_1_name                                                   Kevin P. Farley
movie_title                                            Dude, Where's My Dog?! 
num_voted_users                                                             73
cast_total_facebook_likes                                                  417
actor_3_name                                                 Brandon Middleton
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3109200/?ref_=fn_t...
num_user_for_reviews                                                         4
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   20000
title_year                                                                2014
actor_2_facebook_likes                                                     134
imdb_score                                                                 3.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                       178
Name: 4963, dtype: object
color                                                                    Color
director_name                                                        E.L. Katz
num_critic_for_reviews                                                     193
duration                                                                    88
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     307
actor_2_name                                                       Ethan Embry
actor_1_facebook_likes                                                    3000
gross                                                                    59379
genres                                      Comedy|Crime|Drama|Horror|Thriller
actor_1_name                                                 Brighton Sharbino
movie_title                                                     Cheap Thrills 
num_voted_users                                                          12796
cast_total_facebook_likes                                                 4729
actor_3_name                                                    Elissa Dowling
facenumber_in_poster                                                         3
plot_keywords                cocaine|extramarital affair|sex|shooting|violence
movie_imdb_link              http://www.imdb.com/title/tt2389182/?ref_=fn_t...
num_user_for_reviews                                                        52
language                                                               English
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                  200000
title_year                                                                2013
actor_2_facebook_likes                                                     982
imdb_score                                                                 6.8
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4964, dtype: object
color                                                                    Color
director_name                                                    Lisanne Pajot
num_critic_for_reviews                                                      50
duration                                                                   103
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                   Edmund McMillen
actor_1_facebook_likes                                                       0
gross                                                                      NaN
genres                                                             Documentary
actor_1_name                                                     Jonathan Blow
movie_title                                             Indie Game: The Movie 
num_voted_users                                                          16701
cast_total_facebook_likes                                                    0
actor_3_name                                                         Phil Fish
facenumber_in_poster                                                         0
plot_keywords                                                   movie in title
movie_imdb_link              http://www.imdb.com/title/tt1942884/?ref_=fn_t...
num_user_for_reviews                                                        23
language                                                               English
country                                                                 Canada
content_rating                                                       Not Rated
budget                                                                  100000
title_year                                                                2012
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.7
aspect_ratio                                                                16
movie_facebook_likes                                                         0
Name: 4965, dtype: object
color                                                                    Color
director_name                                                         Dan Reed
num_critic_for_reviews                                                      61
duration                                                                    80
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     140
actor_2_name                                                       Adam Rayner
actor_1_facebook_likes                                                     798
gross                                                                      NaN
genres                                                                Thriller
actor_1_name                                                        Danny Dyer
movie_title                                                           Closure 
num_voted_users                                                           5747
cast_total_facebook_likes                                                 1401
actor_3_name                                                       Ralph Brown
facenumber_in_poster                                                         1
plot_keywords                                countryside|night|party|rape|scar
movie_imdb_link              http://www.imdb.com/title/tt0480011/?ref_=fn_t...
num_user_for_reviews                                                        44
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                 1.8e+06
title_year                                                                2007
actor_2_facebook_likes                                                     279
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       246
Name: 4966, dtype: object
color                                                          Black and White
director_name                                                   John Reinhardt
num_critic_for_reviews                                                       1
duration                                                                    68
director_facebook_likes                                                      2
actor_3_facebook_likes                                                      75
actor_2_name                                                      John Ireland
actor_1_facebook_likes                                                     142
gross                                                                      NaN
genres                                                             Crime|Drama
actor_1_name                                                   Sheldon Leonard
movie_title                                                       Open Secret 
num_voted_users                                                             67
cast_total_facebook_likes                                                  354
actor_3_name                                                  Arthur O'Connell
facenumber_in_poster                                                         3
plot_keywords                                           anti semitism|gangster
movie_imdb_link              http://www.imdb.com/title/tt0040671/?ref_=fn_t...
num_user_for_reviews                                                         9
language                                                               English
country                                                                    USA
content_rating                                                        Approved
budget                                                                     NaN
title_year                                                                1948
actor_2_facebook_likes                                                      86
imdb_score                                                                 7.1
aspect_ratio                                                              1.37
movie_facebook_likes                                                        10
Name: 4967, dtype: object
color                                                                    Color
director_name                                                Patrick Ryan Sims
num_critic_for_reviews                                                       5
duration                                                                    81
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      10
actor_2_name                                                          Hugh Mun
actor_1_facebook_likes                                                     416
gross                                                                      NaN
genres                                            Action|Drama|Sci-Fi|Thriller
actor_1_name                                              Claire Gordon-Harper
movie_title                                                          Echo Dr. 
num_voted_users                                                            101
cast_total_facebook_likes                                                  459
actor_3_name                                                  Johnathan Hurley
facenumber_in_poster                                                         2
plot_keywords                android|artificial intelligence|home invasion|...
movie_imdb_link              http://www.imdb.com/title/tt2343473/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  100000
title_year                                                                2013
actor_2_facebook_likes                                                      18
imdb_score                                                                 3.6
aspect_ratio                                                              1.78
movie_facebook_likes                                                        17
Name: 4968, dtype: object
color                                                                    Color
director_name                                                    Laslo Benedek
num_critic_for_reviews                                                      14
duration                                                                   106
director_facebook_likes                                                      6
actor_3_facebook_likes                                                      13
actor_2_name                                                     Trevor Howard
actor_1_facebook_likes                                                     440
gross                                                                      NaN
genres                                                   Crime|Horror|Thriller
actor_1_name                                                       Liv Ullmann
movie_title                                                 The Night Visitor 
num_voted_users                                                            544
cast_total_facebook_likes                                                  564
actor_3_name                                                       Andrew Keir
facenumber_in_poster                                                         1
plot_keywords                escape|independent film|mental illness|prison|...
movie_imdb_link              http://www.imdb.com/title/tt0066141/?ref_=fn_t...
num_user_for_reviews                                                        19
language                                                               English
country                                                                    USA
content_rating                                                              GP
budget                                                                     NaN
title_year                                                                1971
actor_2_facebook_likes                                                      98
imdb_score                                                                 6.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                        65
Name: 4969, dtype: object
color                                                                    Color
director_name                                                     Jason Miller
num_critic_for_reviews                                                       5
duration                                                                    77
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                  Dottie Alexander
actor_1_facebook_likes                                                      45
gross                                                                      NaN
genres                                             Biography|Documentary|Music
actor_1_name                                                         Jon Brion
movie_title                                    The Past is a Grotesque Animal 
num_voted_users                                                             80
cast_total_facebook_likes                                                   45
actor_3_name                                                      David Barnes
facenumber_in_poster                                                         0
plot_keywords                     artist|band|male rear nudity|sexuality|stage
movie_imdb_link              http://www.imdb.com/title/tt3072636/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                  100000
title_year                                                                2014
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.6
aspect_ratio                                                              1.78
movie_facebook_likes                                                        82
Name: 4970, dtype: object
color                                                                    Color
director_name                                                   Dennis Iliadis
num_critic_for_reviews                                                     241
duration                                                                   114
director_facebook_likes                                                     29
actor_3_facebook_likes                                                     616
actor_2_name                                                     Monica Potter
actor_1_facebook_likes                                                     956
gross                                                              3.27216e+07
genres                                                   Crime|Horror|Thriller
actor_1_name                                                      Tony Goldwyn
movie_title                                        The Last House on the Left 
num_voted_users                                                          67824
cast_total_facebook_likes                                                 3861
actor_3_name                                                   Martha MacIsaac
facenumber_in_poster                                                         0
plot_keywords                  kidnapping|lake|microwave oven|psychopath|woods
movie_imdb_link              http://www.imdb.com/title/tt0844708/?ref_=fn_t...
num_user_for_reviews                                                       279
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 1.5e+07
title_year                                                                2009
actor_2_facebook_likes                                                     878
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4971, dtype: object
color                                                                    Color
director_name                                                       Sut Jhally
num_critic_for_reviews                                                      16
duration                                                                    80
director_facebook_likes                                                      3
actor_3_facebook_likes                                                       0
actor_2_name                                                     Seth Ackerman
actor_1_facebook_likes                                                     103
gross                                                                      NaN
genres                                                             Documentary
actor_1_name                                                      Noam Chomsky
movie_title                             Peace, Propaganda & the Promised Land 
num_voted_users                                                            496
cast_total_facebook_likes                                                  103
actor_3_name                                                    Arik Ascherman
facenumber_in_poster                                                         3
plot_keywords                arab israeli conflict|israel|media|middle east...
movie_imdb_link              http://www.imdb.com/title/tt0428959/?ref_=fn_t...
num_user_for_reviews                                                        13
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   70000
title_year                                                                2004
actor_2_facebook_likes                                                       0
imdb_score                                                                 8.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                       110
Name: 4972, dtype: object
color                                                          Black and White
director_name                                                 Darren Aronofsky
num_critic_for_reviews                                                     138
duration                                                                    84
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     194
actor_2_name                                                     Clint Mansell
actor_1_facebook_likes                                                    1000
gross                                                              3.21697e+06
genres                                                  Drama|Mystery|Thriller
actor_1_name                                                     Mark Margolis
movie_title                                                                Pi 
num_voted_users                                                         142619
cast_total_facebook_likes                                                 2065
actor_3_name                                                 Stanley B. Herman
facenumber_in_poster                                                         0
plot_keywords                mathematician|nature|numbers|pattern|using a m...
movie_imdb_link              http://www.imdb.com/title/tt0138704/?ref_=fn_t...
num_user_for_reviews                                                       586
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   60000
title_year                                                                1998
actor_2_facebook_likes                                                     512
imdb_score                                                                 7.5
aspect_ratio                                                              1.66
movie_facebook_likes                                                     24000
Name: 4973, dtype: object
color                                                                    Color
director_name                                                      Julie Davis
num_critic_for_reviews                                                       5
duration                                                                    86
director_facebook_likes                                                     12
actor_3_facebook_likes                                                     117
actor_2_name                                               Meredith Scott Lynn
actor_1_facebook_likes                                                     238
gross                                                                    33598
genres                                                          Comedy|Romance
actor_1_name                                                        Jack McGee
movie_title                                       I Love You, Don't Touch Me! 
num_voted_users                                                            405
cast_total_facebook_likes                                                  623
actor_3_name                                                        Tim DeZarn
facenumber_in_poster                                                         1
plot_keywords                female frontal nudity|female rear nudity|title...
movie_imdb_link              http://www.imdb.com/title/tt0130019/?ref_=fn_t...
num_user_for_reviews                                                        15
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1997
actor_2_facebook_likes                                                     166
imdb_score                                                                 5.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                        97
Name: 4974, dtype: object
color                                                                    Color
director_name                                                  Myles Berkowitz
num_critic_for_reviews                                                      32
duration                                                                    87
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     153
actor_2_name                                                      Tom Ardavany
actor_1_facebook_likes                                                    1000
gross                                                                   536767
genres                                                Biography|Comedy|Romance
actor_1_name                                                       Tia Carrere
movie_title                                                          20 Dates 
num_voted_users                                                           1622
cast_total_facebook_likes                                                 1362
actor_3_name                                                      Robert McKee
facenumber_in_poster                                                         0
plot_keywords                fake documentary|hidden camera|mockumentary|na...
movie_imdb_link              http://www.imdb.com/title/tt0138987/?ref_=fn_t...
num_user_for_reviews                                                        83
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   60000
title_year                                                                1998
actor_2_facebook_likes                                                     184
imdb_score                                                                 5.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                        30
Name: 4975, dtype: object
color                                                                    Color
director_name                                                      Brett Piper
num_critic_for_reviews                                                      18
duration                                                                    80
director_facebook_likes                                                      7
actor_3_facebook_likes                                                       3
actor_2_name                                                   Steve Diasparra
actor_1_facebook_likes                                                     118
gross                                                                      NaN
genres                                                  Action|Sci-Fi|Thriller
actor_1_name                                            Michelle Simone Miller
movie_title                                                        Queen Crab 
num_voted_users                                                             48
cast_total_facebook_likes                                                  138
actor_3_name                                                      A.J. DeLucia
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2319456/?ref_=fn_t...
num_user_for_reviews                                                        18
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   75000
title_year                                                                2015
actor_2_facebook_likes                                                      15
imdb_score                                                                 4.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                        34
Name: 4976, dtype: object
color                                                                    Color
director_name                                                  Morgan Spurlock
num_critic_for_reviews                                                     193
duration                                                                   100
director_facebook_likes                                                    293
actor_3_facebook_likes                                                       0
actor_2_name                                                    Amanda Kearsan
actor_1_facebook_likes                                                       0
gross                                                              1.15294e+07
genres                                                Comedy|Documentary|Drama
actor_1_name                                                   Chemeeka Walker
movie_title                                                     Super Size Me 
num_voted_users                                                          85028
cast_total_facebook_likes                                                    0
actor_3_name                                                  Amelia Giancarlo
facenumber_in_poster                                                         2
plot_keywords                experiment|fast food|food industry|meal|overea...
movie_imdb_link              http://www.imdb.com/title/tt0390521/?ref_=fn_t...
num_user_for_reviews                                                       404
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                   65000
title_year                                                                2004
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.3
aspect_ratio                                                              1.78
movie_facebook_likes                                                         0
Name: 4977, dtype: object
color                                                                    Color
director_name                                                    Brandon Trost
num_critic_for_reviews                                                      66
duration                                                                    82
director_facebook_likes                                                     32
actor_3_facebook_likes                                                     128
actor_2_name                                                       Sean Whalen
actor_1_facebook_likes                                                     968
gross                                                                    40557
genres                                                                  Comedy
actor_1_name                                               Clifton Collins Jr.
movie_title                                                            The FP 
num_voted_users                                                           1389
cast_total_facebook_likes                                                 2046
actor_3_name                                                     James DeBello
facenumber_in_poster                                                         0
plot_keywords                abbreviation in title|based on short film|comp...
movie_imdb_link              http://www.imdb.com/title/tt1296373/?ref_=fn_t...
num_user_for_reviews                                                        22
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   60000
title_year                                                                2011
actor_2_facebook_likes                                                     407
imdb_score                                                                 5.6
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4978, dtype: object
color                                                                    Color
director_name                                                     Joe Swanberg
num_critic_for_reviews                                                      65
duration                                                                    82
director_facebook_likes                                                    217
actor_3_facebook_likes                                                     442
actor_2_name                                                       Lena Dunham
actor_1_facebook_likes                                                   10000
gross                                                                    30084
genres                                                            Comedy|Drama
actor_1_name                                                     Anna Kendrick
movie_title                                                   Happy Christmas 
num_voted_users                                                           5507
cast_total_facebook_likes                                                11642
actor_3_name                                                       Mark Webber
facenumber_in_poster                                                         3
plot_keywords                 chicago illinois|drink|drinking|filmmaker|writer
movie_imdb_link              http://www.imdb.com/title/tt2955096/?ref_=fn_t...
num_user_for_reviews                                                        23
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   70000
title_year                                                                2014
actor_2_facebook_likes                                                     969
imdb_score                                                                 5.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       812
Name: 4979, dtype: object
color                                                          Black and White
director_name                                                     Joseph Green
num_critic_for_reviews                                                      95
duration                                                                    70
director_facebook_likes                                                      2
actor_3_facebook_likes                                                       6
actor_2_name                                                       Jason Evers
actor_1_facebook_likes                                                      24
gross                                                                      NaN
genres                                                           Horror|Sci-Fi
actor_1_name                                                    Virginia Leith
movie_title                                       The Brain That Wouldn't Die 
num_voted_users                                                           4752
cast_total_facebook_likes                                                   52
actor_3_name                                                        Bruce Kerr
facenumber_in_poster                                                         1
plot_keywords                          brain|fiance|laboratory|surgeon|surgery
movie_imdb_link              http://www.imdb.com/title/tt0052646/?ref_=fn_t...
num_user_for_reviews                                                       152
language                                                               English
country                                                                    USA
content_rating                                                        Approved
budget                                                                   62000
title_year                                                                1962
actor_2_facebook_likes                                                      16
imdb_score                                                                 4.1
aspect_ratio                                                              1.66
movie_facebook_likes                                                      1000
Name: 4980, dtype: object
color                                                                    Color
director_name                                                      Wade Gasque
num_critic_for_reviews                                                      13
duration                                                                    75
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      46
actor_2_name                                                    Vincent Duvall
actor_1_facebook_likes                                                     267
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                         Ty Parker
movie_title                                                      Tiger Orange 
num_voted_users                                                            683
cast_total_facebook_likes                                                  488
actor_3_name                                                     Loanne Bishop
facenumber_in_poster                                                         2
plot_keywords                coming out|father son relationship|gay|gay bro...
movie_imdb_link              http://www.imdb.com/title/tt2866824/?ref_=fn_t...
num_user_for_reviews                                                         8
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                  100000
title_year                                                                2014
actor_2_facebook_likes                                                      87
imdb_score                                                                 6.8
aspect_ratio                                                              1.78
movie_facebook_likes                                                       182
Name: 4981, dtype: object
color                                                                    Color
director_name                                                 Daniel Schechter
num_critic_for_reviews                                                      15
duration                                                                    87
director_facebook_likes                                                      8
actor_3_facebook_likes                                                     272
actor_2_name                                                    Kevin Corrigan
actor_1_facebook_likes                                                     969
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                       Lena Dunham
movie_title                                             Supporting Characters 
num_voted_users                                                            760
cast_total_facebook_likes                                                 2398
actor_3_name                                                    Alex Karpovsky
facenumber_in_poster                                                         0
plot_keywords                film editor|kiss|marriage proposal|movie scree...
movie_imdb_link              http://www.imdb.com/title/tt1874789/?ref_=fn_t...
num_user_for_reviews                                                         4
language                                                               English
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                     NaN
title_year                                                                2012
actor_2_facebook_likes                                                     778
imdb_score                                                                 6.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                       209
Name: 4982, dtype: object
color                                                                    Color
director_name                                                    Mike Flanagan
num_critic_for_reviews                                                     125
duration                                                                    87
director_facebook_likes                                                     59
actor_3_facebook_likes                                                       9
actor_2_name                                                     Courtney Bell
actor_1_facebook_likes                                                      35
gross                                                                      NaN
genres                                                    Drama|Horror|Mystery
actor_1_name                                                     Justin Gordon
movie_title                                                          Absentia 
num_voted_users                                                          13065
cast_total_facebook_likes                                                   97
actor_3_name                                                   Erin Cipolletti
facenumber_in_poster                                                         0
plot_keywords                anticipate|dead in absentia|foetus|tunnel|unre...
movie_imdb_link              http://www.imdb.com/title/tt1610996/?ref_=fn_t...
num_user_for_reviews                                                       136
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   70000
title_year                                                                2011
actor_2_facebook_likes                                                      28
imdb_score                                                                 5.8
aspect_ratio                                                              1.78
movie_facebook_likes                                                      3000
Name: 4983, dtype: object
color                                                                    Color
director_name                                                     Edward Burns
num_critic_for_reviews                                                      36
duration                                                                    98
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      73
actor_2_name                                                   Michael McGlone
actor_1_facebook_likes                                                     138
gross                                                              1.02466e+07
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Shari Albert
movie_title                                             The Brothers McMullen 
num_voted_users                                                           6375
cast_total_facebook_likes                                                  388
actor_3_name                                                      Maxine Bahns
facenumber_in_poster                                                         0
plot_keywords                abusive father|critically acclaimed|loss of fa...
movie_imdb_link              http://www.imdb.com/title/tt0112585/?ref_=fn_t...
num_user_for_reviews                                                        36
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   25000
title_year                                                                1995
actor_2_facebook_likes                                                     111
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       265
Name: 4984, dtype: object
color                                                                    Color
director_name                                                     Matt Johnson
num_critic_for_reviews                                                      73
duration                                                                    83
director_facebook_likes                                                      8
actor_3_facebook_likes                                                       8
actor_2_name                                                  Shailene Garnett
actor_1_facebook_likes                                                     111
gross                                                                      NaN
genres                                                    Crime|Drama|Thriller
actor_1_name                                                Paul Daniel Ayotte
movie_title                                                       The Dirties 
num_voted_users                                                           3885
cast_total_facebook_likes                                                  147
actor_3_name                                                      Matt Johnson
facenumber_in_poster                                                         0
plot_keywords                          best friend|bully|friend|revenge|school
movie_imdb_link              http://www.imdb.com/title/tt2334896/?ref_=fn_t...
num_user_for_reviews                                                        40
language                                                               English
country                                                                 Canada
content_rating                                                       Not Rated
budget                                                                     NaN
title_year                                                                2013
actor_2_facebook_likes                                                      19
imdb_score                                                                 6.7
aspect_ratio                                                               NaN
movie_facebook_likes                                                      1000
Name: 4985, dtype: object
color                                                                    Color
director_name                                                    Bruno Barreto
num_critic_for_reviews                                                       1
duration                                                                    99
director_facebook_likes                                                      9
actor_3_facebook_likes                                                       3
actor_2_name                                                       Sonia Braga
actor_1_facebook_likes                                                     866
gross                                                                      NaN
genres                                                    Comedy|Drama|Romance
actor_1_name                                              Marcello Mastroianni
movie_title                                                          Gabriela 
num_voted_users                                                            712
cast_total_facebook_likes                                                 1179
actor_3_name                                                     Joffre Soares
facenumber_in_poster                                                         0
plot_keywords                based on novel|brazil|female underarm hair|sex...
movie_imdb_link              http://www.imdb.com/title/tt0085575/?ref_=fn_t...
num_user_for_reviews                                                         9
language                                                            Portuguese
country                                                                 Brazil
content_rating                                                               R
budget                                                                     NaN
title_year                                                                1983
actor_2_facebook_likes                                                     308
imdb_score                                                                 6.4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       114
Name: 4986, dtype: object
color                                                                    Color
director_name                                                      Lena Dunham
num_critic_for_reviews                                                     113
duration                                                                    98
director_facebook_likes                                                    969
actor_3_facebook_likes                                                     433
actor_2_name                                                     Merritt Wever
actor_1_facebook_likes                                                     969
gross                                                                   389804
genres                                                    Comedy|Drama|Romance
actor_1_name                                                       Lena Dunham
movie_title                                                    Tiny Furniture 
num_voted_users                                                          11816
cast_total_facebook_likes                                                 2530
actor_3_name                                                      Jemima Kirke
facenumber_in_poster                                                         0
plot_keywords                adult returns home|girl with glasses|hipster|s...
movie_imdb_link              http://www.imdb.com/title/tt1570989/?ref_=fn_t...
num_user_for_reviews                                                        35
language                                                               English
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                   65000
title_year                                                                2010
actor_2_facebook_likes                                                     529
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 4987, dtype: object
color                                                                    Color
director_name                                                Terron R. Parsons
num_critic_for_reviews                                                      13
duration                                                                    93
director_facebook_likes                                                      9
actor_3_facebook_likes                                                     133
actor_2_name                                                      Jeremy Sande
actor_1_facebook_likes                                                     743
gross                                                                      NaN
genres                                                      Crime|Drama|Horror
actor_1_name                                                     Richard Tyson
movie_title                                                           Hayride 
num_voted_users                                                            485
cast_total_facebook_likes                                                 1527
actor_3_name                                                   Corlandos Scott
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1861343/?ref_=fn_t...
num_user_for_reviews                                                         5
language                                                               English
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                   60000
title_year                                                                2012
actor_2_facebook_likes                                                     413
imdb_score                                                                 3.4
aspect_ratio                                                              1.78
movie_facebook_likes                                                       284
Name: 4988, dtype: object
color                                                                    Color
director_name                                                   Daniel Mellitz
num_critic_for_reviews                                                     NaN
duration                                                                   NaN
director_facebook_likes                                                      0
actor_3_facebook_likes                                                      15
actor_2_name                                                      Chelse Swain
actor_1_facebook_likes                                                    1000
gross                                                                      NaN
genres                                                            Comedy|Drama
actor_1_name                                                    Corbin Bernsen
movie_title                                                     The Naked Ape 
num_voted_users                                                            128
cast_total_facebook_likes                                                 1077
actor_3_name                                                  Amanda MacDonald
facenumber_in_poster                                                         0
plot_keywords                coming of age|male nudity|road trip|skinny dip...
movie_imdb_link              http://www.imdb.com/title/tt0381053/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2006
actor_2_facebook_likes                                                      36
imdb_score                                                                 4.7
aspect_ratio                                                               NaN
movie_facebook_likes                                                         2
Name: 4989, dtype: object
color                                                                    Color
director_name                                                        Jem Cohen
num_critic_for_reviews                                                      12
duration                                                                   111
director_facebook_likes                                                      6
actor_3_facebook_likes                                                     NaN
actor_2_name                                                               NaN
actor_1_facebook_likes                                                     NaN
gross                                                                      NaN
genres                                                             Documentary
actor_1_name                                                               NaN
movie_title                                                          Counting 
num_voted_users                                                             61
cast_total_facebook_likes                                                    0
actor_3_name                                                               NaN
facenumber_in_poster                                                         0
plot_keywords                      city|city symphony|diary|essay|surveillance
movie_imdb_link              http://www.imdb.com/title/tt4462082/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   50000
title_year                                                                2015
actor_2_facebook_likes                                                     NaN
imdb_score                                                                   6
aspect_ratio                                                              1.78
movie_facebook_likes                                                         5
Name: 4990, dtype: object
color                                                          Black and White
director_name                                                     Andrew Leman
num_critic_for_reviews                                                      60
duration                                                                    47
director_facebook_likes                                                      2
actor_3_facebook_likes                                                       5
actor_2_name                                                    David Mersault
actor_1_facebook_likes                                                      19
gross                                                                      NaN
genres                                         Fantasy|Horror|Mystery|Thriller
actor_1_name                                                          Dan Novy
movie_title                                               The Call of Cthulhu 
num_voted_users                                                           6261
cast_total_facebook_likes                                                   43
actor_3_name                                                       Barry Lynch
facenumber_in_poster                                                         0
plot_keywords                           1920s|cthulhu|dream|sailor|silent film
movie_imdb_link              http://www.imdb.com/title/tt0478988/?ref_=fn_t...
num_user_for_reviews                                                        99
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   50000
title_year                                                                2005
actor_2_facebook_likes                                                       9
imdb_score                                                                 7.3
aspect_ratio                                                              1.33
movie_facebook_likes                                                         0
Name: 4991, dtype: object
color                                                                    Color
director_name                                                     Dave Carroll
num_critic_for_reviews                                                      10
duration                                                                    92
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     NaN
actor_2_name                                                               NaN
actor_1_facebook_likes                                                       0
gross                                                                      NaN
genres                                                             Documentary
actor_1_name                                            Chris 'Wonder' Schoeck
movie_title                                                     Bending Steel 
num_voted_users                                                             53
cast_total_facebook_likes                                                    0
actor_3_name                                                               NaN
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2181837/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   50000
title_year                                                                2013
actor_2_facebook_likes                                                     NaN
imdb_score                                                                 7.9
aspect_ratio                                                                16
movie_facebook_likes                                                        33
Name: 4992, dtype: object
color                                                                    Color
director_name                                                   William Eubank
num_critic_for_reviews                                                     161
duration                                                                    97
director_facebook_likes                                                     18
actor_3_facebook_likes                                                     236
actor_2_name                                                      Olivia Cooke
actor_1_facebook_likes                                                     852
gross                                                                      NaN
genres                                                         Sci-Fi|Thriller
actor_1_name                                                         Lin Shaye
movie_title                                                        The Signal 
num_voted_users                                                          48236
cast_total_facebook_likes                                                 1922
actor_3_name                                                        Beau Knapp
facenumber_in_poster                                                         0
plot_keywords                computer hacker|girlfriend in a coma|nosebleed...
movie_imdb_link              http://www.imdb.com/title/tt2910814/?ref_=fn_t...
num_user_for_reviews                                                       180
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                   4e+06
title_year                                                                2014
actor_2_facebook_likes                                                     680
imdb_score                                                                 6.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                     10000
Name: 4993, dtype: object
color                                                                    Color
director_name                                                   Patrick Meaney
num_critic_for_reviews                                                       7
duration                                                                    81
director_facebook_likes                                                      3
actor_3_facebook_likes                                                      18
actor_2_name                                                    Greg Aronowitz
actor_1_facebook_likes                                                      26
gross                                                                      NaN
genres                                                   Biography|Documentary
actor_1_name                                                    Taliesin Jaffe
movie_title                                              The Image Revolution 
num_voted_users                                                             66
cast_total_facebook_likes                                                   70
actor_3_name                                                         Jeff Dowd
facenumber_in_poster                                                         7
plot_keywords                comic book|comic book history|comics|spawn|wal...
movie_imdb_link              http://www.imdb.com/title/tt2294916/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   50000
title_year                                                                2014
actor_2_facebook_likes                                                      20
imdb_score                                                                 7.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                        83
Name: 4994, dtype: object
color                                                                    Color
director_name                                                    Chad Hartigan
num_critic_for_reviews                                                      34
duration                                                                    83
director_facebook_likes                                                      3
actor_3_facebook_likes                                                      69
actor_2_name                                                     Paul Eenhoorn
actor_1_facebook_likes                                                     695
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                         Jan Haley
movie_title                                             This Is Martin Bonner 
num_voted_users                                                            733
cast_total_facebook_likes                                                 1438
actor_3_name                                                  Demetrius Grosse
facenumber_in_poster                                                         0
plot_keywords                estranged daughter|friendship|nevada|prisoner|...
movie_imdb_link              http://www.imdb.com/title/tt1798291/?ref_=fn_t...
num_user_for_reviews                                                         7
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   42000
title_year                                                                2013
actor_2_facebook_likes                                                     571
imdb_score                                                                 6.6
aspect_ratio                                                                16
movie_facebook_likes                                                       234
Name: 4995, dtype: object
color                                                                    Color
director_name                                                  Malcolm Goodwin
num_critic_for_reviews                                                     NaN
duration                                                                    96
director_facebook_likes                                                    117
actor_3_facebook_likes                                                     281
actor_2_name                                                         Jon Gries
actor_1_facebook_likes                                                     948
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                    Katrina Bowden
movie_title                                                      A True Story 
num_voted_users                                                            181
cast_total_facebook_likes                                                 2058
actor_3_name                                                     Kelen Coleman
facenumber_in_poster                                                         5
plot_keywords                ellipsis in title|long title|period in title|p...
movie_imdb_link              http://www.imdb.com/title/tt1524083/?ref_=fn_t...
num_user_for_reviews                                                         4
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   45000
title_year                                                                2013
actor_2_facebook_likes                                                     482
imdb_score                                                                 5.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                        72
Name: 4996, dtype: object
color                                                                    Color
director_name                                               David Gordon Green
num_critic_for_reviews                                                      75
duration                                                                    90
director_facebook_likes                                                    234
actor_3_facebook_likes                                                      15
actor_2_name                                                       Eddie Rouse
actor_1_facebook_likes                                                     552
gross                                                                   241816
genres                                                                   Drama
actor_1_name                                                    Paul Schneider
movie_title                                                 George Washington 
num_voted_users                                                           6246
cast_total_facebook_likes                                                  642
actor_3_name                                                  Damian Jewan Lee
facenumber_in_poster                                                         0
plot_keywords                cover up|north carolina|redemption|small town|...
movie_imdb_link              http://www.imdb.com/title/tt0262432/?ref_=fn_t...
num_user_for_reviews                                                        76
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                   42000
title_year                                                                2000
actor_2_facebook_likes                                                      61
imdb_score                                                                 7.5
aspect_ratio                                                              2.35
movie_facebook_likes                                                       451
Name: 4997, dtype: object
color                                                                    Color
director_name                                                     Kevin Jordan
num_critic_for_reviews                                                      21
duration                                                                    90
director_facebook_likes                                                      4
actor_3_facebook_likes                                                     113
actor_2_name                                                    Christa Miller
actor_1_facebook_likes                                                   20000
gross                                                                   277233
genres                                                          Comedy|Romance
actor_1_name                                                    Derick Martini
movie_title                                       Smiling Fish & Goat on Fire 
num_voted_users                                                           2631
cast_total_facebook_likes                                                20814
actor_3_name                                                       Ion Overman
facenumber_in_poster                                                         5
plot_keywords                accountant|actor|animal in title|mail carrier|...
movie_imdb_link              http://www.imdb.com/title/tt0162348/?ref_=fn_t...
num_user_for_reviews                                                        26
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   40000
title_year                                                                1999
actor_2_facebook_likes                                                     467
imdb_score                                                                 7.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 4998, dtype: object
color                                                                    Color
director_name                                                      Kirk Loudon
num_critic_for_reviews                                                       3
duration                                                                    95
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     279
actor_2_name                                                     Johnny Walter
actor_1_facebook_likes                                                     883
gross                                                                      NaN
genres                                                   Drama|Sci-Fi|Thriller
actor_1_name                                                      Barry Corbin
movie_title                                         Dawn of the Crescent Moon 
num_voted_users                                                             34
cast_total_facebook_likes                                                 2618
actor_3_name                                                     Shiree Nelson
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3157318/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   75000
title_year                                                                2014
actor_2_facebook_likes                                                     507
imdb_score                                                                   5
aspect_ratio                                                               NaN
movie_facebook_likes                                                        87
Name: 4999, dtype: object
color                                                                    Color
director_name                                                     Travis Legge
num_critic_for_reviews                                                       2
duration                                                                    83
director_facebook_likes                                                    138
actor_3_facebook_likes                                                      76
actor_2_name                                                    Patricia Raven
actor_1_facebook_likes                                                     307
gross                                                                      NaN
genres                                                                  Horror
actor_1_name                                                    Elissa Dowling
movie_title                                                    Raymond Did It 
num_voted_users                                                            192
cast_total_facebook_likes                                                  619
actor_3_name                                                    Lindsay Felton
facenumber_in_poster                                                         0
plot_keywords                       blood|independent film|mutilation|violence
movie_imdb_link              http://www.imdb.com/title/tt1716760/?ref_=fn_t...
num_user_for_reviews                                                         6
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                   40000
title_year                                                                2011
actor_2_facebook_likes                                                     114
imdb_score                                                                 3.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       239
Name: 5000, dtype: object
color                                                                    Color
director_name                                                  Martin Scorsese
num_critic_for_reviews                                                      71
duration                                                                   117
director_facebook_likes                                                  17000
actor_3_facebook_likes                                                     476
actor_2_name                                                        Levon Helm
actor_1_facebook_likes                                                     725
gross                                                                   321952
genres                                                       Documentary|Music
actor_1_name                                                       Ringo Starr
movie_title                                                    The Last Waltz 
num_voted_users                                                          12611
cast_total_facebook_likes                                                 2783
actor_3_name                                                         Bob Dylan
facenumber_in_poster                                                         0
plot_keywords                 band|final concert|guitar|interview|thanksgiving
movie_imdb_link              http://www.imdb.com/title/tt0077838/?ref_=fn_t...
num_user_for_reviews                                                       113
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                     NaN
title_year                                                                1978
actor_2_facebook_likes                                                     572
imdb_score                                                                 8.2
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 5001, dtype: object
color                                                                    Color
director_name                                               Collin Joseph Neal
num_critic_for_reviews                                                       7
duration                                                                    75
director_facebook_likes                                                     14
actor_3_facebook_likes                                                     130
actor_2_name                                                     Thomas Brophy
actor_1_facebook_likes                                                     252
gross                                                                      NaN
genres                                                         Horror|Thriller
actor_1_name                                                   Julianne Gabert
movie_title                                                    Run, Hide, Die 
num_voted_users                                                            106
cast_total_facebook_likes                                                  638
actor_3_name                                                     Ronee Collins
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2442662/?ref_=fn_t...
num_user_for_reviews                                                         5
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   50000
title_year                                                                2012
actor_2_facebook_likes                                                     132
imdb_score                                                                 3.7
aspect_ratio                                                              2.35
movie_facebook_likes                                                       225
Name: 5002, dtype: object
color                                                                    Color
director_name                                                Bradley Rust Gray
num_critic_for_reviews                                                      61
duration                                                                    79
director_facebook_likes                                                      2
actor_3_facebook_likes                                                      20
actor_2_name                                                      Mark Rendall
actor_1_facebook_likes                                                     962
gross                                                                    24705
genres                                                                   Drama
actor_1_name                                                         Zoe Kazan
movie_title                                                The Exploding Girl 
num_voted_users                                                           1516
cast_total_facebook_likes                                                 1054
actor_3_name                                                     Jordan Scovel
facenumber_in_poster                                                         0
plot_keywords                      friend|hospital|low budget film|ring|stoned
movie_imdb_link              http://www.imdb.com/title/tt1294161/?ref_=fn_t...
num_user_for_reviews                                                        10
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                      72
imdb_score                                                                 6.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                       377
Name: 5003, dtype: object
color                                                                    Color
director_name                                                       Mike Bruce
num_critic_for_reviews                                                       3
duration                                                                    78
director_facebook_likes                                                      6
actor_3_facebook_likes                                                      17
actor_2_name                                                 Kirpatrick Thomas
actor_1_facebook_likes                                                      32
gross                                                                   243768
genres                                                                 Western
actor_1_name                                                 Joseph Campanella
movie_title                                           The Legend of God's Gun 
num_voted_users                                                            143
cast_total_facebook_likes                                                   72
actor_3_name                                                Christian Anderson
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1073221/?ref_=fn_t...
num_user_for_reviews                                                         9
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   30000
title_year                                                                2007
actor_2_facebook_likes                                                      17
imdb_score                                                                 4.1
aspect_ratio                                                              2.35
movie_facebook_likes                                                        13
Name: 5004, dtype: object
color                                                          Black and White
director_name                                                  Andrew Bujalski
num_critic_for_reviews                                                      52
duration                                                                   109
director_facebook_likes                                                     26
actor_3_facebook_likes                                                       3
actor_2_name                                                  Kate Dollenmayer
actor_1_facebook_likes                                                      26
gross                                                                      NaN
genres                                                                  Comedy
actor_1_name                                                   Andrew Bujalski
movie_title                                               Mutual Appreciation 
num_voted_users                                                           1578
cast_total_facebook_likes                                                   38
actor_3_name                                                       Justin Rice
facenumber_in_poster                                                         0
plot_keywords                friendship|guitarist|mumblecore|musician|new york
movie_imdb_link              http://www.imdb.com/title/tt0446747/?ref_=fn_t...
num_user_for_reviews                                                        23
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2005
actor_2_facebook_likes                                                       6
imdb_score                                                                 6.9
aspect_ratio                                                              1.66
movie_facebook_likes                                                        91
Name: 5005, dtype: object
color                                                                    Color
director_name                                                      Damir Catic
num_critic_for_reviews                                                     NaN
duration                                                                    89
director_facebook_likes                                                      2
actor_3_facebook_likes                                                       0
actor_2_name                                                        Ron Gelner
actor_1_facebook_likes                                                       5
gross                                                                      NaN
genres                                                                  Horror
actor_1_name                                                  Nichole Ceballos
movie_title                                 Her Cry: La Llorona Investigation 
num_voted_users                                                             23
cast_total_facebook_likes                                                    5
actor_3_name                                                      Parker Riggs
facenumber_in_poster                                                         0
plot_keywords                                               la llorona|weeping
movie_imdb_link              http://www.imdb.com/title/tt2469216/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                   60000
title_year                                                                2013
actor_2_facebook_likes                                                       0
imdb_score                                                                 5.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                        48
Name: 5006, dtype: object
color                                                                    Color
director_name                                                     Ben Wheatley
num_critic_for_reviews                                                      53
duration                                                                    93
director_facebook_likes                                                    214
actor_3_facebook_likes                                                      59
actor_2_name                                                          Tony Way
actor_1_facebook_likes                                                     177
gross                                                                     9609
genres                                                      Comedy|Crime|Drama
actor_1_name                                                    Michael Smiley
movie_title                                                      Down Terrace 
num_voted_users                                                           2646
cast_total_facebook_likes                                                  365
actor_3_name                                                      David Schaal
facenumber_in_poster                                                         4
plot_keywords                                                     black comedy
movie_imdb_link              http://www.imdb.com/title/tt1489167/?ref_=fn_t...
num_user_for_reviews                                                        22
language                                                               English
country                                                                     UK
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                      95
imdb_score                                                                 6.5
aspect_ratio                                                               NaN
movie_facebook_likes                                                       535
Name: 5007, dtype: object
color                                                          Black and White
director_name                                                      Kevin Smith
num_critic_for_reviews                                                     136
duration                                                                   102
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     216
actor_2_name                                                  Brian O'Halloran
actor_1_facebook_likes                                                     898
gross                                                              3.15113e+06
genres                                                                  Comedy
actor_1_name                                                       Jason Mewes
movie_title                                                            Clerks 
num_voted_users                                                         181749
cast_total_facebook_likes                                                 2103
actor_3_name                                                     Jeff Anderson
facenumber_in_poster                                                         4
plot_keywords                            clerk|friend|hockey|video|video store
movie_imdb_link              http://www.imdb.com/title/tt0109445/?ref_=fn_t...
num_user_for_reviews                                                       615
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                  230000
title_year                                                                1994
actor_2_facebook_likes                                                     657
imdb_score                                                                 7.8
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 5008, dtype: object
color                                                                    Color
director_name                                                    James Bidgood
num_critic_for_reviews                                                       8
duration                                                                    65
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     NaN
actor_2_name                                                     Bobby Kendall
actor_1_facebook_likes                                                       0
gross                                                                     8231
genres                                                           Drama|Fantasy
actor_1_name                                                        Don Brooks
movie_title                                                    Pink Narcissus 
num_voted_users                                                            803
cast_total_facebook_likes                                                    0
actor_3_name                                                               NaN
facenumber_in_poster                                                         1
plot_keywords                male frontal nudity|male pubic hair|male rear ...
movie_imdb_link              http://www.imdb.com/title/tt0067580/?ref_=fn_t...
num_user_for_reviews                                                        16
language                                                               English
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                   27000
title_year                                                                1971
actor_2_facebook_likes                                                       0
imdb_score                                                                 6.7
aspect_ratio                                                              1.37
movie_facebook_likes                                                        85
Name: 5009, dtype: object
color                                                                    Color
director_name                                                  Andrew Bujalski
num_critic_for_reviews                                                      43
duration                                                                    85
director_facebook_likes                                                     26
actor_3_facebook_likes                                                       3
actor_2_name                                                  Kate Dollenmayer
actor_1_facebook_likes                                                      26
gross                                                                      NaN
genres                                                            Comedy|Drama
actor_1_name                                                   Andrew Bujalski
movie_title                                                       Funny Ha Ha 
num_voted_users                                                           1894
cast_total_facebook_likes                                                   40
actor_3_name                                                       Justin Rice
facenumber_in_poster                                                         1
plot_keywords                                                       mumblecore
movie_imdb_link              http://www.imdb.com/title/tt0327753/?ref_=fn_t...
num_user_for_reviews                                                        61
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2002
actor_2_facebook_likes                                                       6
imdb_score                                                                 6.4
aspect_ratio                                                              1.37
movie_facebook_likes                                                       108
Name: 5010, dtype: object
color                                                                    Color
director_name                                                      Neil LaBute
num_critic_for_reviews                                                      80
duration                                                                    97
director_facebook_likes                                                    119
actor_3_facebook_likes                                                       7
actor_2_name                                                       Matt Malloy
actor_1_facebook_likes                                                     136
gross                                                              2.85662e+06
genres                                                            Comedy|Drama
actor_1_name                                                     Stacy Edwards
movie_title                                             In the Company of Men 
num_voted_users                                                          11550
cast_total_facebook_likes                                                  254
actor_3_name                                                       Jason Dixie
facenumber_in_poster                                                         0
plot_keywords                   business trip|love|misogynist|office|secretary
movie_imdb_link              http://www.imdb.com/title/tt0119361/?ref_=fn_t...
num_user_for_reviews                                                       197
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                   25000
title_year                                                                1997
actor_2_facebook_likes                                                     108
imdb_score                                                                 7.3
aspect_ratio                                                              1.85
movie_facebook_likes                                                       489
Name: 5011, dtype: object
color                                                                    Color
director_name                                                       David Ayer
num_critic_for_reviews                                                     233
duration                                                                   109
director_facebook_likes                                                    453
actor_3_facebook_likes                                                     120
actor_2_name                                                    Martin Donovan
actor_1_facebook_likes                                                    1000
gross                                                                 1.05e+07
genres                                             Action|Crime|Drama|Thriller
actor_1_name                                                     Mireille Enos
movie_title                                                          Sabotage 
num_voted_users                                                          47502
cast_total_facebook_likes                                                 1458
actor_3_name                                                    Maurice Compte
facenumber_in_poster                                                         3
plot_keywords                dea|drug cartel|kicked in the crotch|strip clu...
movie_imdb_link              http://www.imdb.com/title/tt1742334/?ref_=fn_t...
num_user_for_reviews                                                       212
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                 3.5e+07
title_year                                                                2014
actor_2_facebook_likes                                                     206
imdb_score                                                                 5.7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     10000
Name: 5012, dtype: object
color                                                                    Color
director_name                                                       Eric Eason
num_critic_for_reviews                                                      28
duration                                                                    79
director_facebook_likes                                                      3
actor_3_facebook_likes                                                      42
actor_2_name                                                    Panchito Gómez
actor_1_facebook_likes                                                      93
gross                                                                      NaN
genres                                                            Drama|Family
actor_1_name                                                          Franky G
movie_title                                                            Manito 
num_voted_users                                                            493
cast_total_facebook_likes                                                  243
actor_3_name                                                   Casper Martinez
facenumber_in_poster                                                         0
plot_keywords                ex convict|graduation|manhattan new york city|...
movie_imdb_link              http://www.imdb.com/title/tt0298050/?ref_=fn_t...
num_user_for_reviews                                                        21
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   24000
title_year                                                                2002
actor_2_facebook_likes                                                      46
imdb_score                                                                   7
aspect_ratio                                                              1.78
movie_facebook_likes                                                        61
Name: 5013, dtype: object
color                                                                    Color
director_name                                                         Uwe Boll
num_critic_for_reviews                                                      58
duration                                                                    80
director_facebook_likes                                                    892
actor_3_facebook_likes                                                     492
actor_2_name                                                Katharine Isabelle
actor_1_facebook_likes                                                     986
gross                                                                      NaN
genres                                                   Action|Crime|Thriller
actor_1_name                                                       Matt Frewer
movie_title                                                           Rampage 
num_voted_users                                                          15091
cast_total_facebook_likes                                                 3197
actor_3_name                                                      Michael Paré
facenumber_in_poster                                                         0
plot_keywords                   death|first part|killing spree|massacre|murder
movie_imdb_link              http://www.imdb.com/title/tt1337057/?ref_=fn_t...
num_user_for_reviews                                                       129
language                                                               English
country                                                                 Canada
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2009
actor_2_facebook_likes                                                     918
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                         0
Name: 5014, dtype: object
color                                                          Black and White
director_name                                                Richard Linklater
num_critic_for_reviews                                                      61
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                 Richard Linklater
actor_1_facebook_likes                                                       5
gross                                                              1.22751e+06
genres                                                            Comedy|Drama
actor_1_name                                                    Tommy Pallotta
movie_title                                                           Slacker 
num_voted_users                                                          15103
cast_total_facebook_likes                                                    5
actor_3_name                                                     Jean Caffeine
facenumber_in_poster                                                         0
plot_keywords                austin texas|moon|pap smear|texas|twenty somet...
movie_imdb_link              http://www.imdb.com/title/tt0102943/?ref_=fn_t...
num_user_for_reviews                                                        80
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   23000
title_year                                                                1991
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.1
aspect_ratio                                                              1.37
movie_facebook_likes                                                      2000
Name: 5015, dtype: object
color                                                                    Color
director_name                                                  Joseph Mazzella
num_critic_for_reviews                                                     NaN
duration                                                                    90
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       9
actor_2_name                                                      Mikaal Bates
actor_1_facebook_likes                                                     313
gross                                                                      NaN
genres                                                    Crime|Drama|Thriller
actor_1_name                                                       Tjasa Ferme
movie_title                                                       Dutch Kills 
num_voted_users                                                             57
cast_total_facebook_likes                                                  366
actor_3_name                                                       Damon Owlia
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2759066/?ref_=fn_t...
num_user_for_reviews                                                         2
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   25000
title_year                                                                2015
actor_2_facebook_likes                                                      25
imdb_score                                                                 4.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                        33
Name: 5016, dtype: object
color                                                                    Color
director_name                                                     Travis Legge
num_critic_for_reviews                                                       1
duration                                                                    90
director_facebook_likes                                                    138
actor_3_facebook_likes                                                     138
actor_2_name                                                     Suzi Lorraine
actor_1_facebook_likes                                                     370
gross                                                                      NaN
genres                                                          Comedy|Romance
actor_1_name                                                    Kristen Seavey
movie_title                                                         Dry Spell 
num_voted_users                                                            114
cast_total_facebook_likes                                                  841
actor_3_name                                                      Travis Legge
facenumber_in_poster                                                         1
plot_keywords                anti romantic comedy|dating|divorce|sex comedy...
movie_imdb_link              http://www.imdb.com/title/tt2375036/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   22000
title_year                                                                2013
actor_2_facebook_likes                                                     184
imdb_score                                                                 3.3
aspect_ratio                                                              1.78
movie_facebook_likes                                                       200
Name: 5017, dtype: object
color                                                                    Color
director_name                                                    Alex Kendrick
num_critic_for_reviews                                                       5
duration                                                                   120
director_facebook_likes                                                    589
actor_3_facebook_likes                                                       4
actor_2_name                                                       Lisa Arnold
actor_1_facebook_likes                                                      51
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                    Shannen Fields
movie_title                                                          Flywheel 
num_voted_users                                                           2986
cast_total_facebook_likes                                                  108
actor_3_name                                                  Janet Lee Dapper
facenumber_in_poster                                                         1
plot_keywords                baby|car salesman|christian film|pregnancy|use...
movie_imdb_link              http://www.imdb.com/title/tt0425027/?ref_=fn_t...
num_user_for_reviews                                                        49
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   20000
title_year                                                                2003
actor_2_facebook_likes                                                      49
imdb_score                                                                 6.9
aspect_ratio                                                              1.85
movie_facebook_likes                                                       725
Name: 5018, dtype: object
color                                                                    Color
director_name                                                    Marcus Nispel
num_critic_for_reviews                                                      43
duration                                                                    91
director_facebook_likes                                                    158
actor_3_facebook_likes                                                     265
actor_2_name                                                   Brittany Curran
actor_1_facebook_likes                                                     630
gross                                                                      NaN
genres                                                 Horror|Mystery|Thriller
actor_1_name                                                   Ashley Tramonte
movie_title                                                            Exeter 
num_voted_users                                                           3836
cast_total_facebook_likes                                                 2679
actor_3_name                                                 Lindsay MacDonald
facenumber_in_poster                                                         0
plot_keywords                               asylum|demon|party|secret|teenager
movie_imdb_link              http://www.imdb.com/title/tt1945044/?ref_=fn_t...
num_user_for_reviews                                                        33
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                     NaN
title_year                                                                2015
actor_2_facebook_likes                                                     512
imdb_score                                                                 4.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                         0
Name: 5019, dtype: object
color                                                                      NaN
director_name                                                  Brandon Landers
num_critic_for_reviews                                                     NaN
duration                                                                   143
director_facebook_likes                                                      8
actor_3_facebook_likes                                                       8
actor_2_name                                                   Alana Kaniewski
actor_1_facebook_likes                                                     720
gross                                                                      NaN
genres                                                   Drama|Horror|Thriller
actor_1_name                                                     Robbie Barnes
movie_title                                                        The Ridges 
num_voted_users                                                            125
cast_total_facebook_likes                                                  770
actor_3_name                                                   Brandon Landers
facenumber_in_poster                                                         0
plot_keywords                             avatar|college|death|tron|university
movie_imdb_link              http://www.imdb.com/title/tt1781935/?ref_=fn_t...
num_user_for_reviews                                                         8
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   17350
title_year                                                                2011
actor_2_facebook_likes                                                      19
imdb_score                                                                   3
aspect_ratio                                                               NaN
movie_facebook_likes                                                        33
Name: 5020, dtype: object
color                                                                    Color
director_name                                                      Jay Duplass
num_critic_for_reviews                                                      51
duration                                                                    85
director_facebook_likes                                                    157
actor_3_facebook_likes                                                      10
actor_2_name                                                     Katie Aselton
actor_1_facebook_likes                                                     830
gross                                                                   192467
genres                                                    Comedy|Drama|Romance
actor_1_name                                                      Mark Duplass
movie_title                                                   The Puffy Chair 
num_voted_users                                                           4067
cast_total_facebook_likes                                                 1064
actor_3_name                                                        Bari Hyman
facenumber_in_poster                                                         0
plot_keywords                    birthday|gift|motel|new york city|upholsterer
movie_imdb_link              http://www.imdb.com/title/tt0436689/?ref_=fn_t...
num_user_for_reviews                                                        71
language                                                               English
country                                                                    USA
content_rating                                                               R
budget                                                                   15000
title_year                                                                2005
actor_2_facebook_likes                                                     224
imdb_score                                                                 6.6
aspect_ratio                                                               NaN
movie_facebook_likes                                                       297
Name: 5021, dtype: object
color                                                          Black and White
director_name                                                       Jim Chuchu
num_critic_for_reviews                                                       6
duration                                                                    60
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       4
actor_2_name                                                     Olwenya Maina
actor_1_facebook_likes                                                     147
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                                        Paul Ogola
movie_title                                              Stories of Our Lives 
num_voted_users                                                             70
cast_total_facebook_likes                                                  170
actor_3_name                                                    Mugambi Nthiga
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt3973612/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               Swahili
country                                                                  Kenya
content_rating                                                             NaN
budget                                                                   15000
title_year                                                                2014
actor_2_facebook_likes                                                      19
imdb_score                                                                 7.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                        45
Name: 5022, dtype: object
color                                                                    Color
director_name                                                       Daryl Wein
num_critic_for_reviews                                                      22
duration                                                                    88
director_facebook_likes                                                     38
actor_3_facebook_likes                                                     211
actor_2_name                                                     Heather Burns
actor_1_facebook_likes                                                     331
gross                                                                    76382
genres                                                                 Romance
actor_1_name                                                  Zoe Lister-Jones
movie_title                                                  Breaking Upwards 
num_voted_users                                                           1194
cast_total_facebook_likes                                                 1546
actor_3_name                                                Ebon Moss-Bachrach
facenumber_in_poster                                                         2
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1247644/?ref_=fn_t...
num_user_for_reviews                                                         8
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                   15000
title_year                                                                2009
actor_2_facebook_likes                                                     212
imdb_score                                                                 6.2
aspect_ratio                                                              2.35
movie_facebook_likes                                                       324
Name: 5023, dtype: object
color                                                                    Color
director_name                                                      Jason Trost
num_critic_for_reviews                                                      42
duration                                                                    78
director_facebook_likes                                                     91
actor_3_facebook_likes                                                      86
actor_2_name                                                       Jason Trost
actor_1_facebook_likes                                                     407
gross                                                                      NaN
genres                                                         Sci-Fi|Thriller
actor_1_name                                                       Sean Whalen
movie_title                                          All Superheroes Must Die 
num_voted_users                                                           1771
cast_total_facebook_likes                                                  674
actor_3_name                                                     Nick Principe
facenumber_in_poster                                                         0
plot_keywords                  arch villain|game of death|kidnapping|superhero
movie_imdb_link              http://www.imdb.com/title/tt1836212/?ref_=fn_t...
num_user_for_reviews                                                        35
language                                                               English
country                                                                    USA
content_rating                                                         Unrated
budget                                                                   20000
title_year                                                                2011
actor_2_facebook_likes                                                      91
imdb_score                                                                   4
aspect_ratio                                                              2.35
movie_facebook_likes                                                       835
Name: 5024, dtype: object
color                                                                    Color
director_name                                                      John Waters
num_critic_for_reviews                                                      73
duration                                                                   108
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     105
actor_2_name                                                        Mink Stole
actor_1_facebook_likes                                                     462
gross                                                                   180483
genres                                                     Comedy|Crime|Horror
actor_1_name                                                            Divine
movie_title                                                    Pink Flamingos 
num_voted_users                                                          16792
cast_total_facebook_likes                                                  760
actor_3_name                                                      Edith Massey
facenumber_in_poster                                                         2
plot_keywords                     absurd humor|egg|gross out humor|lesbian|sex
movie_imdb_link              http://www.imdb.com/title/tt0069089/?ref_=fn_t...
num_user_for_reviews                                                       183
language                                                               English
country                                                                    USA
content_rating                                                           NC-17
budget                                                                   10000
title_year                                                                1972
actor_2_facebook_likes                                                     143
imdb_score                                                                 6.1
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 5025, dtype: object
color                                                                    Color
director_name                                                  Olivier Assayas
num_critic_for_reviews                                                      81
duration                                                                   110
director_facebook_likes                                                    107
actor_3_facebook_likes                                                      45
actor_2_name                                                    Béatrice Dalle
actor_1_facebook_likes                                                     576
gross                                                                   136007
genres                                                     Drama|Music|Romance
actor_1_name                                                     Maggie Cheung
movie_title                                                             Clean 
num_voted_users                                                           3924
cast_total_facebook_likes                                                  776
actor_3_name                                                      Don McKellar
facenumber_in_poster                                                         1
plot_keywords                                   jail|junkie|money|motel|singer
movie_imdb_link              http://www.imdb.com/title/tt0388838/?ref_=fn_t...
num_user_for_reviews                                                        39
language                                                                French
country                                                                 France
content_rating                                                               R
budget                                                                    4500
title_year                                                                2004
actor_2_facebook_likes                                                     133
imdb_score                                                                 6.9
aspect_ratio                                                              2.35
movie_facebook_likes                                                       171
Name: 5026, dtype: object
color                                                                    Color
director_name                                                     Jafar Panahi
num_critic_for_reviews                                                      64
duration                                                                    90
director_facebook_likes                                                    397
actor_3_facebook_likes                                                       0
actor_2_name                                                 Nargess Mamizadeh
actor_1_facebook_likes                                                       5
gross                                                                   673780
genres                                                                   Drama
actor_1_name                                           Fereshteh Sadre Orafaiy
movie_title                                                        The Circle 
num_voted_users                                                           4555
cast_total_facebook_likes                                                    5
actor_3_name                                                  Mojgan Faramarzi
facenumber_in_poster                                                         0
plot_keywords                        abortion|bus|hospital|prison|prostitution
movie_imdb_link              http://www.imdb.com/title/tt0255094/?ref_=fn_t...
num_user_for_reviews                                                        26
language                                                               Persian
country                                                                   Iran
content_rating                                                       Not Rated
budget                                                                   10000
title_year                                                                2000
actor_2_facebook_likes                                                       0
imdb_score                                                                 7.5
aspect_ratio                                                              1.85
movie_facebook_likes                                                       697
Name: 5027, dtype: object
color                                                          Black and White
director_name                                                    Ivan Kavanagh
num_critic_for_reviews                                                      12
duration                                                                    83
director_facebook_likes                                                     18
actor_3_facebook_likes                                                       0
actor_2_name                                                     Michael Parle
actor_1_facebook_likes                                                      10
gross                                                                      NaN
genres                                                                  Horror
actor_1_name                                                 Patrick O'Donnell
movie_title                                                       Tin Can Man 
num_voted_users                                                             57
cast_total_facebook_likes                                                   15
actor_3_name                                                  Emma Eliza Regan
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt1235811/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                Ireland
content_rating                                                             NaN
budget                                                                   10000
title_year                                                                2007
actor_2_facebook_likes                                                       5
imdb_score                                                                 6.7
aspect_ratio                                                              1.33
movie_facebook_likes                                                       105
Name: 5028, dtype: object
color                                                                    Color
director_name                                                 Kiyoshi Kurosawa
num_critic_for_reviews                                                      78
duration                                                                   111
director_facebook_likes                                                     62
actor_3_facebook_likes                                                       6
actor_2_name                                                     Anna Nakagawa
actor_1_facebook_likes                                                      89
gross                                                                    94596
genres                                           Crime|Horror|Mystery|Thriller
actor_1_name                                                      Kôji Yakusho
movie_title                                                          The Cure 
num_voted_users                                                           6318
cast_total_facebook_likes                                                  115
actor_3_name                                                            Denden
facenumber_in_poster                                                         0
plot_keywords                breasts|interrogation|investigation|murder|wat...
movie_imdb_link              http://www.imdb.com/title/tt0123948/?ref_=fn_t...
num_user_for_reviews                                                        50
language                                                              Japanese
country                                                                  Japan
content_rating                                                             NaN
budget                                                                   1e+06
title_year                                                                1997
actor_2_facebook_likes                                                      13
imdb_score                                                                 7.4
aspect_ratio                                                              1.85
movie_facebook_likes                                                       817
Name: 5029, dtype: object
color                                                                    Color
director_name                                                     Tadeo Garcia
num_critic_for_reviews                                                     NaN
duration                                                                    84
director_facebook_likes                                                      5
actor_3_facebook_likes                                                      12
actor_2_name                                                    Michael Cortez
actor_1_facebook_likes                                                      21
gross                                                                      NaN
genres                                                                   Drama
actor_1_name                                               Tatiana Suarez-Pico
movie_title                                                    On the Downlow 
num_voted_users                                                            156
cast_total_facebook_likes                                                   62
actor_3_name                                                       Eric Ambriz
facenumber_in_poster                                                         2
plot_keywords                gang initiation|gunplay|hazing|latino|shakespe...
movie_imdb_link              http://www.imdb.com/title/tt0390323/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2004
actor_2_facebook_likes                                                      20
imdb_score                                                                 6.1
aspect_ratio                                                               NaN
movie_facebook_likes                                                        22
Name: 5030, dtype: object
color                                                                    Color
director_name                                               Thomas L. Phillips
num_critic_for_reviews                                                      13
duration                                                                    82
director_facebook_likes                                                    120
actor_3_facebook_likes                                                      84
actor_2_name                                                        Joe Coffey
actor_1_facebook_likes                                                     785
gross                                                                      NaN
genres                                                  Comedy|Horror|Thriller
actor_1_name                                                     Julianna Pitt
movie_title                                      Sanctuary; Quite a Conundrum 
num_voted_users                                                            133
cast_total_facebook_likes                                                 1111
actor_3_name                                                        John Lucas
facenumber_in_poster                                                       NaN
plot_keywords                    nudity|party|pirate|swimsuit|three word title
movie_imdb_link              http://www.imdb.com/title/tt2049518/?ref_=fn_t...
num_user_for_reviews                                                         8
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                  200000
title_year                                                                2012
actor_2_facebook_likes                                                      98
imdb_score                                                                 5.4
aspect_ratio                                                                16
movie_facebook_likes                                                       424
Name: 5031, dtype: object
color                                                                    Color
director_name                                                  Ash Baron-Cohen
num_critic_for_reviews                                                      10
duration                                                                    98
director_facebook_likes                                                      3
actor_3_facebook_likes                                                     152
actor_2_name                                                 Stanley B. Herman
actor_1_facebook_likes                                                     789
gross                                                                      NaN
genres                                                             Crime|Drama
actor_1_name                                                      Peter Greene
movie_title                                                              Bang 
num_voted_users                                                            438
cast_total_facebook_likes                                                 1186
actor_3_name                                                       James Noble
facenumber_in_poster                                                         1
plot_keywords                corruption|homeless|homeless man|motorcycle|ur...
movie_imdb_link              http://www.imdb.com/title/tt0109266/?ref_=fn_t...
num_user_for_reviews                                                        14
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                1995
actor_2_facebook_likes                                                     194
imdb_score                                                                 6.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                        20
Name: 5032, dtype: object
color                                                                    Color
director_name                                                    Shane Carruth
num_critic_for_reviews                                                     143
duration                                                                    77
director_facebook_likes                                                    291
actor_3_facebook_likes                                                       8
actor_2_name                                                    David Sullivan
actor_1_facebook_likes                                                     291
gross                                                                   424760
genres                                                   Drama|Sci-Fi|Thriller
actor_1_name                                                     Shane Carruth
movie_title                                                            Primer 
num_voted_users                                                          72639
cast_total_facebook_likes                                                  368
actor_3_name                                                      Casey Gooden
facenumber_in_poster                                                         0
plot_keywords                changing the future|independent film|invention...
movie_imdb_link              http://www.imdb.com/title/tt0390384/?ref_=fn_t...
num_user_for_reviews                                                       371
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                    7000
title_year                                                                2004
actor_2_facebook_likes                                                      45
imdb_score                                                                   7
aspect_ratio                                                              1.85
movie_facebook_likes                                                     19000
Name: 5033, dtype: object
color                                                                    Color
director_name                                                 Neill Dela Llana
num_critic_for_reviews                                                      35
duration                                                                    80
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                   Edgar Tancangco
actor_1_facebook_likes                                                       0
gross                                                                    70071
genres                                                                Thriller
actor_1_name                                                       Ian Gamazon
movie_title                                                            Cavite 
num_voted_users                                                            589
cast_total_facebook_likes                                                    0
actor_3_name                                                         Quynn Ton
facenumber_in_poster                                                         0
plot_keywords                jihad|mindanao|philippines|security guard|squa...
movie_imdb_link              http://www.imdb.com/title/tt0428303/?ref_=fn_t...
num_user_for_reviews                                                        35
language                                                               English
country                                                            Philippines
content_rating                                                       Not Rated
budget                                                                    7000
title_year                                                                2005
actor_2_facebook_likes                                                       0
imdb_score                                                                 6.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                        74
Name: 5034, dtype: object
color                                                                    Color
director_name                                                 Robert Rodriguez
num_critic_for_reviews                                                      56
duration                                                                    81
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       6
actor_2_name                                                   Peter Marquardt
actor_1_facebook_likes                                                     121
gross                                                              2.04092e+06
genres                                     Action|Crime|Drama|Romance|Thriller
actor_1_name                                                   Carlos Gallardo
movie_title                                                       El Mariachi 
num_voted_users                                                          52055
cast_total_facebook_likes                                                  147
actor_3_name                                                    Consuelo Gómez
facenumber_in_poster                                                         0
plot_keywords                               assassin|death|guitar|gun|mariachi
movie_imdb_link              http://www.imdb.com/title/tt0104815/?ref_=fn_t...
num_user_for_reviews                                                       130
language                                                               Spanish
country                                                                    USA
content_rating                                                               R
budget                                                                    7000
title_year                                                                1992
actor_2_facebook_likes                                                      20
imdb_score                                                                 6.9
aspect_ratio                                                              1.37
movie_facebook_likes                                                         0
Name: 5035, dtype: object
color                                                                    Color
director_name                                                  Anthony Vallone
num_critic_for_reviews                                                     NaN
duration                                                                    84
director_facebook_likes                                                      2
actor_3_facebook_likes                                                       2
actor_2_name                                                    John Considine
actor_1_facebook_likes                                                      45
gross                                                                      NaN
genres                                                             Crime|Drama
actor_1_name                                                    Richard Jewell
movie_title                                                   The Mongol King 
num_voted_users                                                             36
cast_total_facebook_likes                                                   93
actor_3_name                                                    Sara Stepnicka
facenumber_in_poster                                                         0
plot_keywords                      jewell|mongol|nostradamus|stepnicka|vallone
movie_imdb_link              http://www.imdb.com/title/tt0430371/?ref_=fn_t...
num_user_for_reviews                                                         1
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                    3250
title_year                                                                2005
actor_2_facebook_likes                                                      44
imdb_score                                                                 7.8
aspect_ratio                                                               NaN
movie_facebook_likes                                                         4
Name: 5036, dtype: object
color                                                                    Color
director_name                                                     Edward Burns
num_critic_for_reviews                                                      14
duration                                                                    95
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     133
actor_2_name                                                Caitlin FitzGerald
actor_1_facebook_likes                                                     296
gross                                                                     4584
genres                                                            Comedy|Drama
actor_1_name                                                       Kerry Bishé
movie_title                                                         Newlyweds 
num_voted_users                                                           1338
cast_total_facebook_likes                                                  690
actor_3_name                                                   Daniella Pineda
facenumber_in_poster                                                         1
plot_keywords                              written and directed by cast member
movie_imdb_link              http://www.imdb.com/title/tt1880418/?ref_=fn_t...
num_user_for_reviews                                                        14
language                                                               English
country                                                                    USA
content_rating                                                       Not Rated
budget                                                                    9000
title_year                                                                2011
actor_2_facebook_likes                                                     205
imdb_score                                                                 6.4
aspect_ratio                                                               NaN
movie_facebook_likes                                                       413
Name: 5037, dtype: object
color                                                                    Color
director_name                                                      Scott Smith
num_critic_for_reviews                                                       1
duration                                                                    87
director_facebook_likes                                                      2
actor_3_facebook_likes                                                     318
actor_2_name                                                     Daphne Zuniga
actor_1_facebook_likes                                                     637
gross                                                                      NaN
genres                                                            Comedy|Drama
actor_1_name                                                       Eric Mabius
movie_title                                           Signed Sealed Delivered 
num_voted_users                                                            629
cast_total_facebook_likes                                                 2283
actor_3_name                                                      Crystal Lowe
facenumber_in_poster                                                         2
plot_keywords                           fraud|postal worker|prison|theft|trial
movie_imdb_link              http://www.imdb.com/title/tt3000844/?ref_=fn_t...
num_user_for_reviews                                                         6
language                                                               English
country                                                                 Canada
content_rating                                                             NaN
budget                                                                     NaN
title_year                                                                2013
actor_2_facebook_likes                                                     470
imdb_score                                                                 7.7
aspect_ratio                                                               NaN
movie_facebook_likes                                                        84
Name: 5038, dtype: object
color                                                                    Color
director_name                                                              NaN
num_critic_for_reviews                                                      43
duration                                                                    43
director_facebook_likes                                                    NaN
actor_3_facebook_likes                                                     319
actor_2_name                                                     Valorie Curry
actor_1_facebook_likes                                                     841
gross                                                                      NaN
genres                                            Crime|Drama|Mystery|Thriller
actor_1_name                                                       Natalie Zea
movie_title                                         The Following             
num_voted_users                                                          73839
cast_total_facebook_likes                                                 1753
actor_3_name                                                     Sam Underwood
facenumber_in_poster                                                         1
plot_keywords                     cult|fbi|hideout|prison escape|serial killer
movie_imdb_link              http://www.imdb.com/title/tt2071645/?ref_=fn_t...
num_user_for_reviews                                                       359
language                                                               English
country                                                                    USA
content_rating                                                           TV-14
budget                                                                     NaN
title_year                                                                 NaN
actor_2_facebook_likes                                                     593
imdb_score                                                                 7.5
aspect_ratio                                                                16
movie_facebook_likes                                                     32000
Name: 5039, dtype: object
color                                                                    Color
director_name                                                 Benjamin Roberds
num_critic_for_reviews                                                      13
duration                                                                    76
director_facebook_likes                                                      0
actor_3_facebook_likes                                                       0
actor_2_name                                                     Maxwell Moody
actor_1_facebook_likes                                                       0
gross                                                                      NaN
genres                                                   Drama|Horror|Thriller
actor_1_name                                                       Eva Boehnke
movie_title                                              A Plague So Pleasant 
num_voted_users                                                             38
cast_total_facebook_likes                                                    0
actor_3_name                                                    David Chandler
facenumber_in_poster                                                         0
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2107644/?ref_=fn_t...
num_user_for_reviews                                                         3
language                                                               English
country                                                                    USA
content_rating                                                             NaN
budget                                                                    1400
title_year                                                                2013
actor_2_facebook_likes                                                       0
imdb_score                                                                 6.3
aspect_ratio                                                               NaN
movie_facebook_likes                                                        16
Name: 5040, dtype: object
color                                                                    Color
director_name                                                      Daniel Hsia
num_critic_for_reviews                                                      14
duration                                                                   100
director_facebook_likes                                                      0
actor_3_facebook_likes                                                     489
actor_2_name                                                     Daniel Henney
actor_1_facebook_likes                                                     946
gross                                                                    10443
genres                                                    Comedy|Drama|Romance
actor_1_name                                                         Alan Ruck
movie_title                                                  Shanghai Calling 
num_voted_users                                                           1255
cast_total_facebook_likes                                                 2386
actor_3_name                                                       Eliza Coupe
facenumber_in_poster                                                         5
plot_keywords                                                              NaN
movie_imdb_link              http://www.imdb.com/title/tt2070597/?ref_=fn_t...
num_user_for_reviews                                                         9
language                                                               English
country                                                                    USA
content_rating                                                           PG-13
budget                                                                     NaN
title_year                                                                2012
actor_2_facebook_likes                                                     719
imdb_score                                                                 6.3
aspect_ratio                                                              2.35
movie_facebook_likes                                                       660
Name: 5041, dtype: object
color                                                                    Color
director_name                                                         Jon Gunn
num_critic_for_reviews                                                      43
duration                                                                    90
director_facebook_likes                                                     16
actor_3_facebook_likes                                                      16
actor_2_name                                                  Brian Herzlinger
actor_1_facebook_likes                                                      86
gross                                                                    85222
genres                                                             Documentary
actor_1_name                                                       John August
movie_title                                                 My Date with Drew 
num_voted_users                                                           4285
cast_total_facebook_likes                                                  163
actor_3_name                                                          Jon Gunn
facenumber_in_poster                                                         0
plot_keywords                actress name in title|crush|date|four word tit...
movie_imdb_link              http://www.imdb.com/title/tt0378407/?ref_=fn_t...
num_user_for_reviews                                                        84
language                                                               English
country                                                                    USA
content_rating                                                              PG
budget                                                                    1100
title_year                                                                2004
actor_2_facebook_likes                                                      23
imdb_score                                                                 6.6
aspect_ratio                                                              1.85
movie_facebook_likes                                                       456
Name: 5042, dtype: object
In [17]:
movies.isnull()
A=movies.notnull().astype('bool')
A
Out[17]:
color director_name num_critic_for_reviews duration director_facebook_likes actor_3_facebook_likes actor_2_name actor_1_facebook_likes gross genres ... num_user_for_reviews language country content_rating budget title_year actor_2_facebook_likes imdb_score aspect_ratio movie_facebook_likes
0 True True True True True True True True True True ... True True True True True True True True True True
1 True True True True True True True True True True ... True True True True True True True True True True
2 True True True True True True True True True True ... True True True True True True True True True True
3 True True True True True True True True True True ... True True True True True True True True True True
4 False True False False True False True True False True ... False False False False False False True True False True
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
5038 True True True True True True True True False True ... True True True False False True True True False True
5039 True False True True False True True True False True ... True True True True False False True True True True
5040 True True True True True True True True False True ... True True True False True True True True False True
5041 True True True True True True True True True True ... True True True True False True True True True True
5042 True True True True True True True True True True ... True True True True True True True True True True

5043 rows × 28 columns

In [19]:
A=movies.notnull().astype('int')
A
Out[19]:
color director_name num_critic_for_reviews duration director_facebook_likes actor_3_facebook_likes actor_2_name actor_1_facebook_likes gross genres ... num_user_for_reviews language country content_rating budget title_year actor_2_facebook_likes imdb_score aspect_ratio movie_facebook_likes
0 1 1 1 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 1 1 1 1
2 1 1 1 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 1 1 1 1
3 1 1 1 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 1 1 1 1
4 0 1 0 0 1 0 1 1 0 1 ... 0 0 0 0 0 0 1 1 0 1
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
5038 1 1 1 1 1 1 1 1 0 1 ... 1 1 1 0 0 1 1 1 0 1
5039 1 0 1 1 0 1 1 1 0 1 ... 1 1 1 1 0 0 1 1 1 1
5040 1 1 1 1 1 1 1 1 0 1 ... 1 1 1 0 1 1 1 1 0 1
5041 1 1 1 1 1 1 1 1 1 1 ... 1 1 1 1 0 1 1 1 1 1
5042 1 1 1 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 1 1 1 1

5043 rows × 28 columns

In [20]:
#Row wise finding null value
movies.isnull()
A=movies.notnull().astype('int')
C=A.sum(axis=1)
C
Out[20]:
0       28
1       28
2       28
3       28
4       14
        ..
5038    24
5039    23
5040    24
5041    26
5042    28
Length: 5043, dtype: int64
In [21]:
movies.isnull()
A=movies.notnull().astype('int')
D=A.shape[1]
C=A.sum(axis=1)
for i in range(A.shape[0]):
    E=D-C[i]
    print('ROW {}: has {} Null-Value and {} Non-Null Value'.format(i,C[i],E))
ROW 0: has 28 Null-Value and 0 Non-Null Value
ROW 1: has 28 Null-Value and 0 Non-Null Value
ROW 2: has 28 Null-Value and 0 Non-Null Value
ROW 3: has 28 Null-Value and 0 Non-Null Value
ROW 4: has 14 Null-Value and 14 Non-Null Value
ROW 5: has 28 Null-Value and 0 Non-Null Value
ROW 6: has 28 Null-Value and 0 Non-Null Value
ROW 7: has 28 Null-Value and 0 Non-Null Value
ROW 8: has 28 Null-Value and 0 Non-Null Value
ROW 9: has 28 Null-Value and 0 Non-Null Value
ROW 10: has 28 Null-Value and 0 Non-Null Value
ROW 11: has 28 Null-Value and 0 Non-Null Value
ROW 12: has 28 Null-Value and 0 Non-Null Value
ROW 13: has 28 Null-Value and 0 Non-Null Value
ROW 14: has 28 Null-Value and 0 Non-Null Value
ROW 15: has 28 Null-Value and 0 Non-Null Value
ROW 16: has 28 Null-Value and 0 Non-Null Value
ROW 17: has 28 Null-Value and 0 Non-Null Value
ROW 18: has 28 Null-Value and 0 Non-Null Value
ROW 19: has 28 Null-Value and 0 Non-Null Value
ROW 20: has 28 Null-Value and 0 Non-Null Value
ROW 21: has 28 Null-Value and 0 Non-Null Value
ROW 22: has 28 Null-Value and 0 Non-Null Value
ROW 23: has 28 Null-Value and 0 Non-Null Value
ROW 24: has 28 Null-Value and 0 Non-Null Value
ROW 25: has 28 Null-Value and 0 Non-Null Value
ROW 26: has 28 Null-Value and 0 Non-Null Value
ROW 27: has 28 Null-Value and 0 Non-Null Value
ROW 28: has 28 Null-Value and 0 Non-Null Value
ROW 29: has 28 Null-Value and 0 Non-Null Value
ROW 30: has 28 Null-Value and 0 Non-Null Value
ROW 31: has 28 Null-Value and 0 Non-Null Value
ROW 32: has 28 Null-Value and 0 Non-Null Value
ROW 33: has 28 Null-Value and 0 Non-Null Value
ROW 34: has 28 Null-Value and 0 Non-Null Value
ROW 35: has 28 Null-Value and 0 Non-Null Value
ROW 36: has 28 Null-Value and 0 Non-Null Value
ROW 37: has 28 Null-Value and 0 Non-Null Value
ROW 38: has 28 Null-Value and 0 Non-Null Value
ROW 39: has 28 Null-Value and 0 Non-Null Value
ROW 40: has 28 Null-Value and 0 Non-Null Value
ROW 41: has 28 Null-Value and 0 Non-Null Value
ROW 42: has 28 Null-Value and 0 Non-Null Value
ROW 43: has 28 Null-Value and 0 Non-Null Value
ROW 44: has 28 Null-Value and 0 Non-Null Value
ROW 45: has 28 Null-Value and 0 Non-Null Value
ROW 46: has 28 Null-Value and 0 Non-Null Value
ROW 47: has 28 Null-Value and 0 Non-Null Value
ROW 48: has 28 Null-Value and 0 Non-Null Value
ROW 49: has 28 Null-Value and 0 Non-Null Value
ROW 50: has 28 Null-Value and 0 Non-Null Value
ROW 51: has 28 Null-Value and 0 Non-Null Value
ROW 52: has 28 Null-Value and 0 Non-Null Value
ROW 53: has 28 Null-Value and 0 Non-Null Value
ROW 54: has 28 Null-Value and 0 Non-Null Value
ROW 55: has 27 Null-Value and 1 Non-Null Value
ROW 56: has 28 Null-Value and 0 Non-Null Value
ROW 57: has 28 Null-Value and 0 Non-Null Value
ROW 58: has 28 Null-Value and 0 Non-Null Value
ROW 59: has 28 Null-Value and 0 Non-Null Value
ROW 60: has 28 Null-Value and 0 Non-Null Value
ROW 61: has 28 Null-Value and 0 Non-Null Value
ROW 62: has 28 Null-Value and 0 Non-Null Value
ROW 63: has 28 Null-Value and 0 Non-Null Value
ROW 64: has 28 Null-Value and 0 Non-Null Value
ROW 65: has 28 Null-Value and 0 Non-Null Value
ROW 66: has 28 Null-Value and 0 Non-Null Value
ROW 67: has 28 Null-Value and 0 Non-Null Value
ROW 68: has 28 Null-Value and 0 Non-Null Value
ROW 69: has 28 Null-Value and 0 Non-Null Value
ROW 70: has 28 Null-Value and 0 Non-Null Value
ROW 71: has 28 Null-Value and 0 Non-Null Value
ROW 72: has 28 Null-Value and 0 Non-Null Value
ROW 73: has 28 Null-Value and 0 Non-Null Value
ROW 74: has 28 Null-Value and 0 Non-Null Value
ROW 75: has 28 Null-Value and 0 Non-Null Value
ROW 76: has 28 Null-Value and 0 Non-Null Value
ROW 77: has 28 Null-Value and 0 Non-Null Value
ROW 78: has 28 Null-Value and 0 Non-Null Value
ROW 79: has 28 Null-Value and 0 Non-Null Value
ROW 80: has 28 Null-Value and 0 Non-Null Value
ROW 81: has 28 Null-Value and 0 Non-Null Value
ROW 82: has 28 Null-Value and 0 Non-Null Value
ROW 83: has 28 Null-Value and 0 Non-Null Value
ROW 84: has 25 Null-Value and 3 Non-Null Value
ROW 85: has 28 Null-Value and 0 Non-Null Value
ROW 86: has 28 Null-Value and 0 Non-Null Value
ROW 87: has 28 Null-Value and 0 Non-Null Value
ROW 88: has 28 Null-Value and 0 Non-Null Value
ROW 89: has 28 Null-Value and 0 Non-Null Value
ROW 90: has 28 Null-Value and 0 Non-Null Value
ROW 91: has 28 Null-Value and 0 Non-Null Value
ROW 92: has 28 Null-Value and 0 Non-Null Value
ROW 93: has 28 Null-Value and 0 Non-Null Value
ROW 94: has 28 Null-Value and 0 Non-Null Value
ROW 95: has 28 Null-Value and 0 Non-Null Value
ROW 96: has 28 Null-Value and 0 Non-Null Value
ROW 97: has 28 Null-Value and 0 Non-Null Value
ROW 98: has 25 Null-Value and 3 Non-Null Value
ROW 99: has 27 Null-Value and 1 Non-Null Value
ROW 100: has 28 Null-Value and 0 Non-Null Value
ROW 101: has 28 Null-Value and 0 Non-Null Value
ROW 102: has 28 Null-Value and 0 Non-Null Value
ROW 103: has 28 Null-Value and 0 Non-Null Value
ROW 104: has 28 Null-Value and 0 Non-Null Value
ROW 105: has 28 Null-Value and 0 Non-Null Value
ROW 106: has 28 Null-Value and 0 Non-Null Value
ROW 107: has 28 Null-Value and 0 Non-Null Value
ROW 108: has 28 Null-Value and 0 Non-Null Value
ROW 109: has 28 Null-Value and 0 Non-Null Value
ROW 110: has 28 Null-Value and 0 Non-Null Value
ROW 111: has 28 Null-Value and 0 Non-Null Value
ROW 112: has 28 Null-Value and 0 Non-Null Value
ROW 113: has 28 Null-Value and 0 Non-Null Value
ROW 114: has 28 Null-Value and 0 Non-Null Value
ROW 115: has 28 Null-Value and 0 Non-Null Value
ROW 116: has 28 Null-Value and 0 Non-Null Value
ROW 117: has 28 Null-Value and 0 Non-Null Value
ROW 118: has 28 Null-Value and 0 Non-Null Value
ROW 119: has 28 Null-Value and 0 Non-Null Value
ROW 120: has 28 Null-Value and 0 Non-Null Value
ROW 121: has 28 Null-Value and 0 Non-Null Value
ROW 122: has 28 Null-Value and 0 Non-Null Value
ROW 123: has 28 Null-Value and 0 Non-Null Value
ROW 124: has 28 Null-Value and 0 Non-Null Value
ROW 125: has 28 Null-Value and 0 Non-Null Value
ROW 126: has 28 Null-Value and 0 Non-Null Value
ROW 127: has 28 Null-Value and 0 Non-Null Value
ROW 128: has 28 Null-Value and 0 Non-Null Value
ROW 129: has 28 Null-Value and 0 Non-Null Value
ROW 130: has 28 Null-Value and 0 Non-Null Value
ROW 131: has 28 Null-Value and 0 Non-Null Value
ROW 132: has 28 Null-Value and 0 Non-Null Value
ROW 133: has 28 Null-Value and 0 Non-Null Value
ROW 134: has 28 Null-Value and 0 Non-Null Value
ROW 135: has 28 Null-Value and 0 Non-Null Value
ROW 136: has 28 Null-Value and 0 Non-Null Value
ROW 137: has 28 Null-Value and 0 Non-Null Value
ROW 138: has 28 Null-Value and 0 Non-Null Value
ROW 139: has 28 Null-Value and 0 Non-Null Value
ROW 140: has 28 Null-Value and 0 Non-Null Value
ROW 141: has 28 Null-Value and 0 Non-Null Value
ROW 142: has 28 Null-Value and 0 Non-Null Value
ROW 143: has 28 Null-Value and 0 Non-Null Value
ROW 144: has 28 Null-Value and 0 Non-Null Value
ROW 145: has 28 Null-Value and 0 Non-Null Value
ROW 146: has 28 Null-Value and 0 Non-Null Value
ROW 147: has 28 Null-Value and 0 Non-Null Value
ROW 148: has 28 Null-Value and 0 Non-Null Value
ROW 149: has 28 Null-Value and 0 Non-Null Value
ROW 150: has 28 Null-Value and 0 Non-Null Value
ROW 151: has 28 Null-Value and 0 Non-Null Value
ROW 152: has 28 Null-Value and 0 Non-Null Value
ROW 153: has 28 Null-Value and 0 Non-Null Value
ROW 154: has 28 Null-Value and 0 Non-Null Value
ROW 155: has 28 Null-Value and 0 Non-Null Value
ROW 156: has 28 Null-Value and 0 Non-Null Value
ROW 157: has 28 Null-Value and 0 Non-Null Value
ROW 158: has 28 Null-Value and 0 Non-Null Value
ROW 159: has 28 Null-Value and 0 Non-Null Value
ROW 160: has 28 Null-Value and 0 Non-Null Value
ROW 161: has 28 Null-Value and 0 Non-Null Value
ROW 162: has 28 Null-Value and 0 Non-Null Value
ROW 163: has 28 Null-Value and 0 Non-Null Value
ROW 164: has 28 Null-Value and 0 Non-Null Value
ROW 165: has 28 Null-Value and 0 Non-Null Value
ROW 166: has 28 Null-Value and 0 Non-Null Value
ROW 167: has 28 Null-Value and 0 Non-Null Value
ROW 168: has 28 Null-Value and 0 Non-Null Value
ROW 169: has 28 Null-Value and 0 Non-Null Value
ROW 170: has 28 Null-Value and 0 Non-Null Value
ROW 171: has 28 Null-Value and 0 Non-Null Value
ROW 172: has 28 Null-Value and 0 Non-Null Value
ROW 173: has 28 Null-Value and 0 Non-Null Value
ROW 174: has 28 Null-Value and 0 Non-Null Value
ROW 175: has 28 Null-Value and 0 Non-Null Value
ROW 176: has 28 Null-Value and 0 Non-Null Value
ROW 177: has 24 Null-Value and 4 Non-Null Value
ROW 178: has 28 Null-Value and 0 Non-Null Value
ROW 179: has 28 Null-Value and 0 Non-Null Value
ROW 180: has 28 Null-Value and 0 Non-Null Value
ROW 181: has 28 Null-Value and 0 Non-Null Value
ROW 182: has 28 Null-Value and 0 Non-Null Value
ROW 183: has 28 Null-Value and 0 Non-Null Value
ROW 184: has 28 Null-Value and 0 Non-Null Value
ROW 185: has 28 Null-Value and 0 Non-Null Value
ROW 186: has 28 Null-Value and 0 Non-Null Value
ROW 187: has 28 Null-Value and 0 Non-Null Value
ROW 188: has 28 Null-Value and 0 Non-Null Value
ROW 189: has 28 Null-Value and 0 Non-Null Value
ROW 190: has 28 Null-Value and 0 Non-Null Value
ROW 191: has 28 Null-Value and 0 Non-Null Value
ROW 192: has 28 Null-Value and 0 Non-Null Value
ROW 193: has 28 Null-Value and 0 Non-Null Value
ROW 194: has 28 Null-Value and 0 Non-Null Value
ROW 195: has 28 Null-Value and 0 Non-Null Value
ROW 196: has 28 Null-Value and 0 Non-Null Value
ROW 197: has 28 Null-Value and 0 Non-Null Value
ROW 198: has 28 Null-Value and 0 Non-Null Value
ROW 199: has 22 Null-Value and 6 Non-Null Value
ROW 200: has 28 Null-Value and 0 Non-Null Value
ROW 201: has 28 Null-Value and 0 Non-Null Value
ROW 202: has 28 Null-Value and 0 Non-Null Value
ROW 203: has 28 Null-Value and 0 Non-Null Value
ROW 204: has 25 Null-Value and 3 Non-Null Value
ROW 205: has 28 Null-Value and 0 Non-Null Value
ROW 206: has 22 Null-Value and 6 Non-Null Value
ROW 207: has 28 Null-Value and 0 Non-Null Value
ROW 208: has 28 Null-Value and 0 Non-Null Value
ROW 209: has 28 Null-Value and 0 Non-Null Value
ROW 210: has 28 Null-Value and 0 Non-Null Value
ROW 211: has 28 Null-Value and 0 Non-Null Value
ROW 212: has 28 Null-Value and 0 Non-Null Value
ROW 213: has 28 Null-Value and 0 Non-Null Value
ROW 214: has 28 Null-Value and 0 Non-Null Value
ROW 215: has 28 Null-Value and 0 Non-Null Value
ROW 216: has 28 Null-Value and 0 Non-Null Value
ROW 217: has 28 Null-Value and 0 Non-Null Value
ROW 218: has 28 Null-Value and 0 Non-Null Value
ROW 219: has 28 Null-Value and 0 Non-Null Value
ROW 220: has 28 Null-Value and 0 Non-Null Value
ROW 221: has 28 Null-Value and 0 Non-Null Value
ROW 222: has 28 Null-Value and 0 Non-Null Value
ROW 223: has 28 Null-Value and 0 Non-Null Value
ROW 224: has 28 Null-Value and 0 Non-Null Value
ROW 225: has 28 Null-Value and 0 Non-Null Value
ROW 226: has 28 Null-Value and 0 Non-Null Value
ROW 227: has 28 Null-Value and 0 Non-Null Value
ROW 228: has 28 Null-Value and 0 Non-Null Value
ROW 229: has 28 Null-Value and 0 Non-Null Value
ROW 230: has 28 Null-Value and 0 Non-Null Value
ROW 231: has 28 Null-Value and 0 Non-Null Value
ROW 232: has 28 Null-Value and 0 Non-Null Value
ROW 233: has 28 Null-Value and 0 Non-Null Value
ROW 234: has 28 Null-Value and 0 Non-Null Value
ROW 235: has 28 Null-Value and 0 Non-Null Value
ROW 236: has 28 Null-Value and 0 Non-Null Value
ROW 237: has 28 Null-Value and 0 Non-Null Value
ROW 238: has 28 Null-Value and 0 Non-Null Value
ROW 239: has 28 Null-Value and 0 Non-Null Value
ROW 240: has 28 Null-Value and 0 Non-Null Value
ROW 241: has 28 Null-Value and 0 Non-Null Value
ROW 242: has 26 Null-Value and 2 Non-Null Value
ROW 243: has 28 Null-Value and 0 Non-Null Value
ROW 244: has 28 Null-Value and 0 Non-Null Value
ROW 245: has 28 Null-Value and 0 Non-Null Value
ROW 246: has 28 Null-Value and 0 Non-Null Value
ROW 247: has 28 Null-Value and 0 Non-Null Value
ROW 248: has 27 Null-Value and 1 Non-Null Value
ROW 249: has 28 Null-Value and 0 Non-Null Value
ROW 250: has 28 Null-Value and 0 Non-Null Value
ROW 251: has 28 Null-Value and 0 Non-Null Value
ROW 252: has 28 Null-Value and 0 Non-Null Value
ROW 253: has 28 Null-Value and 0 Non-Null Value
ROW 254: has 28 Null-Value and 0 Non-Null Value
ROW 255: has 28 Null-Value and 0 Non-Null Value
ROW 256: has 28 Null-Value and 0 Non-Null Value
ROW 257: has 28 Null-Value and 0 Non-Null Value
ROW 258: has 28 Null-Value and 0 Non-Null Value
ROW 259: has 28 Null-Value and 0 Non-Null Value
ROW 260: has 23 Null-Value and 5 Non-Null Value
ROW 261: has 28 Null-Value and 0 Non-Null Value
ROW 262: has 28 Null-Value and 0 Non-Null Value
ROW 263: has 28 Null-Value and 0 Non-Null Value
ROW 264: has 28 Null-Value and 0 Non-Null Value
ROW 265: has 28 Null-Value and 0 Non-Null Value
ROW 266: has 28 Null-Value and 0 Non-Null Value
ROW 267: has 28 Null-Value and 0 Non-Null Value
ROW 268: has 28 Null-Value and 0 Non-Null Value
ROW 269: has 28 Null-Value and 0 Non-Null Value
ROW 270: has 28 Null-Value and 0 Non-Null Value
ROW 271: has 28 Null-Value and 0 Non-Null Value
ROW 272: has 28 Null-Value and 0 Non-Null Value
ROW 273: has 28 Null-Value and 0 Non-Null Value
ROW 274: has 28 Null-Value and 0 Non-Null Value
ROW 275: has 28 Null-Value and 0 Non-Null Value
ROW 276: has 28 Null-Value and 0 Non-Null Value
ROW 277: has 28 Null-Value and 0 Non-Null Value
ROW 278: has 28 Null-Value and 0 Non-Null Value
ROW 279: has 13 Null-Value and 15 Non-Null Value
ROW 280: has 28 Null-Value and 0 Non-Null Value
ROW 281: has 28 Null-Value and 0 Non-Null Value
ROW 282: has 28 Null-Value and 0 Non-Null Value
ROW 283: has 28 Null-Value and 0 Non-Null Value
ROW 284: has 28 Null-Value and 0 Non-Null Value
ROW 285: has 28 Null-Value and 0 Non-Null Value
ROW 286: has 28 Null-Value and 0 Non-Null Value
ROW 287: has 28 Null-Value and 0 Non-Null Value
ROW 288: has 28 Null-Value and 0 Non-Null Value
ROW 289: has 28 Null-Value and 0 Non-Null Value
ROW 290: has 28 Null-Value and 0 Non-Null Value
ROW 291: has 28 Null-Value and 0 Non-Null Value
ROW 292: has 28 Null-Value and 0 Non-Null Value
ROW 293: has 28 Null-Value and 0 Non-Null Value
ROW 294: has 28 Null-Value and 0 Non-Null Value
ROW 295: has 28 Null-Value and 0 Non-Null Value
ROW 296: has 28 Null-Value and 0 Non-Null Value
ROW 297: has 28 Null-Value and 0 Non-Null Value
ROW 298: has 28 Null-Value and 0 Non-Null Value
ROW 299: has 28 Null-Value and 0 Non-Null Value
ROW 300: has 28 Null-Value and 0 Non-Null Value
ROW 301: has 28 Null-Value and 0 Non-Null Value
ROW 302: has 28 Null-Value and 0 Non-Null Value
ROW 303: has 28 Null-Value and 0 Non-Null Value
ROW 304: has 28 Null-Value and 0 Non-Null Value
ROW 305: has 28 Null-Value and 0 Non-Null Value
ROW 306: has 28 Null-Value and 0 Non-Null Value
ROW 307: has 28 Null-Value and 0 Non-Null Value
ROW 308: has 28 Null-Value and 0 Non-Null Value
ROW 309: has 28 Null-Value and 0 Non-Null Value
ROW 310: has 28 Null-Value and 0 Non-Null Value
ROW 311: has 28 Null-Value and 0 Non-Null Value
ROW 312: has 28 Null-Value and 0 Non-Null Value
ROW 313: has 28 Null-Value and 0 Non-Null Value
ROW 314: has 28 Null-Value and 0 Non-Null Value
ROW 315: has 28 Null-Value and 0 Non-Null Value
ROW 316: has 28 Null-Value and 0 Non-Null Value
ROW 317: has 28 Null-Value and 0 Non-Null Value
ROW 318: has 28 Null-Value and 0 Non-Null Value
ROW 319: has 28 Null-Value and 0 Non-Null Value
ROW 320: has 28 Null-Value and 0 Non-Null Value
ROW 321: has 28 Null-Value and 0 Non-Null Value
ROW 322: has 28 Null-Value and 0 Non-Null Value
ROW 323: has 28 Null-Value and 0 Non-Null Value
ROW 324: has 28 Null-Value and 0 Non-Null Value
ROW 325: has 28 Null-Value and 0 Non-Null Value
ROW 326: has 28 Null-Value and 0 Non-Null Value
ROW 327: has 28 Null-Value and 0 Non-Null Value
ROW 328: has 28 Null-Value and 0 Non-Null Value
ROW 329: has 28 Null-Value and 0 Non-Null Value
ROW 330: has 28 Null-Value and 0 Non-Null Value
ROW 331: has 28 Null-Value and 0 Non-Null Value
ROW 332: has 28 Null-Value and 0 Non-Null Value
ROW 333: has 28 Null-Value and 0 Non-Null Value
ROW 334: has 28 Null-Value and 0 Non-Null Value
ROW 335: has 28 Null-Value and 0 Non-Null Value
ROW 336: has 28 Null-Value and 0 Non-Null Value
ROW 337: has 28 Null-Value and 0 Non-Null Value
ROW 338: has 28 Null-Value and 0 Non-Null Value
ROW 339: has 28 Null-Value and 0 Non-Null Value
ROW 340: has 28 Null-Value and 0 Non-Null Value
ROW 341: has 28 Null-Value and 0 Non-Null Value
ROW 342: has 28 Null-Value and 0 Non-Null Value
ROW 343: has 28 Null-Value and 0 Non-Null Value
ROW 344: has 28 Null-Value and 0 Non-Null Value
ROW 345: has 28 Null-Value and 0 Non-Null Value
ROW 346: has 28 Null-Value and 0 Non-Null Value
ROW 347: has 28 Null-Value and 0 Non-Null Value
ROW 348: has 28 Null-Value and 0 Non-Null Value
ROW 349: has 28 Null-Value and 0 Non-Null Value
ROW 350: has 28 Null-Value and 0 Non-Null Value
ROW 351: has 28 Null-Value and 0 Non-Null Value
ROW 352: has 28 Null-Value and 0 Non-Null Value
ROW 353: has 28 Null-Value and 0 Non-Null Value
ROW 354: has 28 Null-Value and 0 Non-Null Value
ROW 355: has 28 Null-Value and 0 Non-Null Value
ROW 356: has 28 Null-Value and 0 Non-Null Value
ROW 357: has 28 Null-Value and 0 Non-Null Value
ROW 358: has 28 Null-Value and 0 Non-Null Value
ROW 359: has 28 Null-Value and 0 Non-Null Value
ROW 360: has 28 Null-Value and 0 Non-Null Value
ROW 361: has 28 Null-Value and 0 Non-Null Value
ROW 362: has 28 Null-Value and 0 Non-Null Value
ROW 363: has 28 Null-Value and 0 Non-Null Value
ROW 364: has 28 Null-Value and 0 Non-Null Value
ROW 365: has 28 Null-Value and 0 Non-Null Value
ROW 366: has 28 Null-Value and 0 Non-Null Value
ROW 367: has 25 Null-Value and 3 Non-Null Value
ROW 368: has 28 Null-Value and 0 Non-Null Value
ROW 369: has 28 Null-Value and 0 Non-Null Value
ROW 370: has 28 Null-Value and 0 Non-Null Value
ROW 371: has 28 Null-Value and 0 Non-Null Value
ROW 372: has 28 Null-Value and 0 Non-Null Value
ROW 373: has 28 Null-Value and 0 Non-Null Value
ROW 374: has 28 Null-Value and 0 Non-Null Value
ROW 375: has 28 Null-Value and 0 Non-Null Value
ROW 376: has 28 Null-Value and 0 Non-Null Value
ROW 377: has 28 Null-Value and 0 Non-Null Value
ROW 378: has 28 Null-Value and 0 Non-Null Value
ROW 379: has 28 Null-Value and 0 Non-Null Value
ROW 380: has 28 Null-Value and 0 Non-Null Value
ROW 381: has 28 Null-Value and 0 Non-Null Value
ROW 382: has 28 Null-Value and 0 Non-Null Value
ROW 383: has 28 Null-Value and 0 Non-Null Value
ROW 384: has 28 Null-Value and 0 Non-Null Value
ROW 385: has 28 Null-Value and 0 Non-Null Value
ROW 386: has 28 Null-Value and 0 Non-Null Value
ROW 387: has 28 Null-Value and 0 Non-Null Value
ROW 388: has 28 Null-Value and 0 Non-Null Value
ROW 389: has 28 Null-Value and 0 Non-Null Value
ROW 390: has 28 Null-Value and 0 Non-Null Value
ROW 391: has 28 Null-Value and 0 Non-Null Value
ROW 392: has 28 Null-Value and 0 Non-Null Value
ROW 393: has 28 Null-Value and 0 Non-Null Value
ROW 394: has 28 Null-Value and 0 Non-Null Value
ROW 395: has 28 Null-Value and 0 Non-Null Value
ROW 396: has 28 Null-Value and 0 Non-Null Value
ROW 397: has 28 Null-Value and 0 Non-Null Value
ROW 398: has 28 Null-Value and 0 Non-Null Value
ROW 399: has 28 Null-Value and 0 Non-Null Value
ROW 400: has 28 Null-Value and 0 Non-Null Value
ROW 401: has 28 Null-Value and 0 Non-Null Value
ROW 402: has 28 Null-Value and 0 Non-Null Value
ROW 403: has 28 Null-Value and 0 Non-Null Value
ROW 404: has 23 Null-Value and 5 Non-Null Value
ROW 405: has 28 Null-Value and 0 Non-Null Value
ROW 406: has 28 Null-Value and 0 Non-Null Value
ROW 407: has 28 Null-Value and 0 Non-Null Value
ROW 408: has 28 Null-Value and 0 Non-Null Value
ROW 409: has 28 Null-Value and 0 Non-Null Value
ROW 410: has 28 Null-Value and 0 Non-Null Value
ROW 411: has 28 Null-Value and 0 Non-Null Value
ROW 412: has 28 Null-Value and 0 Non-Null Value
ROW 413: has 28 Null-Value and 0 Non-Null Value
ROW 414: has 28 Null-Value and 0 Non-Null Value
ROW 415: has 28 Null-Value and 0 Non-Null Value
ROW 416: has 28 Null-Value and 0 Non-Null Value
ROW 417: has 28 Null-Value and 0 Non-Null Value
ROW 418: has 28 Null-Value and 0 Non-Null Value
ROW 419: has 28 Null-Value and 0 Non-Null Value
ROW 420: has 28 Null-Value and 0 Non-Null Value
ROW 421: has 28 Null-Value and 0 Non-Null Value
ROW 422: has 26 Null-Value and 2 Non-Null Value
ROW 423: has 28 Null-Value and 0 Non-Null Value
ROW 424: has 28 Null-Value and 0 Non-Null Value
ROW 425: has 28 Null-Value and 0 Non-Null Value
ROW 426: has 28 Null-Value and 0 Non-Null Value
ROW 427: has 28 Null-Value and 0 Non-Null Value
ROW 428: has 28 Null-Value and 0 Non-Null Value
ROW 429: has 28 Null-Value and 0 Non-Null Value
ROW 430: has 27 Null-Value and 1 Non-Null Value
ROW 431: has 28 Null-Value and 0 Non-Null Value
ROW 432: has 28 Null-Value and 0 Non-Null Value
ROW 433: has 28 Null-Value and 0 Non-Null Value
ROW 434: has 28 Null-Value and 0 Non-Null Value
ROW 435: has 28 Null-Value and 0 Non-Null Value
ROW 436: has 28 Null-Value and 0 Non-Null Value
ROW 437: has 28 Null-Value and 0 Non-Null Value
ROW 438: has 28 Null-Value and 0 Non-Null Value
ROW 439: has 28 Null-Value and 0 Non-Null Value
ROW 440: has 28 Null-Value and 0 Non-Null Value
ROW 441: has 28 Null-Value and 0 Non-Null Value
ROW 442: has 28 Null-Value and 0 Non-Null Value
ROW 443: has 28 Null-Value and 0 Non-Null Value
ROW 444: has 27 Null-Value and 1 Non-Null Value
ROW 445: has 28 Null-Value and 0 Non-Null Value
ROW 446: has 28 Null-Value and 0 Non-Null Value
ROW 447: has 28 Null-Value and 0 Non-Null Value
ROW 448: has 28 Null-Value and 0 Non-Null Value
ROW 449: has 28 Null-Value and 0 Non-Null Value
ROW 450: has 28 Null-Value and 0 Non-Null Value
ROW 451: has 28 Null-Value and 0 Non-Null Value
ROW 452: has 28 Null-Value and 0 Non-Null Value
ROW 453: has 28 Null-Value and 0 Non-Null Value
ROW 454: has 28 Null-Value and 0 Non-Null Value
ROW 455: has 28 Null-Value and 0 Non-Null Value
ROW 456: has 28 Null-Value and 0 Non-Null Value
ROW 457: has 28 Null-Value and 0 Non-Null Value
ROW 458: has 28 Null-Value and 0 Non-Null Value
ROW 459: has 22 Null-Value and 6 Non-Null Value
ROW 460: has 28 Null-Value and 0 Non-Null Value
ROW 461: has 28 Null-Value and 0 Non-Null Value
ROW 462: has 28 Null-Value and 0 Non-Null Value
ROW 463: has 28 Null-Value and 0 Non-Null Value
ROW 464: has 28 Null-Value and 0 Non-Null Value
ROW 465: has 28 Null-Value and 0 Non-Null Value
ROW 466: has 28 Null-Value and 0 Non-Null Value
ROW 467: has 28 Null-Value and 0 Non-Null Value
ROW 468: has 28 Null-Value and 0 Non-Null Value
ROW 469: has 28 Null-Value and 0 Non-Null Value
ROW 470: has 28 Null-Value and 0 Non-Null Value
ROW 471: has 28 Null-Value and 0 Non-Null Value
ROW 472: has 28 Null-Value and 0 Non-Null Value
ROW 473: has 28 Null-Value and 0 Non-Null Value
ROW 474: has 28 Null-Value and 0 Non-Null Value
ROW 475: has 28 Null-Value and 0 Non-Null Value
ROW 476: has 28 Null-Value and 0 Non-Null Value
ROW 477: has 27 Null-Value and 1 Non-Null Value
ROW 478: has 28 Null-Value and 0 Non-Null Value
ROW 479: has 23 Null-Value and 5 Non-Null Value
ROW 480: has 28 Null-Value and 0 Non-Null Value
ROW 481: has 28 Null-Value and 0 Non-Null Value
ROW 482: has 28 Null-Value and 0 Non-Null Value
ROW 483: has 28 Null-Value and 0 Non-Null Value
ROW 484: has 28 Null-Value and 0 Non-Null Value
ROW 485: has 28 Null-Value and 0 Non-Null Value
ROW 486: has 28 Null-Value and 0 Non-Null Value
ROW 487: has 28 Null-Value and 0 Non-Null Value
ROW 488: has 28 Null-Value and 0 Non-Null Value
ROW 489: has 25 Null-Value and 3 Non-Null Value
ROW 490: has 27 Null-Value and 1 Non-Null Value
ROW 491: has 28 Null-Value and 0 Non-Null Value
ROW 492: has 28 Null-Value and 0 Non-Null Value
ROW 493: has 28 Null-Value and 0 Non-Null Value
ROW 494: has 28 Null-Value and 0 Non-Null Value
ROW 495: has 28 Null-Value and 0 Non-Null Value
ROW 496: has 28 Null-Value and 0 Non-Null Value
ROW 497: has 28 Null-Value and 0 Non-Null Value
ROW 498: has 28 Null-Value and 0 Non-Null Value
ROW 499: has 28 Null-Value and 0 Non-Null Value
ROW 500: has 28 Null-Value and 0 Non-Null Value
ROW 501: has 28 Null-Value and 0 Non-Null Value
ROW 502: has 28 Null-Value and 0 Non-Null Value
ROW 503: has 28 Null-Value and 0 Non-Null Value
ROW 504: has 28 Null-Value and 0 Non-Null Value
ROW 505: has 28 Null-Value and 0 Non-Null Value
ROW 506: has 28 Null-Value and 0 Non-Null Value
ROW 507: has 25 Null-Value and 3 Non-Null Value
ROW 508: has 28 Null-Value and 0 Non-Null Value
ROW 509: has 28 Null-Value and 0 Non-Null Value
ROW 510: has 28 Null-Value and 0 Non-Null Value
ROW 511: has 28 Null-Value and 0 Non-Null Value
ROW 512: has 28 Null-Value and 0 Non-Null Value
ROW 513: has 28 Null-Value and 0 Non-Null Value
ROW 514: has 28 Null-Value and 0 Non-Null Value
ROW 515: has 28 Null-Value and 0 Non-Null Value
ROW 516: has 28 Null-Value and 0 Non-Null Value
ROW 517: has 28 Null-Value and 0 Non-Null Value
ROW 518: has 28 Null-Value and 0 Non-Null Value
ROW 519: has 28 Null-Value and 0 Non-Null Value
ROW 520: has 28 Null-Value and 0 Non-Null Value
ROW 521: has 28 Null-Value and 0 Non-Null Value
ROW 522: has 28 Null-Value and 0 Non-Null Value
ROW 523: has 28 Null-Value and 0 Non-Null Value
ROW 524: has 28 Null-Value and 0 Non-Null Value
ROW 525: has 28 Null-Value and 0 Non-Null Value
ROW 526: has 28 Null-Value and 0 Non-Null Value
ROW 527: has 28 Null-Value and 0 Non-Null Value
ROW 528: has 28 Null-Value and 0 Non-Null Value
ROW 529: has 28 Null-Value and 0 Non-Null Value
ROW 530: has 28 Null-Value and 0 Non-Null Value
ROW 531: has 28 Null-Value and 0 Non-Null Value
ROW 532: has 28 Null-Value and 0 Non-Null Value
ROW 533: has 28 Null-Value and 0 Non-Null Value
ROW 534: has 28 Null-Value and 0 Non-Null Value
ROW 535: has 28 Null-Value and 0 Non-Null Value
ROW 536: has 28 Null-Value and 0 Non-Null Value
ROW 537: has 23 Null-Value and 5 Non-Null Value
ROW 538: has 28 Null-Value and 0 Non-Null Value
ROW 539: has 28 Null-Value and 0 Non-Null Value
ROW 540: has 28 Null-Value and 0 Non-Null Value
ROW 541: has 28 Null-Value and 0 Non-Null Value
ROW 542: has 28 Null-Value and 0 Non-Null Value
ROW 543: has 21 Null-Value and 7 Non-Null Value
ROW 544: has 28 Null-Value and 0 Non-Null Value
ROW 545: has 28 Null-Value and 0 Non-Null Value
ROW 546: has 28 Null-Value and 0 Non-Null Value
ROW 547: has 28 Null-Value and 0 Non-Null Value
ROW 548: has 28 Null-Value and 0 Non-Null Value
ROW 549: has 28 Null-Value and 0 Non-Null Value
ROW 550: has 28 Null-Value and 0 Non-Null Value
ROW 551: has 28 Null-Value and 0 Non-Null Value
ROW 552: has 28 Null-Value and 0 Non-Null Value
ROW 553: has 28 Null-Value and 0 Non-Null Value
ROW 554: has 28 Null-Value and 0 Non-Null Value
ROW 555: has 28 Null-Value and 0 Non-Null Value
ROW 556: has 28 Null-Value and 0 Non-Null Value
ROW 557: has 28 Null-Value and 0 Non-Null Value
ROW 558: has 28 Null-Value and 0 Non-Null Value
ROW 559: has 27 Null-Value and 1 Non-Null Value
ROW 560: has 28 Null-Value and 0 Non-Null Value
ROW 561: has 28 Null-Value and 0 Non-Null Value
ROW 562: has 28 Null-Value and 0 Non-Null Value
ROW 563: has 28 Null-Value and 0 Non-Null Value
ROW 564: has 28 Null-Value and 0 Non-Null Value
ROW 565: has 28 Null-Value and 0 Non-Null Value
ROW 566: has 28 Null-Value and 0 Non-Null Value
ROW 567: has 28 Null-Value and 0 Non-Null Value
ROW 568: has 28 Null-Value and 0 Non-Null Value
ROW 569: has 28 Null-Value and 0 Non-Null Value
ROW 570: has 28 Null-Value and 0 Non-Null Value
ROW 571: has 28 Null-Value and 0 Non-Null Value
ROW 572: has 28 Null-Value and 0 Non-Null Value
ROW 573: has 28 Null-Value and 0 Non-Null Value
ROW 574: has 28 Null-Value and 0 Non-Null Value
ROW 575: has 28 Null-Value and 0 Non-Null Value
ROW 576: has 28 Null-Value and 0 Non-Null Value
ROW 577: has 28 Null-Value and 0 Non-Null Value
ROW 578: has 28 Null-Value and 0 Non-Null Value
ROW 579: has 28 Null-Value and 0 Non-Null Value
ROW 580: has 28 Null-Value and 0 Non-Null Value
ROW 581: has 28 Null-Value and 0 Non-Null Value
ROW 582: has 28 Null-Value and 0 Non-Null Value
ROW 583: has 28 Null-Value and 0 Non-Null Value
ROW 584: has 28 Null-Value and 0 Non-Null Value
ROW 585: has 28 Null-Value and 0 Non-Null Value
ROW 586: has 28 Null-Value and 0 Non-Null Value
ROW 587: has 28 Null-Value and 0 Non-Null Value
ROW 588: has 28 Null-Value and 0 Non-Null Value
ROW 589: has 28 Null-Value and 0 Non-Null Value
ROW 590: has 28 Null-Value and 0 Non-Null Value
ROW 591: has 28 Null-Value and 0 Non-Null Value
ROW 592: has 28 Null-Value and 0 Non-Null Value
ROW 593: has 23 Null-Value and 5 Non-Null Value
ROW 594: has 28 Null-Value and 0 Non-Null Value
ROW 595: has 28 Null-Value and 0 Non-Null Value
ROW 596: has 28 Null-Value and 0 Non-Null Value
ROW 597: has 28 Null-Value and 0 Non-Null Value
ROW 598: has 28 Null-Value and 0 Non-Null Value
ROW 599: has 28 Null-Value and 0 Non-Null Value
ROW 600: has 28 Null-Value and 0 Non-Null Value
ROW 601: has 28 Null-Value and 0 Non-Null Value
ROW 602: has 28 Null-Value and 0 Non-Null Value
ROW 603: has 28 Null-Value and 0 Non-Null Value
ROW 604: has 28 Null-Value and 0 Non-Null Value
ROW 605: has 28 Null-Value and 0 Non-Null Value
ROW 606: has 28 Null-Value and 0 Non-Null Value
ROW 607: has 28 Null-Value and 0 Non-Null Value
ROW 608: has 28 Null-Value and 0 Non-Null Value
ROW 609: has 28 Null-Value and 0 Non-Null Value
ROW 610: has 28 Null-Value and 0 Non-Null Value
ROW 611: has 28 Null-Value and 0 Non-Null Value
ROW 612: has 28 Null-Value and 0 Non-Null Value
ROW 613: has 28 Null-Value and 0 Non-Null Value
ROW 614: has 28 Null-Value and 0 Non-Null Value
ROW 615: has 28 Null-Value and 0 Non-Null Value
ROW 616: has 28 Null-Value and 0 Non-Null Value
ROW 617: has 28 Null-Value and 0 Non-Null Value
ROW 618: has 28 Null-Value and 0 Non-Null Value
ROW 619: has 28 Null-Value and 0 Non-Null Value
ROW 620: has 28 Null-Value and 0 Non-Null Value
ROW 621: has 28 Null-Value and 0 Non-Null Value
ROW 622: has 28 Null-Value and 0 Non-Null Value
ROW 623: has 28 Null-Value and 0 Non-Null Value
ROW 624: has 27 Null-Value and 1 Non-Null Value
ROW 625: has 28 Null-Value and 0 Non-Null Value
ROW 626: has 28 Null-Value and 0 Non-Null Value
ROW 627: has 28 Null-Value and 0 Non-Null Value
ROW 628: has 28 Null-Value and 0 Non-Null Value
ROW 629: has 28 Null-Value and 0 Non-Null Value
ROW 630: has 28 Null-Value and 0 Non-Null Value
ROW 631: has 28 Null-Value and 0 Non-Null Value
ROW 632: has 28 Null-Value and 0 Non-Null Value
ROW 633: has 28 Null-Value and 0 Non-Null Value
ROW 634: has 28 Null-Value and 0 Non-Null Value
ROW 635: has 28 Null-Value and 0 Non-Null Value
ROW 636: has 28 Null-Value and 0 Non-Null Value
ROW 637: has 28 Null-Value and 0 Non-Null Value
ROW 638: has 28 Null-Value and 0 Non-Null Value
ROW 639: has 28 Null-Value and 0 Non-Null Value
ROW 640: has 27 Null-Value and 1 Non-Null Value
ROW 641: has 28 Null-Value and 0 Non-Null Value
ROW 642: has 27 Null-Value and 1 Non-Null Value
ROW 643: has 28 Null-Value and 0 Non-Null Value
ROW 644: has 28 Null-Value and 0 Non-Null Value
ROW 645: has 23 Null-Value and 5 Non-Null Value
ROW 646: has 28 Null-Value and 0 Non-Null Value
ROW 647: has 28 Null-Value and 0 Non-Null Value
ROW 648: has 28 Null-Value and 0 Non-Null Value
ROW 649: has 28 Null-Value and 0 Non-Null Value
ROW 650: has 28 Null-Value and 0 Non-Null Value
ROW 651: has 28 Null-Value and 0 Non-Null Value
ROW 652: has 28 Null-Value and 0 Non-Null Value
ROW 653: has 28 Null-Value and 0 Non-Null Value
ROW 654: has 28 Null-Value and 0 Non-Null Value
ROW 655: has 28 Null-Value and 0 Non-Null Value
ROW 656: has 28 Null-Value and 0 Non-Null Value
ROW 657: has 28 Null-Value and 0 Non-Null Value
ROW 658: has 28 Null-Value and 0 Non-Null Value
ROW 659: has 28 Null-Value and 0 Non-Null Value
ROW 660: has 28 Null-Value and 0 Non-Null Value
ROW 661: has 28 Null-Value and 0 Non-Null Value
ROW 662: has 28 Null-Value and 0 Non-Null Value
ROW 663: has 28 Null-Value and 0 Non-Null Value
ROW 664: has 28 Null-Value and 0 Non-Null Value
ROW 665: has 28 Null-Value and 0 Non-Null Value
ROW 666: has 28 Null-Value and 0 Non-Null Value
ROW 667: has 28 Null-Value and 0 Non-Null Value
ROW 668: has 28 Null-Value and 0 Non-Null Value
ROW 669: has 28 Null-Value and 0 Non-Null Value
ROW 670: has 28 Null-Value and 0 Non-Null Value
ROW 671: has 28 Null-Value and 0 Non-Null Value
ROW 672: has 28 Null-Value and 0 Non-Null Value
ROW 673: has 28 Null-Value and 0 Non-Null Value
ROW 674: has 28 Null-Value and 0 Non-Null Value
ROW 675: has 28 Null-Value and 0 Non-Null Value
ROW 676: has 27 Null-Value and 1 Non-Null Value
ROW 677: has 28 Null-Value and 0 Non-Null Value
ROW 678: has 28 Null-Value and 0 Non-Null Value
ROW 679: has 28 Null-Value and 0 Non-Null Value
ROW 680: has 28 Null-Value and 0 Non-Null Value
ROW 681: has 28 Null-Value and 0 Non-Null Value
ROW 682: has 28 Null-Value and 0 Non-Null Value
ROW 683: has 28 Null-Value and 0 Non-Null Value
ROW 684: has 28 Null-Value and 0 Non-Null Value
ROW 685: has 21 Null-Value and 7 Non-Null Value
ROW 686: has 28 Null-Value and 0 Non-Null Value
ROW 687: has 28 Null-Value and 0 Non-Null Value
ROW 688: has 28 Null-Value and 0 Non-Null Value
ROW 689: has 28 Null-Value and 0 Non-Null Value
ROW 690: has 28 Null-Value and 0 Non-Null Value
ROW 691: has 28 Null-Value and 0 Non-Null Value
ROW 692: has 28 Null-Value and 0 Non-Null Value
ROW 693: has 28 Null-Value and 0 Non-Null Value
ROW 694: has 28 Null-Value and 0 Non-Null Value
ROW 695: has 28 Null-Value and 0 Non-Null Value
ROW 696: has 28 Null-Value and 0 Non-Null Value
ROW 697: has 28 Null-Value and 0 Non-Null Value
ROW 698: has 28 Null-Value and 0 Non-Null Value
ROW 699: has 28 Null-Value and 0 Non-Null Value
ROW 700: has 28 Null-Value and 0 Non-Null Value
ROW 701: has 28 Null-Value and 0 Non-Null Value
ROW 702: has 28 Null-Value and 0 Non-Null Value
ROW 703: has 28 Null-Value and 0 Non-Null Value
ROW 704: has 28 Null-Value and 0 Non-Null Value
ROW 705: has 28 Null-Value and 0 Non-Null Value
ROW 706: has 28 Null-Value and 0 Non-Null Value
ROW 707: has 28 Null-Value and 0 Non-Null Value
ROW 708: has 28 Null-Value and 0 Non-Null Value
ROW 709: has 28 Null-Value and 0 Non-Null Value
ROW 710: has 28 Null-Value and 0 Non-Null Value
ROW 711: has 28 Null-Value and 0 Non-Null Value
ROW 712: has 28 Null-Value and 0 Non-Null Value
ROW 713: has 27 Null-Value and 1 Non-Null Value
ROW 714: has 28 Null-Value and 0 Non-Null Value
ROW 715: has 28 Null-Value and 0 Non-Null Value
ROW 716: has 28 Null-Value and 0 Non-Null Value
ROW 717: has 28 Null-Value and 0 Non-Null Value
ROW 718: has 28 Null-Value and 0 Non-Null Value
ROW 719: has 28 Null-Value and 0 Non-Null Value
ROW 720: has 28 Null-Value and 0 Non-Null Value
ROW 721: has 28 Null-Value and 0 Non-Null Value
ROW 722: has 28 Null-Value and 0 Non-Null Value
ROW 723: has 28 Null-Value and 0 Non-Null Value
ROW 724: has 28 Null-Value and 0 Non-Null Value
ROW 725: has 28 Null-Value and 0 Non-Null Value
ROW 726: has 28 Null-Value and 0 Non-Null Value
ROW 727: has 28 Null-Value and 0 Non-Null Value
ROW 728: has 28 Null-Value and 0 Non-Null Value
ROW 729: has 28 Null-Value and 0 Non-Null Value
ROW 730: has 28 Null-Value and 0 Non-Null Value
ROW 731: has 28 Null-Value and 0 Non-Null Value
ROW 732: has 28 Null-Value and 0 Non-Null Value
ROW 733: has 28 Null-Value and 0 Non-Null Value
ROW 734: has 28 Null-Value and 0 Non-Null Value
ROW 735: has 28 Null-Value and 0 Non-Null Value
ROW 736: has 28 Null-Value and 0 Non-Null Value
ROW 737: has 28 Null-Value and 0 Non-Null Value
ROW 738: has 28 Null-Value and 0 Non-Null Value
ROW 739: has 28 Null-Value and 0 Non-Null Value
ROW 740: has 28 Null-Value and 0 Non-Null Value
ROW 741: has 28 Null-Value and 0 Non-Null Value
ROW 742: has 28 Null-Value and 0 Non-Null Value
ROW 743: has 28 Null-Value and 0 Non-Null Value
ROW 744: has 28 Null-Value and 0 Non-Null Value
ROW 745: has 28 Null-Value and 0 Non-Null Value
ROW 746: has 28 Null-Value and 0 Non-Null Value
ROW 747: has 28 Null-Value and 0 Non-Null Value
ROW 748: has 28 Null-Value and 0 Non-Null Value
ROW 749: has 28 Null-Value and 0 Non-Null Value
ROW 750: has 28 Null-Value and 0 Non-Null Value
ROW 751: has 28 Null-Value and 0 Non-Null Value
ROW 752: has 28 Null-Value and 0 Non-Null Value
ROW 753: has 28 Null-Value and 0 Non-Null Value
ROW 754: has 28 Null-Value and 0 Non-Null Value
ROW 755: has 28 Null-Value and 0 Non-Null Value
ROW 756: has 28 Null-Value and 0 Non-Null Value
ROW 757: has 23 Null-Value and 5 Non-Null Value
ROW 758: has 28 Null-Value and 0 Non-Null Value
ROW 759: has 28 Null-Value and 0 Non-Null Value
ROW 760: has 28 Null-Value and 0 Non-Null Value
ROW 761: has 28 Null-Value and 0 Non-Null Value
ROW 762: has 28 Null-Value and 0 Non-Null Value
ROW 763: has 28 Null-Value and 0 Non-Null Value
ROW 764: has 28 Null-Value and 0 Non-Null Value
ROW 765: has 28 Null-Value and 0 Non-Null Value
ROW 766: has 28 Null-Value and 0 Non-Null Value
ROW 767: has 28 Null-Value and 0 Non-Null Value
ROW 768: has 28 Null-Value and 0 Non-Null Value
ROW 769: has 28 Null-Value and 0 Non-Null Value
ROW 770: has 28 Null-Value and 0 Non-Null Value
ROW 771: has 28 Null-Value and 0 Non-Null Value
ROW 772: has 28 Null-Value and 0 Non-Null Value
ROW 773: has 27 Null-Value and 1 Non-Null Value
ROW 774: has 28 Null-Value and 0 Non-Null Value
ROW 775: has 28 Null-Value and 0 Non-Null Value
ROW 776: has 28 Null-Value and 0 Non-Null Value
ROW 777: has 28 Null-Value and 0 Non-Null Value
ROW 778: has 28 Null-Value and 0 Non-Null Value
ROW 779: has 28 Null-Value and 0 Non-Null Value
ROW 780: has 27 Null-Value and 1 Non-Null Value
ROW 781: has 28 Null-Value and 0 Non-Null Value
ROW 782: has 28 Null-Value and 0 Non-Null Value
ROW 783: has 28 Null-Value and 0 Non-Null Value
ROW 784: has 28 Null-Value and 0 Non-Null Value
ROW 785: has 28 Null-Value and 0 Non-Null Value
ROW 786: has 28 Null-Value and 0 Non-Null Value
ROW 787: has 28 Null-Value and 0 Non-Null Value
ROW 788: has 28 Null-Value and 0 Non-Null Value
ROW 789: has 27 Null-Value and 1 Non-Null Value
ROW 790: has 28 Null-Value and 0 Non-Null Value
ROW 791: has 28 Null-Value and 0 Non-Null Value
ROW 792: has 28 Null-Value and 0 Non-Null Value
ROW 793: has 28 Null-Value and 0 Non-Null Value
ROW 794: has 28 Null-Value and 0 Non-Null Value
ROW 795: has 28 Null-Value and 0 Non-Null Value
ROW 796: has 28 Null-Value and 0 Non-Null Value
ROW 797: has 28 Null-Value and 0 Non-Null Value
ROW 798: has 28 Null-Value and 0 Non-Null Value
ROW 799: has 28 Null-Value and 0 Non-Null Value
ROW 800: has 28 Null-Value and 0 Non-Null Value
ROW 801: has 28 Null-Value and 0 Non-Null Value
ROW 802: has 28 Null-Value and 0 Non-Null Value
ROW 803: has 28 Null-Value and 0 Non-Null Value
ROW 804: has 28 Null-Value and 0 Non-Null Value
ROW 805: has 28 Null-Value and 0 Non-Null Value
ROW 806: has 28 Null-Value and 0 Non-Null Value
ROW 807: has 28 Null-Value and 0 Non-Null Value
ROW 808: has 28 Null-Value and 0 Non-Null Value
ROW 809: has 28 Null-Value and 0 Non-Null Value
ROW 810: has 26 Null-Value and 2 Non-Null Value
ROW 811: has 28 Null-Value and 0 Non-Null Value
ROW 812: has 28 Null-Value and 0 Non-Null Value
ROW 813: has 28 Null-Value and 0 Non-Null Value
ROW 814: has 28 Null-Value and 0 Non-Null Value
ROW 815: has 28 Null-Value and 0 Non-Null Value
ROW 816: has 24 Null-Value and 4 Non-Null Value
ROW 817: has 28 Null-Value and 0 Non-Null Value
ROW 818: has 28 Null-Value and 0 Non-Null Value
ROW 819: has 28 Null-Value and 0 Non-Null Value
ROW 820: has 28 Null-Value and 0 Non-Null Value
ROW 821: has 26 Null-Value and 2 Non-Null Value
ROW 822: has 28 Null-Value and 0 Non-Null Value
ROW 823: has 28 Null-Value and 0 Non-Null Value
ROW 824: has 28 Null-Value and 0 Non-Null Value
ROW 825: has 28 Null-Value and 0 Non-Null Value
ROW 826: has 23 Null-Value and 5 Non-Null Value
ROW 827: has 28 Null-Value and 0 Non-Null Value
ROW 828: has 28 Null-Value and 0 Non-Null Value
ROW 829: has 28 Null-Value and 0 Non-Null Value
ROW 830: has 28 Null-Value and 0 Non-Null Value
ROW 831: has 28 Null-Value and 0 Non-Null Value
ROW 832: has 28 Null-Value and 0 Non-Null Value
ROW 833: has 22 Null-Value and 6 Non-Null Value
ROW 834: has 28 Null-Value and 0 Non-Null Value
ROW 835: has 28 Null-Value and 0 Non-Null Value
ROW 836: has 28 Null-Value and 0 Non-Null Value
ROW 837: has 28 Null-Value and 0 Non-Null Value
ROW 838: has 28 Null-Value and 0 Non-Null Value
ROW 839: has 28 Null-Value and 0 Non-Null Value
ROW 840: has 28 Null-Value and 0 Non-Null Value
ROW 841: has 28 Null-Value and 0 Non-Null Value
ROW 842: has 28 Null-Value and 0 Non-Null Value
ROW 843: has 28 Null-Value and 0 Non-Null Value
ROW 844: has 28 Null-Value and 0 Non-Null Value
ROW 845: has 28 Null-Value and 0 Non-Null Value
ROW 846: has 28 Null-Value and 0 Non-Null Value
ROW 847: has 28 Null-Value and 0 Non-Null Value
ROW 848: has 28 Null-Value and 0 Non-Null Value
ROW 849: has 28 Null-Value and 0 Non-Null Value
ROW 850: has 28 Null-Value and 0 Non-Null Value
ROW 851: has 28 Null-Value and 0 Non-Null Value
ROW 852: has 28 Null-Value and 0 Non-Null Value
ROW 853: has 28 Null-Value and 0 Non-Null Value
ROW 854: has 28 Null-Value and 0 Non-Null Value
ROW 855: has 28 Null-Value and 0 Non-Null Value
ROW 856: has 28 Null-Value and 0 Non-Null Value
ROW 857: has 24 Null-Value and 4 Non-Null Value
ROW 858: has 28 Null-Value and 0 Non-Null Value
ROW 859: has 28 Null-Value and 0 Non-Null Value
ROW 860: has 28 Null-Value and 0 Non-Null Value
ROW 861: has 28 Null-Value and 0 Non-Null Value
ROW 862: has 28 Null-Value and 0 Non-Null Value
ROW 863: has 28 Null-Value and 0 Non-Null Value
ROW 864: has 28 Null-Value and 0 Non-Null Value
ROW 865: has 28 Null-Value and 0 Non-Null Value
ROW 866: has 28 Null-Value and 0 Non-Null Value
ROW 867: has 28 Null-Value and 0 Non-Null Value
ROW 868: has 28 Null-Value and 0 Non-Null Value
ROW 869: has 28 Null-Value and 0 Non-Null Value
ROW 870: has 28 Null-Value and 0 Non-Null Value
ROW 871: has 28 Null-Value and 0 Non-Null Value
ROW 872: has 28 Null-Value and 0 Non-Null Value
ROW 873: has 28 Null-Value and 0 Non-Null Value
ROW 874: has 28 Null-Value and 0 Non-Null Value
ROW 875: has 28 Null-Value and 0 Non-Null Value
ROW 876: has 28 Null-Value and 0 Non-Null Value
ROW 877: has 28 Null-Value and 0 Non-Null Value
ROW 878: has 28 Null-Value and 0 Non-Null Value
ROW 879: has 28 Null-Value and 0 Non-Null Value
ROW 880: has 28 Null-Value and 0 Non-Null Value
ROW 881: has 28 Null-Value and 0 Non-Null Value
ROW 882: has 28 Null-Value and 0 Non-Null Value
ROW 883: has 28 Null-Value and 0 Non-Null Value
ROW 884: has 28 Null-Value and 0 Non-Null Value
ROW 885: has 28 Null-Value and 0 Non-Null Value
ROW 886: has 28 Null-Value and 0 Non-Null Value
ROW 887: has 28 Null-Value and 0 Non-Null Value
ROW 888: has 28 Null-Value and 0 Non-Null Value
ROW 889: has 28 Null-Value and 0 Non-Null Value
ROW 890: has 27 Null-Value and 1 Non-Null Value
ROW 891: has 27 Null-Value and 1 Non-Null Value
ROW 892: has 28 Null-Value and 0 Non-Null Value
ROW 893: has 28 Null-Value and 0 Non-Null Value
ROW 894: has 28 Null-Value and 0 Non-Null Value
ROW 895: has 28 Null-Value and 0 Non-Null Value
ROW 896: has 28 Null-Value and 0 Non-Null Value
ROW 897: has 28 Null-Value and 0 Non-Null Value
ROW 898: has 28 Null-Value and 0 Non-Null Value
ROW 899: has 28 Null-Value and 0 Non-Null Value
ROW 900: has 28 Null-Value and 0 Non-Null Value
ROW 901: has 28 Null-Value and 0 Non-Null Value
ROW 902: has 28 Null-Value and 0 Non-Null Value
ROW 903: has 28 Null-Value and 0 Non-Null Value
ROW 904: has 28 Null-Value and 0 Non-Null Value
ROW 905: has 28 Null-Value and 0 Non-Null Value
ROW 906: has 28 Null-Value and 0 Non-Null Value
ROW 907: has 28 Null-Value and 0 Non-Null Value
ROW 908: has 28 Null-Value and 0 Non-Null Value
ROW 909: has 28 Null-Value and 0 Non-Null Value
ROW 910: has 28 Null-Value and 0 Non-Null Value
ROW 911: has 28 Null-Value and 0 Non-Null Value
ROW 912: has 28 Null-Value and 0 Non-Null Value
ROW 913: has 28 Null-Value and 0 Non-Null Value
ROW 914: has 28 Null-Value and 0 Non-Null Value
ROW 915: has 28 Null-Value and 0 Non-Null Value
ROW 916: has 28 Null-Value and 0 Non-Null Value
ROW 917: has 28 Null-Value and 0 Non-Null Value
ROW 918: has 28 Null-Value and 0 Non-Null Value
ROW 919: has 28 Null-Value and 0 Non-Null Value
ROW 920: has 28 Null-Value and 0 Non-Null Value
ROW 921: has 28 Null-Value and 0 Non-Null Value
ROW 922: has 28 Null-Value and 0 Non-Null Value
ROW 923: has 28 Null-Value and 0 Non-Null Value
ROW 924: has 28 Null-Value and 0 Non-Null Value
ROW 925: has 27 Null-Value and 1 Non-Null Value
ROW 926: has 28 Null-Value and 0 Non-Null Value
ROW 927: has 28 Null-Value and 0 Non-Null Value
ROW 928: has 28 Null-Value and 0 Non-Null Value
ROW 929: has 28 Null-Value and 0 Non-Null Value
ROW 930: has 28 Null-Value and 0 Non-Null Value
ROW 931: has 28 Null-Value and 0 Non-Null Value
ROW 932: has 28 Null-Value and 0 Non-Null Value
ROW 933: has 28 Null-Value and 0 Non-Null Value
ROW 934: has 28 Null-Value and 0 Non-Null Value
ROW 935: has 28 Null-Value and 0 Non-Null Value
ROW 936: has 28 Null-Value and 0 Non-Null Value
ROW 937: has 28 Null-Value and 0 Non-Null Value
ROW 938: has 28 Null-Value and 0 Non-Null Value
ROW 939: has 28 Null-Value and 0 Non-Null Value
ROW 940: has 28 Null-Value and 0 Non-Null Value
ROW 941: has 28 Null-Value and 0 Non-Null Value
ROW 942: has 28 Null-Value and 0 Non-Null Value
ROW 943: has 28 Null-Value and 0 Non-Null Value
ROW 944: has 28 Null-Value and 0 Non-Null Value
ROW 945: has 28 Null-Value and 0 Non-Null Value
ROW 946: has 28 Null-Value and 0 Non-Null Value
ROW 947: has 28 Null-Value and 0 Non-Null Value
ROW 948: has 28 Null-Value and 0 Non-Null Value
ROW 949: has 27 Null-Value and 1 Non-Null Value
ROW 950: has 28 Null-Value and 0 Non-Null Value
ROW 951: has 28 Null-Value and 0 Non-Null Value
ROW 952: has 27 Null-Value and 1 Non-Null Value
ROW 953: has 28 Null-Value and 0 Non-Null Value
ROW 954: has 28 Null-Value and 0 Non-Null Value
ROW 955: has 28 Null-Value and 0 Non-Null Value
ROW 956: has 28 Null-Value and 0 Non-Null Value
ROW 957: has 28 Null-Value and 0 Non-Null Value
ROW 958: has 28 Null-Value and 0 Non-Null Value
ROW 959: has 28 Null-Value and 0 Non-Null Value
ROW 960: has 28 Null-Value and 0 Non-Null Value
ROW 961: has 28 Null-Value and 0 Non-Null Value
ROW 962: has 20 Null-Value and 8 Non-Null Value
ROW 963: has 28 Null-Value and 0 Non-Null Value
ROW 964: has 28 Null-Value and 0 Non-Null Value
ROW 965: has 28 Null-Value and 0 Non-Null Value
ROW 966: has 28 Null-Value and 0 Non-Null Value
ROW 967: has 28 Null-Value and 0 Non-Null Value
ROW 968: has 28 Null-Value and 0 Non-Null Value
ROW 969: has 28 Null-Value and 0 Non-Null Value
ROW 970: has 28 Null-Value and 0 Non-Null Value
ROW 971: has 28 Null-Value and 0 Non-Null Value
ROW 972: has 28 Null-Value and 0 Non-Null Value
ROW 973: has 28 Null-Value and 0 Non-Null Value
ROW 974: has 28 Null-Value and 0 Non-Null Value
ROW 975: has 28 Null-Value and 0 Non-Null Value
ROW 976: has 28 Null-Value and 0 Non-Null Value
ROW 977: has 28 Null-Value and 0 Non-Null Value
ROW 978: has 28 Null-Value and 0 Non-Null Value
ROW 979: has 28 Null-Value and 0 Non-Null Value
ROW 980: has 28 Null-Value and 0 Non-Null Value
ROW 981: has 28 Null-Value and 0 Non-Null Value
ROW 982: has 28 Null-Value and 0 Non-Null Value
ROW 983: has 28 Null-Value and 0 Non-Null Value
ROW 984: has 28 Null-Value and 0 Non-Null Value
ROW 985: has 28 Null-Value and 0 Non-Null Value
ROW 986: has 28 Null-Value and 0 Non-Null Value
ROW 987: has 28 Null-Value and 0 Non-Null Value
ROW 988: has 28 Null-Value and 0 Non-Null Value
ROW 989: has 28 Null-Value and 0 Non-Null Value
ROW 990: has 28 Null-Value and 0 Non-Null Value
ROW 991: has 28 Null-Value and 0 Non-Null Value
ROW 992: has 28 Null-Value and 0 Non-Null Value
ROW 993: has 28 Null-Value and 0 Non-Null Value
ROW 994: has 22 Null-Value and 6 Non-Null Value
ROW 995: has 28 Null-Value and 0 Non-Null Value
ROW 996: has 28 Null-Value and 0 Non-Null Value
ROW 997: has 28 Null-Value and 0 Non-Null Value
ROW 998: has 28 Null-Value and 0 Non-Null Value
ROW 999: has 28 Null-Value and 0 Non-Null Value
ROW 1000: has 28 Null-Value and 0 Non-Null Value
ROW 1001: has 28 Null-Value and 0 Non-Null Value
ROW 1002: has 28 Null-Value and 0 Non-Null Value
ROW 1003: has 28 Null-Value and 0 Non-Null Value
ROW 1004: has 28 Null-Value and 0 Non-Null Value
ROW 1005: has 28 Null-Value and 0 Non-Null Value
ROW 1006: has 28 Null-Value and 0 Non-Null Value
ROW 1007: has 21 Null-Value and 7 Non-Null Value
ROW 1008: has 28 Null-Value and 0 Non-Null Value
ROW 1009: has 28 Null-Value and 0 Non-Null Value
ROW 1010: has 28 Null-Value and 0 Non-Null Value
ROW 1011: has 28 Null-Value and 0 Non-Null Value
ROW 1012: has 28 Null-Value and 0 Non-Null Value
ROW 1013: has 28 Null-Value and 0 Non-Null Value
ROW 1014: has 28 Null-Value and 0 Non-Null Value
ROW 1015: has 28 Null-Value and 0 Non-Null Value
ROW 1016: has 28 Null-Value and 0 Non-Null Value
ROW 1017: has 28 Null-Value and 0 Non-Null Value
ROW 1018: has 28 Null-Value and 0 Non-Null Value
ROW 1019: has 28 Null-Value and 0 Non-Null Value
ROW 1020: has 28 Null-Value and 0 Non-Null Value
ROW 1021: has 28 Null-Value and 0 Non-Null Value
ROW 1022: has 28 Null-Value and 0 Non-Null Value
ROW 1023: has 23 Null-Value and 5 Non-Null Value
ROW 1024: has 28 Null-Value and 0 Non-Null Value
ROW 1025: has 28 Null-Value and 0 Non-Null Value
ROW 1026: has 28 Null-Value and 0 Non-Null Value
ROW 1027: has 28 Null-Value and 0 Non-Null Value
ROW 1028: has 28 Null-Value and 0 Non-Null Value
ROW 1029: has 28 Null-Value and 0 Non-Null Value
ROW 1030: has 28 Null-Value and 0 Non-Null Value
ROW 1031: has 28 Null-Value and 0 Non-Null Value
ROW 1032: has 28 Null-Value and 0 Non-Null Value
ROW 1033: has 28 Null-Value and 0 Non-Null Value
ROW 1034: has 28 Null-Value and 0 Non-Null Value
ROW 1035: has 23 Null-Value and 5 Non-Null Value
ROW 1036: has 28 Null-Value and 0 Non-Null Value
ROW 1037: has 27 Null-Value and 1 Non-Null Value
ROW 1038: has 28 Null-Value and 0 Non-Null Value
ROW 1039: has 28 Null-Value and 0 Non-Null Value
ROW 1040: has 27 Null-Value and 1 Non-Null Value
ROW 1041: has 28 Null-Value and 0 Non-Null Value
ROW 1042: has 28 Null-Value and 0 Non-Null Value
ROW 1043: has 28 Null-Value and 0 Non-Null Value
ROW 1044: has 26 Null-Value and 2 Non-Null Value
ROW 1045: has 28 Null-Value and 0 Non-Null Value
ROW 1046: has 28 Null-Value and 0 Non-Null Value
ROW 1047: has 28 Null-Value and 0 Non-Null Value
ROW 1048: has 28 Null-Value and 0 Non-Null Value
ROW 1049: has 28 Null-Value and 0 Non-Null Value
ROW 1050: has 28 Null-Value and 0 Non-Null Value
ROW 1051: has 28 Null-Value and 0 Non-Null Value
ROW 1052: has 28 Null-Value and 0 Non-Null Value
ROW 1053: has 28 Null-Value and 0 Non-Null Value
ROW 1054: has 28 Null-Value and 0 Non-Null Value
ROW 1055: has 28 Null-Value and 0 Non-Null Value
ROW 1056: has 26 Null-Value and 2 Non-Null Value
ROW 1057: has 28 Null-Value and 0 Non-Null Value
ROW 1058: has 28 Null-Value and 0 Non-Null Value
ROW 1059: has 28 Null-Value and 0 Non-Null Value
ROW 1060: has 27 Null-Value and 1 Non-Null Value
ROW 1061: has 27 Null-Value and 1 Non-Null Value
ROW 1062: has 28 Null-Value and 0 Non-Null Value
ROW 1063: has 28 Null-Value and 0 Non-Null Value
ROW 1064: has 28 Null-Value and 0 Non-Null Value
ROW 1065: has 28 Null-Value and 0 Non-Null Value
ROW 1066: has 28 Null-Value and 0 Non-Null Value
ROW 1067: has 28 Null-Value and 0 Non-Null Value
ROW 1068: has 28 Null-Value and 0 Non-Null Value
ROW 1069: has 28 Null-Value and 0 Non-Null Value
ROW 1070: has 28 Null-Value and 0 Non-Null Value
ROW 1071: has 27 Null-Value and 1 Non-Null Value
ROW 1072: has 27 Null-Value and 1 Non-Null Value
ROW 1073: has 28 Null-Value and 0 Non-Null Value
ROW 1074: has 28 Null-Value and 0 Non-Null Value
ROW 1075: has 28 Null-Value and 0 Non-Null Value
ROW 1076: has 28 Null-Value and 0 Non-Null Value
ROW 1077: has 28 Null-Value and 0 Non-Null Value
ROW 1078: has 28 Null-Value and 0 Non-Null Value
ROW 1079: has 28 Null-Value and 0 Non-Null Value
ROW 1080: has 28 Null-Value and 0 Non-Null Value
ROW 1081: has 28 Null-Value and 0 Non-Null Value
ROW 1082: has 28 Null-Value and 0 Non-Null Value
ROW 1083: has 28 Null-Value and 0 Non-Null Value
ROW 1084: has 28 Null-Value and 0 Non-Null Value
ROW 1085: has 28 Null-Value and 0 Non-Null Value
ROW 1086: has 28 Null-Value and 0 Non-Null Value
ROW 1087: has 28 Null-Value and 0 Non-Null Value
ROW 1088: has 28 Null-Value and 0 Non-Null Value
ROW 1089: has 28 Null-Value and 0 Non-Null Value
ROW 1090: has 28 Null-Value and 0 Non-Null Value
ROW 1091: has 28 Null-Value and 0 Non-Null Value
ROW 1092: has 28 Null-Value and 0 Non-Null Value
ROW 1093: has 28 Null-Value and 0 Non-Null Value
ROW 1094: has 28 Null-Value and 0 Non-Null Value
ROW 1095: has 28 Null-Value and 0 Non-Null Value
ROW 1096: has 28 Null-Value and 0 Non-Null Value
ROW 1097: has 28 Null-Value and 0 Non-Null Value
ROW 1098: has 28 Null-Value and 0 Non-Null Value
ROW 1099: has 27 Null-Value and 1 Non-Null Value
ROW 1100: has 28 Null-Value and 0 Non-Null Value
ROW 1101: has 28 Null-Value and 0 Non-Null Value
ROW 1102: has 28 Null-Value and 0 Non-Null Value
ROW 1103: has 28 Null-Value and 0 Non-Null Value
ROW 1104: has 28 Null-Value and 0 Non-Null Value
ROW 1105: has 28 Null-Value and 0 Non-Null Value
ROW 1106: has 28 Null-Value and 0 Non-Null Value
ROW 1107: has 28 Null-Value and 0 Non-Null Value
ROW 1108: has 28 Null-Value and 0 Non-Null Value
ROW 1109: has 28 Null-Value and 0 Non-Null Value
ROW 1110: has 28 Null-Value and 0 Non-Null Value
ROW 1111: has 28 Null-Value and 0 Non-Null Value
ROW 1112: has 28 Null-Value and 0 Non-Null Value
ROW 1113: has 28 Null-Value and 0 Non-Null Value
ROW 1114: has 28 Null-Value and 0 Non-Null Value
ROW 1115: has 28 Null-Value and 0 Non-Null Value
ROW 1116: has 28 Null-Value and 0 Non-Null Value
ROW 1117: has 28 Null-Value and 0 Non-Null Value
ROW 1118: has 28 Null-Value and 0 Non-Null Value
ROW 1119: has 28 Null-Value and 0 Non-Null Value
ROW 1120: has 28 Null-Value and 0 Non-Null Value
ROW 1121: has 28 Null-Value and 0 Non-Null Value
ROW 1122: has 28 Null-Value and 0 Non-Null Value
ROW 1123: has 28 Null-Value and 0 Non-Null Value
ROW 1124: has 28 Null-Value and 0 Non-Null Value
ROW 1125: has 28 Null-Value and 0 Non-Null Value
ROW 1126: has 28 Null-Value and 0 Non-Null Value
ROW 1127: has 28 Null-Value and 0 Non-Null Value
ROW 1128: has 28 Null-Value and 0 Non-Null Value
ROW 1129: has 28 Null-Value and 0 Non-Null Value
ROW 1130: has 28 Null-Value and 0 Non-Null Value
ROW 1131: has 28 Null-Value and 0 Non-Null Value
ROW 1132: has 28 Null-Value and 0 Non-Null Value
ROW 1133: has 23 Null-Value and 5 Non-Null Value
ROW 1134: has 28 Null-Value and 0 Non-Null Value
ROW 1135: has 28 Null-Value and 0 Non-Null Value
ROW 1136: has 26 Null-Value and 2 Non-Null Value
ROW 1137: has 28 Null-Value and 0 Non-Null Value
ROW 1138: has 28 Null-Value and 0 Non-Null Value
ROW 1139: has 28 Null-Value and 0 Non-Null Value
ROW 1140: has 28 Null-Value and 0 Non-Null Value
ROW 1141: has 28 Null-Value and 0 Non-Null Value
ROW 1142: has 28 Null-Value and 0 Non-Null Value
ROW 1143: has 28 Null-Value and 0 Non-Null Value
ROW 1144: has 28 Null-Value and 0 Non-Null Value
ROW 1145: has 28 Null-Value and 0 Non-Null Value
ROW 1146: has 28 Null-Value and 0 Non-Null Value
ROW 1147: has 28 Null-Value and 0 Non-Null Value
ROW 1148: has 28 Null-Value and 0 Non-Null Value
ROW 1149: has 28 Null-Value and 0 Non-Null Value
ROW 1150: has 28 Null-Value and 0 Non-Null Value
ROW 1151: has 28 Null-Value and 0 Non-Null Value
ROW 1152: has 28 Null-Value and 0 Non-Null Value
ROW 1153: has 28 Null-Value and 0 Non-Null Value
ROW 1154: has 28 Null-Value and 0 Non-Null Value
ROW 1155: has 28 Null-Value and 0 Non-Null Value
ROW 1156: has 28 Null-Value and 0 Non-Null Value
ROW 1157: has 28 Null-Value and 0 Non-Null Value
ROW 1158: has 28 Null-Value and 0 Non-Null Value
ROW 1159: has 28 Null-Value and 0 Non-Null Value
ROW 1160: has 28 Null-Value and 0 Non-Null Value
ROW 1161: has 28 Null-Value and 0 Non-Null Value
ROW 1162: has 28 Null-Value and 0 Non-Null Value
ROW 1163: has 28 Null-Value and 0 Non-Null Value
ROW 1164: has 28 Null-Value and 0 Non-Null Value
ROW 1165: has 28 Null-Value and 0 Non-Null Value
ROW 1166: has 28 Null-Value and 0 Non-Null Value
ROW 1167: has 28 Null-Value and 0 Non-Null Value
ROW 1168: has 28 Null-Value and 0 Non-Null Value
ROW 1169: has 28 Null-Value and 0 Non-Null Value
ROW 1170: has 28 Null-Value and 0 Non-Null Value
ROW 1171: has 28 Null-Value and 0 Non-Null Value
ROW 1172: has 28 Null-Value and 0 Non-Null Value
ROW 1173: has 28 Null-Value and 0 Non-Null Value
ROW 1174: has 28 Null-Value and 0 Non-Null Value
ROW 1175: has 23 Null-Value and 5 Non-Null Value
ROW 1176: has 28 Null-Value and 0 Non-Null Value
ROW 1177: has 28 Null-Value and 0 Non-Null Value
ROW 1178: has 24 Null-Value and 4 Non-Null Value
ROW 1179: has 28 Null-Value and 0 Non-Null Value
ROW 1180: has 28 Null-Value and 0 Non-Null Value
ROW 1181: has 28 Null-Value and 0 Non-Null Value
ROW 1182: has 28 Null-Value and 0 Non-Null Value
ROW 1183: has 28 Null-Value and 0 Non-Null Value
ROW 1184: has 28 Null-Value and 0 Non-Null Value
ROW 1185: has 28 Null-Value and 0 Non-Null Value
ROW 1186: has 28 Null-Value and 0 Non-Null Value
ROW 1187: has 28 Null-Value and 0 Non-Null Value
ROW 1188: has 28 Null-Value and 0 Non-Null Value
ROW 1189: has 28 Null-Value and 0 Non-Null Value
ROW 1190: has 28 Null-Value and 0 Non-Null Value
ROW 1191: has 28 Null-Value and 0 Non-Null Value
ROW 1192: has 28 Null-Value and 0 Non-Null Value
ROW 1193: has 28 Null-Value and 0 Non-Null Value
ROW 1194: has 28 Null-Value and 0 Non-Null Value
ROW 1195: has 28 Null-Value and 0 Non-Null Value
ROW 1196: has 28 Null-Value and 0 Non-Null Value
ROW 1197: has 28 Null-Value and 0 Non-Null Value
ROW 1198: has 28 Null-Value and 0 Non-Null Value
ROW 1199: has 28 Null-Value and 0 Non-Null Value
ROW 1200: has 28 Null-Value and 0 Non-Null Value
ROW 1201: has 28 Null-Value and 0 Non-Null Value
ROW 1202: has 28 Null-Value and 0 Non-Null Value
ROW 1203: has 28 Null-Value and 0 Non-Null Value
ROW 1204: has 28 Null-Value and 0 Non-Null Value
ROW 1205: has 28 Null-Value and 0 Non-Null Value
ROW 1206: has 28 Null-Value and 0 Non-Null Value
ROW 1207: has 28 Null-Value and 0 Non-Null Value
ROW 1208: has 28 Null-Value and 0 Non-Null Value
ROW 1209: has 28 Null-Value and 0 Non-Null Value
ROW 1210: has 28 Null-Value and 0 Non-Null Value
ROW 1211: has 28 Null-Value and 0 Non-Null Value
ROW 1212: has 28 Null-Value and 0 Non-Null Value
ROW 1213: has 28 Null-Value and 0 Non-Null Value
ROW 1214: has 28 Null-Value and 0 Non-Null Value
ROW 1215: has 28 Null-Value and 0 Non-Null Value
ROW 1216: has 28 Null-Value and 0 Non-Null Value
ROW 1217: has 28 Null-Value and 0 Non-Null Value
ROW 1218: has 28 Null-Value and 0 Non-Null Value
ROW 1219: has 28 Null-Value and 0 Non-Null Value
ROW 1220: has 28 Null-Value and 0 Non-Null Value
ROW 1221: has 28 Null-Value and 0 Non-Null Value
ROW 1222: has 28 Null-Value and 0 Non-Null Value
ROW 1223: has 28 Null-Value and 0 Non-Null Value
ROW 1224: has 28 Null-Value and 0 Non-Null Value
ROW 1225: has 28 Null-Value and 0 Non-Null Value
ROW 1226: has 27 Null-Value and 1 Non-Null Value
ROW 1227: has 28 Null-Value and 0 Non-Null Value
ROW 1228: has 28 Null-Value and 0 Non-Null Value
ROW 1229: has 28 Null-Value and 0 Non-Null Value
ROW 1230: has 28 Null-Value and 0 Non-Null Value
ROW 1231: has 28 Null-Value and 0 Non-Null Value
ROW 1232: has 28 Null-Value and 0 Non-Null Value
ROW 1233: has 28 Null-Value and 0 Non-Null Value
ROW 1234: has 28 Null-Value and 0 Non-Null Value
ROW 1235: has 28 Null-Value and 0 Non-Null Value
ROW 1236: has 28 Null-Value and 0 Non-Null Value
ROW 1237: has 28 Null-Value and 0 Non-Null Value
ROW 1238: has 28 Null-Value and 0 Non-Null Value
ROW 1239: has 28 Null-Value and 0 Non-Null Value
ROW 1240: has 28 Null-Value and 0 Non-Null Value
ROW 1241: has 28 Null-Value and 0 Non-Null Value
ROW 1242: has 28 Null-Value and 0 Non-Null Value
ROW 1243: has 28 Null-Value and 0 Non-Null Value
ROW 1244: has 28 Null-Value and 0 Non-Null Value
ROW 1245: has 28 Null-Value and 0 Non-Null Value
ROW 1246: has 28 Null-Value and 0 Non-Null Value
ROW 1247: has 28 Null-Value and 0 Non-Null Value
ROW 1248: has 28 Null-Value and 0 Non-Null Value
ROW 1249: has 28 Null-Value and 0 Non-Null Value
ROW 1250: has 28 Null-Value and 0 Non-Null Value
ROW 1251: has 28 Null-Value and 0 Non-Null Value
ROW 1252: has 28 Null-Value and 0 Non-Null Value
ROW 1253: has 27 Null-Value and 1 Non-Null Value
ROW 1254: has 28 Null-Value and 0 Non-Null Value
ROW 1255: has 28 Null-Value and 0 Non-Null Value
ROW 1256: has 28 Null-Value and 0 Non-Null Value
ROW 1257: has 28 Null-Value and 0 Non-Null Value
ROW 1258: has 28 Null-Value and 0 Non-Null Value
ROW 1259: has 28 Null-Value and 0 Non-Null Value
ROW 1260: has 28 Null-Value and 0 Non-Null Value
ROW 1261: has 28 Null-Value and 0 Non-Null Value
ROW 1262: has 28 Null-Value and 0 Non-Null Value
ROW 1263: has 28 Null-Value and 0 Non-Null Value
ROW 1264: has 28 Null-Value and 0 Non-Null Value
ROW 1265: has 23 Null-Value and 5 Non-Null Value
ROW 1266: has 28 Null-Value and 0 Non-Null Value
ROW 1267: has 28 Null-Value and 0 Non-Null Value
ROW 1268: has 28 Null-Value and 0 Non-Null Value
ROW 1269: has 28 Null-Value and 0 Non-Null Value
ROW 1270: has 28 Null-Value and 0 Non-Null Value
ROW 1271: has 28 Null-Value and 0 Non-Null Value
ROW 1272: has 28 Null-Value and 0 Non-Null Value
ROW 1273: has 28 Null-Value and 0 Non-Null Value
ROW 1274: has 28 Null-Value and 0 Non-Null Value
ROW 1275: has 28 Null-Value and 0 Non-Null Value
ROW 1276: has 28 Null-Value and 0 Non-Null Value
ROW 1277: has 28 Null-Value and 0 Non-Null Value
ROW 1278: has 28 Null-Value and 0 Non-Null Value
ROW 1279: has 28 Null-Value and 0 Non-Null Value
ROW 1280: has 28 Null-Value and 0 Non-Null Value
ROW 1281: has 28 Null-Value and 0 Non-Null Value
ROW 1282: has 28 Null-Value and 0 Non-Null Value
ROW 1283: has 28 Null-Value and 0 Non-Null Value
ROW 1284: has 28 Null-Value and 0 Non-Null Value
ROW 1285: has 28 Null-Value and 0 Non-Null Value
ROW 1286: has 28 Null-Value and 0 Non-Null Value
ROW 1287: has 28 Null-Value and 0 Non-Null Value
ROW 1288: has 28 Null-Value and 0 Non-Null Value
ROW 1289: has 28 Null-Value and 0 Non-Null Value
ROW 1290: has 28 Null-Value and 0 Non-Null Value
ROW 1291: has 28 Null-Value and 0 Non-Null Value
ROW 1292: has 28 Null-Value and 0 Non-Null Value
ROW 1293: has 28 Null-Value and 0 Non-Null Value
ROW 1294: has 28 Null-Value and 0 Non-Null Value
ROW 1295: has 28 Null-Value and 0 Non-Null Value
ROW 1296: has 28 Null-Value and 0 Non-Null Value
ROW 1297: has 28 Null-Value and 0 Non-Null Value
ROW 1298: has 28 Null-Value and 0 Non-Null Value
ROW 1299: has 28 Null-Value and 0 Non-Null Value
ROW 1300: has 28 Null-Value and 0 Non-Null Value
ROW 1301: has 28 Null-Value and 0 Non-Null Value
ROW 1302: has 28 Null-Value and 0 Non-Null Value
ROW 1303: has 28 Null-Value and 0 Non-Null Value
ROW 1304: has 28 Null-Value and 0 Non-Null Value
ROW 1305: has 28 Null-Value and 0 Non-Null Value
ROW 1306: has 28 Null-Value and 0 Non-Null Value
ROW 1307: has 27 Null-Value and 1 Non-Null Value
ROW 1308: has 28 Null-Value and 0 Non-Null Value
ROW 1309: has 28 Null-Value and 0 Non-Null Value
ROW 1310: has 28 Null-Value and 0 Non-Null Value
ROW 1311: has 28 Null-Value and 0 Non-Null Value
ROW 1312: has 28 Null-Value and 0 Non-Null Value
ROW 1313: has 28 Null-Value and 0 Non-Null Value
ROW 1314: has 28 Null-Value and 0 Non-Null Value
ROW 1315: has 28 Null-Value and 0 Non-Null Value
ROW 1316: has 28 Null-Value and 0 Non-Null Value
ROW 1317: has 28 Null-Value and 0 Non-Null Value
ROW 1318: has 28 Null-Value and 0 Non-Null Value
ROW 1319: has 28 Null-Value and 0 Non-Null Value
ROW 1320: has 28 Null-Value and 0 Non-Null Value
ROW 1321: has 28 Null-Value and 0 Non-Null Value
ROW 1322: has 28 Null-Value and 0 Non-Null Value
ROW 1323: has 28 Null-Value and 0 Non-Null Value
ROW 1324: has 28 Null-Value and 0 Non-Null Value
ROW 1325: has 28 Null-Value and 0 Non-Null Value
ROW 1326: has 27 Null-Value and 1 Non-Null Value
ROW 1327: has 27 Null-Value and 1 Non-Null Value
ROW 1328: has 28 Null-Value and 0 Non-Null Value
ROW 1329: has 27 Null-Value and 1 Non-Null Value
ROW 1330: has 28 Null-Value and 0 Non-Null Value
ROW 1331: has 27 Null-Value and 1 Non-Null Value
ROW 1332: has 28 Null-Value and 0 Non-Null Value
ROW 1333: has 28 Null-Value and 0 Non-Null Value
ROW 1334: has 28 Null-Value and 0 Non-Null Value
ROW 1335: has 28 Null-Value and 0 Non-Null Value
ROW 1336: has 28 Null-Value and 0 Non-Null Value
ROW 1337: has 28 Null-Value and 0 Non-Null Value
ROW 1338: has 28 Null-Value and 0 Non-Null Value
ROW 1339: has 28 Null-Value and 0 Non-Null Value
ROW 1340: has 28 Null-Value and 0 Non-Null Value
ROW 1341: has 28 Null-Value and 0 Non-Null Value
ROW 1342: has 28 Null-Value and 0 Non-Null Value
ROW 1343: has 28 Null-Value and 0 Non-Null Value
ROW 1344: has 28 Null-Value and 0 Non-Null Value
ROW 1345: has 28 Null-Value and 0 Non-Null Value
ROW 1346: has 23 Null-Value and 5 Non-Null Value
ROW 1347: has 24 Null-Value and 4 Non-Null Value
ROW 1348: has 28 Null-Value and 0 Non-Null Value
ROW 1349: has 28 Null-Value and 0 Non-Null Value
ROW 1350: has 28 Null-Value and 0 Non-Null Value
ROW 1351: has 28 Null-Value and 0 Non-Null Value
ROW 1352: has 28 Null-Value and 0 Non-Null Value
ROW 1353: has 28 Null-Value and 0 Non-Null Value
ROW 1354: has 28 Null-Value and 0 Non-Null Value
ROW 1355: has 28 Null-Value and 0 Non-Null Value
ROW 1356: has 28 Null-Value and 0 Non-Null Value
ROW 1357: has 28 Null-Value and 0 Non-Null Value
ROW 1358: has 28 Null-Value and 0 Non-Null Value
ROW 1359: has 28 Null-Value and 0 Non-Null Value
ROW 1360: has 28 Null-Value and 0 Non-Null Value
ROW 1361: has 28 Null-Value and 0 Non-Null Value
ROW 1362: has 28 Null-Value and 0 Non-Null Value
ROW 1363: has 28 Null-Value and 0 Non-Null Value
ROW 1364: has 28 Null-Value and 0 Non-Null Value
ROW 1365: has 27 Null-Value and 1 Non-Null Value
ROW 1366: has 28 Null-Value and 0 Non-Null Value
ROW 1367: has 28 Null-Value and 0 Non-Null Value
ROW 1368: has 28 Null-Value and 0 Non-Null Value
ROW 1369: has 28 Null-Value and 0 Non-Null Value
ROW 1370: has 28 Null-Value and 0 Non-Null Value
ROW 1371: has 28 Null-Value and 0 Non-Null Value
ROW 1372: has 28 Null-Value and 0 Non-Null Value
ROW 1373: has 28 Null-Value and 0 Non-Null Value
ROW 1374: has 28 Null-Value and 0 Non-Null Value
ROW 1375: has 28 Null-Value and 0 Non-Null Value
ROW 1376: has 28 Null-Value and 0 Non-Null Value
ROW 1377: has 28 Null-Value and 0 Non-Null Value
ROW 1378: has 28 Null-Value and 0 Non-Null Value
ROW 1379: has 28 Null-Value and 0 Non-Null Value
ROW 1380: has 28 Null-Value and 0 Non-Null Value
ROW 1381: has 28 Null-Value and 0 Non-Null Value
ROW 1382: has 25 Null-Value and 3 Non-Null Value
ROW 1383: has 28 Null-Value and 0 Non-Null Value
ROW 1384: has 28 Null-Value and 0 Non-Null Value
ROW 1385: has 28 Null-Value and 0 Non-Null Value
ROW 1386: has 28 Null-Value and 0 Non-Null Value
ROW 1387: has 28 Null-Value and 0 Non-Null Value
ROW 1388: has 28 Null-Value and 0 Non-Null Value
ROW 1389: has 28 Null-Value and 0 Non-Null Value
ROW 1390: has 28 Null-Value and 0 Non-Null Value
ROW 1391: has 28 Null-Value and 0 Non-Null Value
ROW 1392: has 28 Null-Value and 0 Non-Null Value
ROW 1393: has 28 Null-Value and 0 Non-Null Value
ROW 1394: has 28 Null-Value and 0 Non-Null Value
ROW 1395: has 28 Null-Value and 0 Non-Null Value
ROW 1396: has 28 Null-Value and 0 Non-Null Value
ROW 1397: has 28 Null-Value and 0 Non-Null Value
ROW 1398: has 28 Null-Value and 0 Non-Null Value
ROW 1399: has 28 Null-Value and 0 Non-Null Value
ROW 1400: has 28 Null-Value and 0 Non-Null Value
ROW 1401: has 28 Null-Value and 0 Non-Null Value
ROW 1402: has 28 Null-Value and 0 Non-Null Value
ROW 1403: has 28 Null-Value and 0 Non-Null Value
ROW 1404: has 22 Null-Value and 6 Non-Null Value
ROW 1405: has 28 Null-Value and 0 Non-Null Value
ROW 1406: has 28 Null-Value and 0 Non-Null Value
ROW 1407: has 28 Null-Value and 0 Non-Null Value
ROW 1408: has 28 Null-Value and 0 Non-Null Value
ROW 1409: has 28 Null-Value and 0 Non-Null Value
ROW 1410: has 28 Null-Value and 0 Non-Null Value
ROW 1411: has 28 Null-Value and 0 Non-Null Value
ROW 1412: has 28 Null-Value and 0 Non-Null Value
ROW 1413: has 28 Null-Value and 0 Non-Null Value
ROW 1414: has 28 Null-Value and 0 Non-Null Value
ROW 1415: has 28 Null-Value and 0 Non-Null Value
ROW 1416: has 28 Null-Value and 0 Non-Null Value
ROW 1417: has 28 Null-Value and 0 Non-Null Value
ROW 1418: has 28 Null-Value and 0 Non-Null Value
ROW 1419: has 28 Null-Value and 0 Non-Null Value
ROW 1420: has 28 Null-Value and 0 Non-Null Value
ROW 1421: has 28 Null-Value and 0 Non-Null Value
ROW 1422: has 28 Null-Value and 0 Non-Null Value
ROW 1423: has 28 Null-Value and 0 Non-Null Value
ROW 1424: has 28 Null-Value and 0 Non-Null Value
ROW 1425: has 28 Null-Value and 0 Non-Null Value
ROW 1426: has 28 Null-Value and 0 Non-Null Value
ROW 1427: has 28 Null-Value and 0 Non-Null Value
ROW 1428: has 28 Null-Value and 0 Non-Null Value
ROW 1429: has 28 Null-Value and 0 Non-Null Value
ROW 1430: has 28 Null-Value and 0 Non-Null Value
ROW 1431: has 28 Null-Value and 0 Non-Null Value
ROW 1432: has 28 Null-Value and 0 Non-Null Value
ROW 1433: has 28 Null-Value and 0 Non-Null Value
ROW 1434: has 28 Null-Value and 0 Non-Null Value
ROW 1435: has 28 Null-Value and 0 Non-Null Value
ROW 1436: has 28 Null-Value and 0 Non-Null Value
ROW 1437: has 28 Null-Value and 0 Non-Null Value
ROW 1438: has 28 Null-Value and 0 Non-Null Value
ROW 1439: has 28 Null-Value and 0 Non-Null Value
ROW 1440: has 28 Null-Value and 0 Non-Null Value
ROW 1441: has 28 Null-Value and 0 Non-Null Value
ROW 1442: has 28 Null-Value and 0 Non-Null Value
ROW 1443: has 28 Null-Value and 0 Non-Null Value
ROW 1444: has 21 Null-Value and 7 Non-Null Value
ROW 1445: has 28 Null-Value and 0 Non-Null Value
ROW 1446: has 26 Null-Value and 2 Non-Null Value
ROW 1447: has 28 Null-Value and 0 Non-Null Value
ROW 1448: has 28 Null-Value and 0 Non-Null Value
ROW 1449: has 28 Null-Value and 0 Non-Null Value
ROW 1450: has 28 Null-Value and 0 Non-Null Value
ROW 1451: has 28 Null-Value and 0 Non-Null Value
ROW 1452: has 28 Null-Value and 0 Non-Null Value
ROW 1453: has 28 Null-Value and 0 Non-Null Value
ROW 1454: has 28 Null-Value and 0 Non-Null Value
ROW 1455: has 28 Null-Value and 0 Non-Null Value
ROW 1456: has 28 Null-Value and 0 Non-Null Value
ROW 1457: has 28 Null-Value and 0 Non-Null Value
ROW 1458: has 28 Null-Value and 0 Non-Null Value
ROW 1459: has 27 Null-Value and 1 Non-Null Value
ROW 1460: has 28 Null-Value and 0 Non-Null Value
ROW 1461: has 28 Null-Value and 0 Non-Null Value
ROW 1462: has 28 Null-Value and 0 Non-Null Value
ROW 1463: has 27 Null-Value and 1 Non-Null Value
ROW 1464: has 28 Null-Value and 0 Non-Null Value
ROW 1465: has 28 Null-Value and 0 Non-Null Value
ROW 1466: has 28 Null-Value and 0 Non-Null Value
ROW 1467: has 28 Null-Value and 0 Non-Null Value
ROW 1468: has 28 Null-Value and 0 Non-Null Value
ROW 1469: has 28 Null-Value and 0 Non-Null Value
ROW 1470: has 28 Null-Value and 0 Non-Null Value
ROW 1471: has 28 Null-Value and 0 Non-Null Value
ROW 1472: has 28 Null-Value and 0 Non-Null Value
ROW 1473: has 28 Null-Value and 0 Non-Null Value
ROW 1474: has 28 Null-Value and 0 Non-Null Value
ROW 1475: has 28 Null-Value and 0 Non-Null Value
ROW 1476: has 28 Null-Value and 0 Non-Null Value
ROW 1477: has 28 Null-Value and 0 Non-Null Value
ROW 1478: has 28 Null-Value and 0 Non-Null Value
ROW 1479: has 28 Null-Value and 0 Non-Null Value
ROW 1480: has 28 Null-Value and 0 Non-Null Value
ROW 1481: has 27 Null-Value and 1 Non-Null Value
ROW 1482: has 27 Null-Value and 1 Non-Null Value
ROW 1483: has 28 Null-Value and 0 Non-Null Value
ROW 1484: has 28 Null-Value and 0 Non-Null Value
ROW 1485: has 28 Null-Value and 0 Non-Null Value
ROW 1486: has 28 Null-Value and 0 Non-Null Value
ROW 1487: has 28 Null-Value and 0 Non-Null Value
ROW 1488: has 28 Null-Value and 0 Non-Null Value
ROW 1489: has 28 Null-Value and 0 Non-Null Value
ROW 1490: has 28 Null-Value and 0 Non-Null Value
ROW 1491: has 28 Null-Value and 0 Non-Null Value
ROW 1492: has 28 Null-Value and 0 Non-Null Value
ROW 1493: has 28 Null-Value and 0 Non-Null Value
ROW 1494: has 28 Null-Value and 0 Non-Null Value
ROW 1495: has 28 Null-Value and 0 Non-Null Value
ROW 1496: has 28 Null-Value and 0 Non-Null Value
ROW 1497: has 28 Null-Value and 0 Non-Null Value
ROW 1498: has 28 Null-Value and 0 Non-Null Value
ROW 1499: has 23 Null-Value and 5 Non-Null Value
ROW 1500: has 28 Null-Value and 0 Non-Null Value
ROW 1501: has 28 Null-Value and 0 Non-Null Value
ROW 1502: has 28 Null-Value and 0 Non-Null Value
ROW 1503: has 28 Null-Value and 0 Non-Null Value
ROW 1504: has 27 Null-Value and 1 Non-Null Value
ROW 1505: has 27 Null-Value and 1 Non-Null Value
ROW 1506: has 28 Null-Value and 0 Non-Null Value
ROW 1507: has 27 Null-Value and 1 Non-Null Value
ROW 1508: has 25 Null-Value and 3 Non-Null Value
ROW 1509: has 27 Null-Value and 1 Non-Null Value
ROW 1510: has 22 Null-Value and 6 Non-Null Value
ROW 1511: has 28 Null-Value and 0 Non-Null Value
ROW 1512: has 28 Null-Value and 0 Non-Null Value
ROW 1513: has 28 Null-Value and 0 Non-Null Value
ROW 1514: has 28 Null-Value and 0 Non-Null Value
ROW 1515: has 28 Null-Value and 0 Non-Null Value
ROW 1516: has 28 Null-Value and 0 Non-Null Value
ROW 1517: has 28 Null-Value and 0 Non-Null Value
ROW 1518: has 28 Null-Value and 0 Non-Null Value
ROW 1519: has 28 Null-Value and 0 Non-Null Value
ROW 1520: has 28 Null-Value and 0 Non-Null Value
ROW 1521: has 28 Null-Value and 0 Non-Null Value
ROW 1522: has 28 Null-Value and 0 Non-Null Value
ROW 1523: has 27 Null-Value and 1 Non-Null Value
ROW 1524: has 28 Null-Value and 0 Non-Null Value
ROW 1525: has 28 Null-Value and 0 Non-Null Value
ROW 1526: has 28 Null-Value and 0 Non-Null Value
ROW 1527: has 26 Null-Value and 2 Non-Null Value
ROW 1528: has 28 Null-Value and 0 Non-Null Value
ROW 1529: has 28 Null-Value and 0 Non-Null Value
ROW 1530: has 28 Null-Value and 0 Non-Null Value
ROW 1531: has 28 Null-Value and 0 Non-Null Value
ROW 1532: has 28 Null-Value and 0 Non-Null Value
ROW 1533: has 28 Null-Value and 0 Non-Null Value
ROW 1534: has 28 Null-Value and 0 Non-Null Value
ROW 1535: has 28 Null-Value and 0 Non-Null Value
ROW 1536: has 28 Null-Value and 0 Non-Null Value
ROW 1537: has 28 Null-Value and 0 Non-Null Value
ROW 1538: has 28 Null-Value and 0 Non-Null Value
ROW 1539: has 27 Null-Value and 1 Non-Null Value
ROW 1540: has 28 Null-Value and 0 Non-Null Value
ROW 1541: has 28 Null-Value and 0 Non-Null Value
ROW 1542: has 28 Null-Value and 0 Non-Null Value
ROW 1543: has 28 Null-Value and 0 Non-Null Value
ROW 1544: has 28 Null-Value and 0 Non-Null Value
ROW 1545: has 28 Null-Value and 0 Non-Null Value
ROW 1546: has 28 Null-Value and 0 Non-Null Value
ROW 1547: has 28 Null-Value and 0 Non-Null Value
ROW 1548: has 28 Null-Value and 0 Non-Null Value
ROW 1549: has 28 Null-Value and 0 Non-Null Value
ROW 1550: has 28 Null-Value and 0 Non-Null Value
ROW 1551: has 28 Null-Value and 0 Non-Null Value
ROW 1552: has 28 Null-Value and 0 Non-Null Value
ROW 1553: has 28 Null-Value and 0 Non-Null Value
ROW 1554: has 28 Null-Value and 0 Non-Null Value
ROW 1555: has 28 Null-Value and 0 Non-Null Value
ROW 1556: has 27 Null-Value and 1 Non-Null Value
ROW 1557: has 28 Null-Value and 0 Non-Null Value
ROW 1558: has 28 Null-Value and 0 Non-Null Value
ROW 1559: has 28 Null-Value and 0 Non-Null Value
ROW 1560: has 28 Null-Value and 0 Non-Null Value
ROW 1561: has 28 Null-Value and 0 Non-Null Value
ROW 1562: has 28 Null-Value and 0 Non-Null Value
ROW 1563: has 28 Null-Value and 0 Non-Null Value
ROW 1564: has 28 Null-Value and 0 Non-Null Value
ROW 1565: has 28 Null-Value and 0 Non-Null Value
ROW 1566: has 28 Null-Value and 0 Non-Null Value
ROW 1567: has 28 Null-Value and 0 Non-Null Value
ROW 1568: has 28 Null-Value and 0 Non-Null Value
ROW 1569: has 28 Null-Value and 0 Non-Null Value
ROW 1570: has 27 Null-Value and 1 Non-Null Value
ROW 1571: has 28 Null-Value and 0 Non-Null Value
ROW 1572: has 28 Null-Value and 0 Non-Null Value
ROW 1573: has 28 Null-Value and 0 Non-Null Value
ROW 1574: has 28 Null-Value and 0 Non-Null Value
ROW 1575: has 28 Null-Value and 0 Non-Null Value
ROW 1576: has 28 Null-Value and 0 Non-Null Value
ROW 1577: has 28 Null-Value and 0 Non-Null Value
ROW 1578: has 28 Null-Value and 0 Non-Null Value
ROW 1579: has 28 Null-Value and 0 Non-Null Value
ROW 1580: has 28 Null-Value and 0 Non-Null Value
ROW 1581: has 28 Null-Value and 0 Non-Null Value
ROW 1582: has 28 Null-Value and 0 Non-Null Value
ROW 1583: has 28 Null-Value and 0 Non-Null Value
ROW 1584: has 28 Null-Value and 0 Non-Null Value
ROW 1585: has 28 Null-Value and 0 Non-Null Value
ROW 1586: has 28 Null-Value and 0 Non-Null Value
ROW 1587: has 28 Null-Value and 0 Non-Null Value
ROW 1588: has 28 Null-Value and 0 Non-Null Value
ROW 1589: has 28 Null-Value and 0 Non-Null Value
ROW 1590: has 28 Null-Value and 0 Non-Null Value
ROW 1591: has 28 Null-Value and 0 Non-Null Value
ROW 1592: has 28 Null-Value and 0 Non-Null Value
ROW 1593: has 28 Null-Value and 0 Non-Null Value
ROW 1594: has 28 Null-Value and 0 Non-Null Value
ROW 1595: has 28 Null-Value and 0 Non-Null Value
ROW 1596: has 28 Null-Value and 0 Non-Null Value
ROW 1597: has 28 Null-Value and 0 Non-Null Value
ROW 1598: has 28 Null-Value and 0 Non-Null Value
ROW 1599: has 28 Null-Value and 0 Non-Null Value
ROW 1600: has 28 Null-Value and 0 Non-Null Value
ROW 1601: has 28 Null-Value and 0 Non-Null Value
ROW 1602: has 28 Null-Value and 0 Non-Null Value
ROW 1603: has 28 Null-Value and 0 Non-Null Value
ROW 1604: has 28 Null-Value and 0 Non-Null Value
ROW 1605: has 28 Null-Value and 0 Non-Null Value
ROW 1606: has 28 Null-Value and 0 Non-Null Value
ROW 1607: has 28 Null-Value and 0 Non-Null Value
ROW 1608: has 28 Null-Value and 0 Non-Null Value
ROW 1609: has 28 Null-Value and 0 Non-Null Value
ROW 1610: has 28 Null-Value and 0 Non-Null Value
ROW 1611: has 28 Null-Value and 0 Non-Null Value
ROW 1612: has 28 Null-Value and 0 Non-Null Value
ROW 1613: has 28 Null-Value and 0 Non-Null Value
ROW 1614: has 28 Null-Value and 0 Non-Null Value
ROW 1615: has 28 Null-Value and 0 Non-Null Value
ROW 1616: has 28 Null-Value and 0 Non-Null Value
ROW 1617: has 28 Null-Value and 0 Non-Null Value
ROW 1618: has 28 Null-Value and 0 Non-Null Value
ROW 1619: has 28 Null-Value and 0 Non-Null Value
ROW 1620: has 23 Null-Value and 5 Non-Null Value
ROW 1621: has 28 Null-Value and 0 Non-Null Value
ROW 1622: has 28 Null-Value and 0 Non-Null Value
ROW 1623: has 28 Null-Value and 0 Non-Null Value
ROW 1624: has 28 Null-Value and 0 Non-Null Value
ROW 1625: has 28 Null-Value and 0 Non-Null Value
ROW 1626: has 28 Null-Value and 0 Non-Null Value
ROW 1627: has 28 Null-Value and 0 Non-Null Value
ROW 1628: has 28 Null-Value and 0 Non-Null Value
ROW 1629: has 28 Null-Value and 0 Non-Null Value
ROW 1630: has 28 Null-Value and 0 Non-Null Value
ROW 1631: has 28 Null-Value and 0 Non-Null Value
ROW 1632: has 28 Null-Value and 0 Non-Null Value
ROW 1633: has 28 Null-Value and 0 Non-Null Value
ROW 1634: has 28 Null-Value and 0 Non-Null Value
ROW 1635: has 28 Null-Value and 0 Non-Null Value
ROW 1636: has 28 Null-Value and 0 Non-Null Value
ROW 1637: has 27 Null-Value and 1 Non-Null Value
ROW 1638: has 28 Null-Value and 0 Non-Null Value
ROW 1639: has 28 Null-Value and 0 Non-Null Value
ROW 1640: has 28 Null-Value and 0 Non-Null Value
ROW 1641: has 27 Null-Value and 1 Non-Null Value
ROW 1642: has 28 Null-Value and 0 Non-Null Value
ROW 1643: has 27 Null-Value and 1 Non-Null Value
ROW 1644: has 28 Null-Value and 0 Non-Null Value
ROW 1645: has 28 Null-Value and 0 Non-Null Value
ROW 1646: has 28 Null-Value and 0 Non-Null Value
ROW 1647: has 28 Null-Value and 0 Non-Null Value
ROW 1648: has 28 Null-Value and 0 Non-Null Value
ROW 1649: has 28 Null-Value and 0 Non-Null Value
ROW 1650: has 28 Null-Value and 0 Non-Null Value
ROW 1651: has 28 Null-Value and 0 Non-Null Value
ROW 1652: has 28 Null-Value and 0 Non-Null Value
ROW 1653: has 28 Null-Value and 0 Non-Null Value
ROW 1654: has 28 Null-Value and 0 Non-Null Value
ROW 1655: has 28 Null-Value and 0 Non-Null Value
ROW 1656: has 28 Null-Value and 0 Non-Null Value
ROW 1657: has 28 Null-Value and 0 Non-Null Value
ROW 1658: has 28 Null-Value and 0 Non-Null Value
ROW 1659: has 23 Null-Value and 5 Non-Null Value
ROW 1660: has 28 Null-Value and 0 Non-Null Value
ROW 1661: has 28 Null-Value and 0 Non-Null Value
ROW 1662: has 28 Null-Value and 0 Non-Null Value
ROW 1663: has 28 Null-Value and 0 Non-Null Value
ROW 1664: has 23 Null-Value and 5 Non-Null Value
ROW 1665: has 28 Null-Value and 0 Non-Null Value
ROW 1666: has 28 Null-Value and 0 Non-Null Value
ROW 1667: has 28 Null-Value and 0 Non-Null Value
ROW 1668: has 28 Null-Value and 0 Non-Null Value
ROW 1669: has 27 Null-Value and 1 Non-Null Value
ROW 1670: has 28 Null-Value and 0 Non-Null Value
ROW 1671: has 28 Null-Value and 0 Non-Null Value
ROW 1672: has 28 Null-Value and 0 Non-Null Value
ROW 1673: has 28 Null-Value and 0 Non-Null Value
ROW 1674: has 28 Null-Value and 0 Non-Null Value
ROW 1675: has 28 Null-Value and 0 Non-Null Value
ROW 1676: has 28 Null-Value and 0 Non-Null Value
ROW 1677: has 28 Null-Value and 0 Non-Null Value
ROW 1678: has 28 Null-Value and 0 Non-Null Value
ROW 1679: has 28 Null-Value and 0 Non-Null Value
ROW 1680: has 28 Null-Value and 0 Non-Null Value
ROW 1681: has 28 Null-Value and 0 Non-Null Value
ROW 1682: has 28 Null-Value and 0 Non-Null Value
ROW 1683: has 28 Null-Value and 0 Non-Null Value
ROW 1684: has 28 Null-Value and 0 Non-Null Value
ROW 1685: has 28 Null-Value and 0 Non-Null Value
ROW 1686: has 28 Null-Value and 0 Non-Null Value
ROW 1687: has 28 Null-Value and 0 Non-Null Value
ROW 1688: has 28 Null-Value and 0 Non-Null Value
ROW 1689: has 28 Null-Value and 0 Non-Null Value
ROW 1690: has 28 Null-Value and 0 Non-Null Value
ROW 1691: has 28 Null-Value and 0 Non-Null Value
ROW 1692: has 28 Null-Value and 0 Non-Null Value
ROW 1693: has 28 Null-Value and 0 Non-Null Value
ROW 1694: has 28 Null-Value and 0 Non-Null Value
ROW 1695: has 28 Null-Value and 0 Non-Null Value
ROW 1696: has 28 Null-Value and 0 Non-Null Value
ROW 1697: has 28 Null-Value and 0 Non-Null Value
ROW 1698: has 28 Null-Value and 0 Non-Null Value
ROW 1699: has 28 Null-Value and 0 Non-Null Value
ROW 1700: has 28 Null-Value and 0 Non-Null Value
ROW 1701: has 28 Null-Value and 0 Non-Null Value
ROW 1702: has 28 Null-Value and 0 Non-Null Value
ROW 1703: has 28 Null-Value and 0 Non-Null Value
ROW 1704: has 28 Null-Value and 0 Non-Null Value
ROW 1705: has 28 Null-Value and 0 Non-Null Value
ROW 1706: has 28 Null-Value and 0 Non-Null Value
ROW 1707: has 28 Null-Value and 0 Non-Null Value
ROW 1708: has 28 Null-Value and 0 Non-Null Value
ROW 1709: has 27 Null-Value and 1 Non-Null Value
ROW 1710: has 22 Null-Value and 6 Non-Null Value
ROW 1711: has 28 Null-Value and 0 Non-Null Value
ROW 1712: has 28 Null-Value and 0 Non-Null Value
ROW 1713: has 28 Null-Value and 0 Non-Null Value
ROW 1714: has 28 Null-Value and 0 Non-Null Value
ROW 1715: has 28 Null-Value and 0 Non-Null Value
ROW 1716: has 28 Null-Value and 0 Non-Null Value
ROW 1717: has 28 Null-Value and 0 Non-Null Value
ROW 1718: has 27 Null-Value and 1 Non-Null Value
ROW 1719: has 28 Null-Value and 0 Non-Null Value
ROW 1720: has 28 Null-Value and 0 Non-Null Value
ROW 1721: has 28 Null-Value and 0 Non-Null Value
ROW 1722: has 28 Null-Value and 0 Non-Null Value
ROW 1723: has 28 Null-Value and 0 Non-Null Value
ROW 1724: has 25 Null-Value and 3 Non-Null Value
ROW 1725: has 27 Null-Value and 1 Non-Null Value
ROW 1726: has 28 Null-Value and 0 Non-Null Value
ROW 1727: has 26 Null-Value and 2 Non-Null Value
ROW 1728: has 27 Null-Value and 1 Non-Null Value
ROW 1729: has 27 Null-Value and 1 Non-Null Value
ROW 1730: has 26 Null-Value and 2 Non-Null Value
ROW 1731: has 25 Null-Value and 3 Non-Null Value
ROW 1732: has 27 Null-Value and 1 Non-Null Value
ROW 1733: has 27 Null-Value and 1 Non-Null Value
ROW 1734: has 28 Null-Value and 0 Non-Null Value
ROW 1735: has 28 Null-Value and 0 Non-Null Value
ROW 1736: has 23 Null-Value and 5 Non-Null Value
ROW 1737: has 28 Null-Value and 0 Non-Null Value
ROW 1738: has 28 Null-Value and 0 Non-Null Value
ROW 1739: has 28 Null-Value and 0 Non-Null Value
ROW 1740: has 27 Null-Value and 1 Non-Null Value
ROW 1741: has 28 Null-Value and 0 Non-Null Value
ROW 1742: has 28 Null-Value and 0 Non-Null Value
ROW 1743: has 28 Null-Value and 0 Non-Null Value
ROW 1744: has 28 Null-Value and 0 Non-Null Value
ROW 1745: has 28 Null-Value and 0 Non-Null Value
ROW 1746: has 28 Null-Value and 0 Non-Null Value
ROW 1747: has 28 Null-Value and 0 Non-Null Value
ROW 1748: has 28 Null-Value and 0 Non-Null Value
ROW 1749: has 28 Null-Value and 0 Non-Null Value
ROW 1750: has 28 Null-Value and 0 Non-Null Value
ROW 1751: has 28 Null-Value and 0 Non-Null Value
ROW 1752: has 27 Null-Value and 1 Non-Null Value
ROW 1753: has 28 Null-Value and 0 Non-Null Value
ROW 1754: has 28 Null-Value and 0 Non-Null Value
ROW 1755: has 28 Null-Value and 0 Non-Null Value
ROW 1756: has 28 Null-Value and 0 Non-Null Value
ROW 1757: has 28 Null-Value and 0 Non-Null Value
ROW 1758: has 28 Null-Value and 0 Non-Null Value
ROW 1759: has 28 Null-Value and 0 Non-Null Value
ROW 1760: has 28 Null-Value and 0 Non-Null Value
ROW 1761: has 27 Null-Value and 1 Non-Null Value
ROW 1762: has 28 Null-Value and 0 Non-Null Value
ROW 1763: has 28 Null-Value and 0 Non-Null Value
ROW 1764: has 28 Null-Value and 0 Non-Null Value
ROW 1765: has 28 Null-Value and 0 Non-Null Value
ROW 1766: has 28 Null-Value and 0 Non-Null Value
ROW 1767: has 28 Null-Value and 0 Non-Null Value
ROW 1768: has 28 Null-Value and 0 Non-Null Value
ROW 1769: has 28 Null-Value and 0 Non-Null Value
ROW 1770: has 28 Null-Value and 0 Non-Null Value
ROW 1771: has 28 Null-Value and 0 Non-Null Value
ROW 1772: has 28 Null-Value and 0 Non-Null Value
ROW 1773: has 28 Null-Value and 0 Non-Null Value
ROW 1774: has 28 Null-Value and 0 Non-Null Value
ROW 1775: has 28 Null-Value and 0 Non-Null Value
ROW 1776: has 28 Null-Value and 0 Non-Null Value
ROW 1777: has 28 Null-Value and 0 Non-Null Value
ROW 1778: has 28 Null-Value and 0 Non-Null Value
ROW 1779: has 28 Null-Value and 0 Non-Null Value
ROW 1780: has 28 Null-Value and 0 Non-Null Value
ROW 1781: has 28 Null-Value and 0 Non-Null Value
ROW 1782: has 26 Null-Value and 2 Non-Null Value
ROW 1783: has 28 Null-Value and 0 Non-Null Value
ROW 1784: has 28 Null-Value and 0 Non-Null Value
ROW 1785: has 28 Null-Value and 0 Non-Null Value
ROW 1786: has 28 Null-Value and 0 Non-Null Value
ROW 1787: has 28 Null-Value and 0 Non-Null Value
ROW 1788: has 28 Null-Value and 0 Non-Null Value
ROW 1789: has 28 Null-Value and 0 Non-Null Value
ROW 1790: has 28 Null-Value and 0 Non-Null Value
ROW 1791: has 28 Null-Value and 0 Non-Null Value
ROW 1792: has 28 Null-Value and 0 Non-Null Value
ROW 1793: has 26 Null-Value and 2 Non-Null Value
ROW 1794: has 28 Null-Value and 0 Non-Null Value
ROW 1795: has 28 Null-Value and 0 Non-Null Value
ROW 1796: has 28 Null-Value and 0 Non-Null Value
ROW 1797: has 28 Null-Value and 0 Non-Null Value
ROW 1798: has 28 Null-Value and 0 Non-Null Value
ROW 1799: has 28 Null-Value and 0 Non-Null Value
ROW 1800: has 28 Null-Value and 0 Non-Null Value
ROW 1801: has 28 Null-Value and 0 Non-Null Value
ROW 1802: has 23 Null-Value and 5 Non-Null Value
ROW 1803: has 28 Null-Value and 0 Non-Null Value
ROW 1804: has 28 Null-Value and 0 Non-Null Value
ROW 1805: has 28 Null-Value and 0 Non-Null Value
ROW 1806: has 28 Null-Value and 0 Non-Null Value
ROW 1807: has 28 Null-Value and 0 Non-Null Value
ROW 1808: has 27 Null-Value and 1 Non-Null Value
ROW 1809: has 28 Null-Value and 0 Non-Null Value
ROW 1810: has 28 Null-Value and 0 Non-Null Value
ROW 1811: has 28 Null-Value and 0 Non-Null Value
ROW 1812: has 28 Null-Value and 0 Non-Null Value
ROW 1813: has 28 Null-Value and 0 Non-Null Value
ROW 1814: has 28 Null-Value and 0 Non-Null Value
ROW 1815: has 27 Null-Value and 1 Non-Null Value
ROW 1816: has 28 Null-Value and 0 Non-Null Value
ROW 1817: has 28 Null-Value and 0 Non-Null Value
ROW 1818: has 22 Null-Value and 6 Non-Null Value
ROW 1819: has 27 Null-Value and 1 Non-Null Value
ROW 1820: has 28 Null-Value and 0 Non-Null Value
ROW 1821: has 28 Null-Value and 0 Non-Null Value
ROW 1822: has 28 Null-Value and 0 Non-Null Value
ROW 1823: has 28 Null-Value and 0 Non-Null Value
ROW 1824: has 28 Null-Value and 0 Non-Null Value
ROW 1825: has 28 Null-Value and 0 Non-Null Value
ROW 1826: has 28 Null-Value and 0 Non-Null Value
ROW 1827: has 28 Null-Value and 0 Non-Null Value
ROW 1828: has 28 Null-Value and 0 Non-Null Value
ROW 1829: has 28 Null-Value and 0 Non-Null Value
ROW 1830: has 28 Null-Value and 0 Non-Null Value
ROW 1831: has 26 Null-Value and 2 Non-Null Value
ROW 1832: has 28 Null-Value and 0 Non-Null Value
ROW 1833: has 28 Null-Value and 0 Non-Null Value
ROW 1834: has 28 Null-Value and 0 Non-Null Value
ROW 1835: has 28 Null-Value and 0 Non-Null Value
ROW 1836: has 28 Null-Value and 0 Non-Null Value
ROW 1837: has 28 Null-Value and 0 Non-Null Value
ROW 1838: has 28 Null-Value and 0 Non-Null Value
ROW 1839: has 28 Null-Value and 0 Non-Null Value
ROW 1840: has 28 Null-Value and 0 Non-Null Value
ROW 1841: has 28 Null-Value and 0 Non-Null Value
ROW 1842: has 23 Null-Value and 5 Non-Null Value
ROW 1843: has 28 Null-Value and 0 Non-Null Value
ROW 1844: has 28 Null-Value and 0 Non-Null Value
ROW 1845: has 28 Null-Value and 0 Non-Null Value
ROW 1846: has 28 Null-Value and 0 Non-Null Value
ROW 1847: has 28 Null-Value and 0 Non-Null Value
ROW 1848: has 28 Null-Value and 0 Non-Null Value
ROW 1849: has 28 Null-Value and 0 Non-Null Value
ROW 1850: has 28 Null-Value and 0 Non-Null Value
ROW 1851: has 28 Null-Value and 0 Non-Null Value
ROW 1852: has 28 Null-Value and 0 Non-Null Value
ROW 1853: has 28 Null-Value and 0 Non-Null Value
ROW 1854: has 28 Null-Value and 0 Non-Null Value
ROW 1855: has 28 Null-Value and 0 Non-Null Value
ROW 1856: has 28 Null-Value and 0 Non-Null Value
ROW 1857: has 28 Null-Value and 0 Non-Null Value
ROW 1858: has 28 Null-Value and 0 Non-Null Value
ROW 1859: has 28 Null-Value and 0 Non-Null Value
ROW 1860: has 27 Null-Value and 1 Non-Null Value
ROW 1861: has 28 Null-Value and 0 Non-Null Value
ROW 1862: has 27 Null-Value and 1 Non-Null Value
ROW 1863: has 28 Null-Value and 0 Non-Null Value
ROW 1864: has 28 Null-Value and 0 Non-Null Value
ROW 1865: has 28 Null-Value and 0 Non-Null Value
ROW 1866: has 28 Null-Value and 0 Non-Null Value
ROW 1867: has 28 Null-Value and 0 Non-Null Value
ROW 1868: has 28 Null-Value and 0 Non-Null Value
ROW 1869: has 28 Null-Value and 0 Non-Null Value
ROW 1870: has 28 Null-Value and 0 Non-Null Value
ROW 1871: has 28 Null-Value and 0 Non-Null Value
ROW 1872: has 28 Null-Value and 0 Non-Null Value
ROW 1873: has 28 Null-Value and 0 Non-Null Value
ROW 1874: has 28 Null-Value and 0 Non-Null Value
ROW 1875: has 28 Null-Value and 0 Non-Null Value
ROW 1876: has 28 Null-Value and 0 Non-Null Value
ROW 1877: has 28 Null-Value and 0 Non-Null Value
ROW 1878: has 26 Null-Value and 2 Non-Null Value
ROW 1879: has 28 Null-Value and 0 Non-Null Value
ROW 1880: has 25 Null-Value and 3 Non-Null Value
ROW 1881: has 28 Null-Value and 0 Non-Null Value
ROW 1882: has 28 Null-Value and 0 Non-Null Value
ROW 1883: has 28 Null-Value and 0 Non-Null Value
ROW 1884: has 28 Null-Value and 0 Non-Null Value
ROW 1885: has 28 Null-Value and 0 Non-Null Value
ROW 1886: has 28 Null-Value and 0 Non-Null Value
ROW 1887: has 28 Null-Value and 0 Non-Null Value
ROW 1888: has 28 Null-Value and 0 Non-Null Value
ROW 1889: has 28 Null-Value and 0 Non-Null Value
ROW 1890: has 28 Null-Value and 0 Non-Null Value
ROW 1891: has 28 Null-Value and 0 Non-Null Value
ROW 1892: has 28 Null-Value and 0 Non-Null Value
ROW 1893: has 28 Null-Value and 0 Non-Null Value
ROW 1894: has 27 Null-Value and 1 Non-Null Value
ROW 1895: has 28 Null-Value and 0 Non-Null Value
ROW 1896: has 28 Null-Value and 0 Non-Null Value
ROW 1897: has 28 Null-Value and 0 Non-Null Value
ROW 1898: has 28 Null-Value and 0 Non-Null Value
ROW 1899: has 28 Null-Value and 0 Non-Null Value
ROW 1900: has 28 Null-Value and 0 Non-Null Value
ROW 1901: has 28 Null-Value and 0 Non-Null Value
ROW 1902: has 28 Null-Value and 0 Non-Null Value
ROW 1903: has 28 Null-Value and 0 Non-Null Value
ROW 1904: has 28 Null-Value and 0 Non-Null Value
ROW 1905: has 28 Null-Value and 0 Non-Null Value
ROW 1906: has 28 Null-Value and 0 Non-Null Value
ROW 1907: has 28 Null-Value and 0 Non-Null Value
ROW 1908: has 28 Null-Value and 0 Non-Null Value
ROW 1909: has 28 Null-Value and 0 Non-Null Value
ROW 1910: has 28 Null-Value and 0 Non-Null Value
ROW 1911: has 28 Null-Value and 0 Non-Null Value
ROW 1912: has 28 Null-Value and 0 Non-Null Value
ROW 1913: has 28 Null-Value and 0 Non-Null Value
ROW 1914: has 28 Null-Value and 0 Non-Null Value
ROW 1915: has 28 Null-Value and 0 Non-Null Value
ROW 1916: has 28 Null-Value and 0 Non-Null Value
ROW 1917: has 28 Null-Value and 0 Non-Null Value
ROW 1918: has 27 Null-Value and 1 Non-Null Value
ROW 1919: has 28 Null-Value and 0 Non-Null Value
ROW 1920: has 28 Null-Value and 0 Non-Null Value
ROW 1921: has 28 Null-Value and 0 Non-Null Value
ROW 1922: has 28 Null-Value and 0 Non-Null Value
ROW 1923: has 28 Null-Value and 0 Non-Null Value
ROW 1924: has 28 Null-Value and 0 Non-Null Value
ROW 1925: has 28 Null-Value and 0 Non-Null Value
ROW 1926: has 28 Null-Value and 0 Non-Null Value
ROW 1927: has 28 Null-Value and 0 Non-Null Value
ROW 1928: has 28 Null-Value and 0 Non-Null Value
ROW 1929: has 28 Null-Value and 0 Non-Null Value
ROW 1930: has 28 Null-Value and 0 Non-Null Value
ROW 1931: has 28 Null-Value and 0 Non-Null Value
ROW 1932: has 28 Null-Value and 0 Non-Null Value
ROW 1933: has 28 Null-Value and 0 Non-Null Value
ROW 1934: has 28 Null-Value and 0 Non-Null Value
ROW 1935: has 27 Null-Value and 1 Non-Null Value
ROW 1936: has 28 Null-Value and 0 Non-Null Value
ROW 1937: has 28 Null-Value and 0 Non-Null Value
ROW 1938: has 28 Null-Value and 0 Non-Null Value
ROW 1939: has 28 Null-Value and 0 Non-Null Value
ROW 1940: has 28 Null-Value and 0 Non-Null Value
ROW 1941: has 28 Null-Value and 0 Non-Null Value
ROW 1942: has 27 Null-Value and 1 Non-Null Value
ROW 1943: has 28 Null-Value and 0 Non-Null Value
ROW 1944: has 28 Null-Value and 0 Non-Null Value
ROW 1945: has 28 Null-Value and 0 Non-Null Value
ROW 1946: has 28 Null-Value and 0 Non-Null Value
ROW 1947: has 22 Null-Value and 6 Non-Null Value
ROW 1948: has 26 Null-Value and 2 Non-Null Value
ROW 1949: has 28 Null-Value and 0 Non-Null Value
ROW 1950: has 28 Null-Value and 0 Non-Null Value
ROW 1951: has 28 Null-Value and 0 Non-Null Value
ROW 1952: has 28 Null-Value and 0 Non-Null Value
ROW 1953: has 28 Null-Value and 0 Non-Null Value
ROW 1954: has 28 Null-Value and 0 Non-Null Value
ROW 1955: has 28 Null-Value and 0 Non-Null Value
ROW 1956: has 28 Null-Value and 0 Non-Null Value
ROW 1957: has 28 Null-Value and 0 Non-Null Value
ROW 1958: has 27 Null-Value and 1 Non-Null Value
ROW 1959: has 28 Null-Value and 0 Non-Null Value
ROW 1960: has 28 Null-Value and 0 Non-Null Value
ROW 1961: has 28 Null-Value and 0 Non-Null Value
ROW 1962: has 28 Null-Value and 0 Non-Null Value
ROW 1963: has 28 Null-Value and 0 Non-Null Value
ROW 1964: has 28 Null-Value and 0 Non-Null Value
ROW 1965: has 28 Null-Value and 0 Non-Null Value
ROW 1966: has 28 Null-Value and 0 Non-Null Value
ROW 1967: has 27 Null-Value and 1 Non-Null Value
ROW 1968: has 28 Null-Value and 0 Non-Null Value
ROW 1969: has 28 Null-Value and 0 Non-Null Value
ROW 1970: has 28 Null-Value and 0 Non-Null Value
ROW 1971: has 27 Null-Value and 1 Non-Null Value
ROW 1972: has 23 Null-Value and 5 Non-Null Value
ROW 1973: has 28 Null-Value and 0 Non-Null Value
ROW 1974: has 28 Null-Value and 0 Non-Null Value
ROW 1975: has 28 Null-Value and 0 Non-Null Value
ROW 1976: has 28 Null-Value and 0 Non-Null Value
ROW 1977: has 26 Null-Value and 2 Non-Null Value
ROW 1978: has 28 Null-Value and 0 Non-Null Value
ROW 1979: has 28 Null-Value and 0 Non-Null Value
ROW 1980: has 28 Null-Value and 0 Non-Null Value
ROW 1981: has 28 Null-Value and 0 Non-Null Value
ROW 1982: has 28 Null-Value and 0 Non-Null Value
ROW 1983: has 28 Null-Value and 0 Non-Null Value
ROW 1984: has 28 Null-Value and 0 Non-Null Value
ROW 1985: has 28 Null-Value and 0 Non-Null Value
ROW 1986: has 28 Null-Value and 0 Non-Null Value
ROW 1987: has 28 Null-Value and 0 Non-Null Value
ROW 1988: has 28 Null-Value and 0 Non-Null Value
ROW 1989: has 28 Null-Value and 0 Non-Null Value
ROW 1990: has 27 Null-Value and 1 Non-Null Value
ROW 1991: has 28 Null-Value and 0 Non-Null Value
ROW 1992: has 28 Null-Value and 0 Non-Null Value
ROW 1993: has 28 Null-Value and 0 Non-Null Value
ROW 1994: has 28 Null-Value and 0 Non-Null Value
ROW 1995: has 28 Null-Value and 0 Non-Null Value
ROW 1996: has 28 Null-Value and 0 Non-Null Value
ROW 1997: has 28 Null-Value and 0 Non-Null Value
ROW 1998: has 28 Null-Value and 0 Non-Null Value
ROW 1999: has 27 Null-Value and 1 Non-Null Value
ROW 2000: has 28 Null-Value and 0 Non-Null Value
ROW 2001: has 26 Null-Value and 2 Non-Null Value
ROW 2002: has 28 Null-Value and 0 Non-Null Value
ROW 2003: has 28 Null-Value and 0 Non-Null Value
ROW 2004: has 28 Null-Value and 0 Non-Null Value
ROW 2005: has 28 Null-Value and 0 Non-Null Value
ROW 2006: has 26 Null-Value and 2 Non-Null Value
ROW 2007: has 28 Null-Value and 0 Non-Null Value
ROW 2008: has 28 Null-Value and 0 Non-Null Value
ROW 2009: has 26 Null-Value and 2 Non-Null Value
ROW 2010: has 26 Null-Value and 2 Non-Null Value
ROW 2011: has 28 Null-Value and 0 Non-Null Value
ROW 2012: has 27 Null-Value and 1 Non-Null Value
ROW 2013: has 27 Null-Value and 1 Non-Null Value
ROW 2014: has 27 Null-Value and 1 Non-Null Value
ROW 2015: has 25 Null-Value and 3 Non-Null Value
ROW 2016: has 28 Null-Value and 0 Non-Null Value
ROW 2017: has 28 Null-Value and 0 Non-Null Value
ROW 2018: has 28 Null-Value and 0 Non-Null Value
ROW 2019: has 28 Null-Value and 0 Non-Null Value
ROW 2020: has 28 Null-Value and 0 Non-Null Value
ROW 2021: has 28 Null-Value and 0 Non-Null Value
ROW 2022: has 28 Null-Value and 0 Non-Null Value
ROW 2023: has 28 Null-Value and 0 Non-Null Value
ROW 2024: has 28 Null-Value and 0 Non-Null Value
ROW 2025: has 28 Null-Value and 0 Non-Null Value
ROW 2026: has 28 Null-Value and 0 Non-Null Value
ROW 2027: has 28 Null-Value and 0 Non-Null Value
ROW 2028: has 28 Null-Value and 0 Non-Null Value
ROW 2029: has 28 Null-Value and 0 Non-Null Value
ROW 2030: has 28 Null-Value and 0 Non-Null Value
ROW 2031: has 28 Null-Value and 0 Non-Null Value
ROW 2032: has 28 Null-Value and 0 Non-Null Value
ROW 2033: has 28 Null-Value and 0 Non-Null Value
ROW 2034: has 28 Null-Value and 0 Non-Null Value
ROW 2035: has 28 Null-Value and 0 Non-Null Value
ROW 2036: has 28 Null-Value and 0 Non-Null Value
ROW 2037: has 28 Null-Value and 0 Non-Null Value
ROW 2038: has 28 Null-Value and 0 Non-Null Value
ROW 2039: has 28 Null-Value and 0 Non-Null Value
ROW 2040: has 28 Null-Value and 0 Non-Null Value
ROW 2041: has 28 Null-Value and 0 Non-Null Value
ROW 2042: has 28 Null-Value and 0 Non-Null Value
ROW 2043: has 27 Null-Value and 1 Non-Null Value
ROW 2044: has 28 Null-Value and 0 Non-Null Value
ROW 2045: has 28 Null-Value and 0 Non-Null Value
ROW 2046: has 28 Null-Value and 0 Non-Null Value
ROW 2047: has 28 Null-Value and 0 Non-Null Value
ROW 2048: has 28 Null-Value and 0 Non-Null Value
ROW 2049: has 28 Null-Value and 0 Non-Null Value
ROW 2050: has 28 Null-Value and 0 Non-Null Value
ROW 2051: has 28 Null-Value and 0 Non-Null Value
ROW 2052: has 28 Null-Value and 0 Non-Null Value
ROW 2053: has 28 Null-Value and 0 Non-Null Value
ROW 2054: has 28 Null-Value and 0 Non-Null Value
ROW 2055: has 28 Null-Value and 0 Non-Null Value
ROW 2056: has 28 Null-Value and 0 Non-Null Value
ROW 2057: has 28 Null-Value and 0 Non-Null Value
ROW 2058: has 28 Null-Value and 0 Non-Null Value
ROW 2059: has 28 Null-Value and 0 Non-Null Value
ROW 2060: has 28 Null-Value and 0 Non-Null Value
ROW 2061: has 28 Null-Value and 0 Non-Null Value
ROW 2062: has 28 Null-Value and 0 Non-Null Value
ROW 2063: has 28 Null-Value and 0 Non-Null Value
ROW 2064: has 28 Null-Value and 0 Non-Null Value
ROW 2065: has 28 Null-Value and 0 Non-Null Value
ROW 2066: has 28 Null-Value and 0 Non-Null Value
ROW 2067: has 28 Null-Value and 0 Non-Null Value
ROW 2068: has 28 Null-Value and 0 Non-Null Value
ROW 2069: has 28 Null-Value and 0 Non-Null Value
ROW 2070: has 28 Null-Value and 0 Non-Null Value
ROW 2071: has 27 Null-Value and 1 Non-Null Value
ROW 2072: has 28 Null-Value and 0 Non-Null Value
ROW 2073: has 26 Null-Value and 2 Non-Null Value
ROW 2074: has 28 Null-Value and 0 Non-Null Value
ROW 2075: has 21 Null-Value and 7 Non-Null Value
ROW 2076: has 28 Null-Value and 0 Non-Null Value
ROW 2077: has 26 Null-Value and 2 Non-Null Value
ROW 2078: has 28 Null-Value and 0 Non-Null Value
ROW 2079: has 28 Null-Value and 0 Non-Null Value
ROW 2080: has 28 Null-Value and 0 Non-Null Value
ROW 2081: has 28 Null-Value and 0 Non-Null Value
ROW 2082: has 28 Null-Value and 0 Non-Null Value
ROW 2083: has 28 Null-Value and 0 Non-Null Value
ROW 2084: has 28 Null-Value and 0 Non-Null Value
ROW 2085: has 28 Null-Value and 0 Non-Null Value
ROW 2086: has 28 Null-Value and 0 Non-Null Value
ROW 2087: has 28 Null-Value and 0 Non-Null Value
ROW 2088: has 27 Null-Value and 1 Non-Null Value
ROW 2089: has 28 Null-Value and 0 Non-Null Value
ROW 2090: has 28 Null-Value and 0 Non-Null Value
ROW 2091: has 28 Null-Value and 0 Non-Null Value
ROW 2092: has 28 Null-Value and 0 Non-Null Value
ROW 2093: has 28 Null-Value and 0 Non-Null Value
ROW 2094: has 28 Null-Value and 0 Non-Null Value
ROW 2095: has 28 Null-Value and 0 Non-Null Value
ROW 2096: has 28 Null-Value and 0 Non-Null Value
ROW 2097: has 28 Null-Value and 0 Non-Null Value
ROW 2098: has 28 Null-Value and 0 Non-Null Value
ROW 2099: has 28 Null-Value and 0 Non-Null Value
ROW 2100: has 27 Null-Value and 1 Non-Null Value
ROW 2101: has 28 Null-Value and 0 Non-Null Value
ROW 2102: has 28 Null-Value and 0 Non-Null Value
ROW 2103: has 28 Null-Value and 0 Non-Null Value
ROW 2104: has 28 Null-Value and 0 Non-Null Value
ROW 2105: has 28 Null-Value and 0 Non-Null Value
ROW 2106: has 28 Null-Value and 0 Non-Null Value
ROW 2107: has 28 Null-Value and 0 Non-Null Value
ROW 2108: has 28 Null-Value and 0 Non-Null Value
ROW 2109: has 28 Null-Value and 0 Non-Null Value
ROW 2110: has 28 Null-Value and 0 Non-Null Value
ROW 2111: has 28 Null-Value and 0 Non-Null Value
ROW 2112: has 28 Null-Value and 0 Non-Null Value
ROW 2113: has 28 Null-Value and 0 Non-Null Value
ROW 2114: has 28 Null-Value and 0 Non-Null Value
ROW 2115: has 28 Null-Value and 0 Non-Null Value
ROW 2116: has 28 Null-Value and 0 Non-Null Value
ROW 2117: has 27 Null-Value and 1 Non-Null Value
ROW 2118: has 28 Null-Value and 0 Non-Null Value
ROW 2119: has 28 Null-Value and 0 Non-Null Value
ROW 2120: has 28 Null-Value and 0 Non-Null Value
ROW 2121: has 28 Null-Value and 0 Non-Null Value
ROW 2122: has 28 Null-Value and 0 Non-Null Value
ROW 2123: has 27 Null-Value and 1 Non-Null Value
ROW 2124: has 28 Null-Value and 0 Non-Null Value
ROW 2125: has 28 Null-Value and 0 Non-Null Value
ROW 2126: has 28 Null-Value and 0 Non-Null Value
ROW 2127: has 28 Null-Value and 0 Non-Null Value
ROW 2128: has 28 Null-Value and 0 Non-Null Value
ROW 2129: has 28 Null-Value and 0 Non-Null Value
ROW 2130: has 27 Null-Value and 1 Non-Null Value
ROW 2131: has 28 Null-Value and 0 Non-Null Value
ROW 2132: has 28 Null-Value and 0 Non-Null Value
ROW 2133: has 28 Null-Value and 0 Non-Null Value
ROW 2134: has 28 Null-Value and 0 Non-Null Value
ROW 2135: has 28 Null-Value and 0 Non-Null Value
ROW 2136: has 28 Null-Value and 0 Non-Null Value
ROW 2137: has 28 Null-Value and 0 Non-Null Value
ROW 2138: has 28 Null-Value and 0 Non-Null Value
ROW 2139: has 27 Null-Value and 1 Non-Null Value
ROW 2140: has 28 Null-Value and 0 Non-Null Value
ROW 2141: has 28 Null-Value and 0 Non-Null Value
ROW 2142: has 28 Null-Value and 0 Non-Null Value
ROW 2143: has 18 Null-Value and 10 Non-Null Value
ROW 2144: has 28 Null-Value and 0 Non-Null Value
ROW 2145: has 28 Null-Value and 0 Non-Null Value
ROW 2146: has 28 Null-Value and 0 Non-Null Value
ROW 2147: has 28 Null-Value and 0 Non-Null Value
ROW 2148: has 28 Null-Value and 0 Non-Null Value
ROW 2149: has 28 Null-Value and 0 Non-Null Value
ROW 2150: has 28 Null-Value and 0 Non-Null Value
ROW 2151: has 28 Null-Value and 0 Non-Null Value
ROW 2152: has 28 Null-Value and 0 Non-Null Value
ROW 2153: has 28 Null-Value and 0 Non-Null Value
ROW 2154: has 28 Null-Value and 0 Non-Null Value
ROW 2155: has 28 Null-Value and 0 Non-Null Value
ROW 2156: has 28 Null-Value and 0 Non-Null Value
ROW 2157: has 28 Null-Value and 0 Non-Null Value
ROW 2158: has 28 Null-Value and 0 Non-Null Value
ROW 2159: has 28 Null-Value and 0 Non-Null Value
ROW 2160: has 28 Null-Value and 0 Non-Null Value
ROW 2161: has 28 Null-Value and 0 Non-Null Value
ROW 2162: has 28 Null-Value and 0 Non-Null Value
ROW 2163: has 28 Null-Value and 0 Non-Null Value
ROW 2164: has 28 Null-Value and 0 Non-Null Value
ROW 2165: has 28 Null-Value and 0 Non-Null Value
ROW 2166: has 28 Null-Value and 0 Non-Null Value
ROW 2167: has 28 Null-Value and 0 Non-Null Value
ROW 2168: has 28 Null-Value and 0 Non-Null Value
ROW 2169: has 28 Null-Value and 0 Non-Null Value
ROW 2170: has 28 Null-Value and 0 Non-Null Value
ROW 2171: has 28 Null-Value and 0 Non-Null Value
ROW 2172: has 28 Null-Value and 0 Non-Null Value
ROW 2173: has 28 Null-Value and 0 Non-Null Value
ROW 2174: has 28 Null-Value and 0 Non-Null Value
ROW 2175: has 28 Null-Value and 0 Non-Null Value
ROW 2176: has 28 Null-Value and 0 Non-Null Value
ROW 2177: has 28 Null-Value and 0 Non-Null Value
ROW 2178: has 28 Null-Value and 0 Non-Null Value
ROW 2179: has 28 Null-Value and 0 Non-Null Value
ROW 2180: has 27 Null-Value and 1 Non-Null Value
ROW 2181: has 27 Null-Value and 1 Non-Null Value
ROW 2182: has 28 Null-Value and 0 Non-Null Value
ROW 2183: has 28 Null-Value and 0 Non-Null Value
ROW 2184: has 28 Null-Value and 0 Non-Null Value
ROW 2185: has 28 Null-Value and 0 Non-Null Value
ROW 2186: has 28 Null-Value and 0 Non-Null Value
ROW 2187: has 28 Null-Value and 0 Non-Null Value
ROW 2188: has 28 Null-Value and 0 Non-Null Value
ROW 2189: has 27 Null-Value and 1 Non-Null Value
ROW 2190: has 28 Null-Value and 0 Non-Null Value
ROW 2191: has 22 Null-Value and 6 Non-Null Value
ROW 2192: has 28 Null-Value and 0 Non-Null Value
ROW 2193: has 28 Null-Value and 0 Non-Null Value
ROW 2194: has 28 Null-Value and 0 Non-Null Value
ROW 2195: has 28 Null-Value and 0 Non-Null Value
ROW 2196: has 28 Null-Value and 0 Non-Null Value
ROW 2197: has 28 Null-Value and 0 Non-Null Value
ROW 2198: has 28 Null-Value and 0 Non-Null Value
ROW 2199: has 28 Null-Value and 0 Non-Null Value
ROW 2200: has 27 Null-Value and 1 Non-Null Value
ROW 2201: has 28 Null-Value and 0 Non-Null Value
ROW 2202: has 28 Null-Value and 0 Non-Null Value
ROW 2203: has 28 Null-Value and 0 Non-Null Value
ROW 2204: has 28 Null-Value and 0 Non-Null Value
ROW 2205: has 28 Null-Value and 0 Non-Null Value
ROW 2206: has 28 Null-Value and 0 Non-Null Value
ROW 2207: has 28 Null-Value and 0 Non-Null Value
ROW 2208: has 28 Null-Value and 0 Non-Null Value
ROW 2209: has 28 Null-Value and 0 Non-Null Value
ROW 2210: has 28 Null-Value and 0 Non-Null Value
ROW 2211: has 27 Null-Value and 1 Non-Null Value
ROW 2212: has 28 Null-Value and 0 Non-Null Value
ROW 2213: has 28 Null-Value and 0 Non-Null Value
ROW 2214: has 28 Null-Value and 0 Non-Null Value
ROW 2215: has 28 Null-Value and 0 Non-Null Value
ROW 2216: has 28 Null-Value and 0 Non-Null Value
ROW 2217: has 27 Null-Value and 1 Non-Null Value
ROW 2218: has 28 Null-Value and 0 Non-Null Value
ROW 2219: has 28 Null-Value and 0 Non-Null Value
ROW 2220: has 28 Null-Value and 0 Non-Null Value
ROW 2221: has 28 Null-Value and 0 Non-Null Value
ROW 2222: has 28 Null-Value and 0 Non-Null Value
ROW 2223: has 28 Null-Value and 0 Non-Null Value
ROW 2224: has 28 Null-Value and 0 Non-Null Value
ROW 2225: has 28 Null-Value and 0 Non-Null Value
ROW 2226: has 28 Null-Value and 0 Non-Null Value
ROW 2227: has 28 Null-Value and 0 Non-Null Value
ROW 2228: has 28 Null-Value and 0 Non-Null Value
ROW 2229: has 28 Null-Value and 0 Non-Null Value
ROW 2230: has 28 Null-Value and 0 Non-Null Value
ROW 2231: has 28 Null-Value and 0 Non-Null Value
ROW 2232: has 28 Null-Value and 0 Non-Null Value
ROW 2233: has 28 Null-Value and 0 Non-Null Value
ROW 2234: has 28 Null-Value and 0 Non-Null Value
ROW 2235: has 27 Null-Value and 1 Non-Null Value
ROW 2236: has 28 Null-Value and 0 Non-Null Value
ROW 2237: has 28 Null-Value and 0 Non-Null Value
ROW 2238: has 27 Null-Value and 1 Non-Null Value
ROW 2239: has 27 Null-Value and 1 Non-Null Value
ROW 2240: has 28 Null-Value and 0 Non-Null Value
ROW 2241: has 17 Null-Value and 11 Non-Null Value
ROW 2242: has 28 Null-Value and 0 Non-Null Value
ROW 2243: has 28 Null-Value and 0 Non-Null Value
ROW 2244: has 28 Null-Value and 0 Non-Null Value
ROW 2245: has 28 Null-Value and 0 Non-Null Value
ROW 2246: has 28 Null-Value and 0 Non-Null Value
ROW 2247: has 27 Null-Value and 1 Non-Null Value
ROW 2248: has 28 Null-Value and 0 Non-Null Value
ROW 2249: has 28 Null-Value and 0 Non-Null Value
ROW 2250: has 28 Null-Value and 0 Non-Null Value
ROW 2251: has 28 Null-Value and 0 Non-Null Value
ROW 2252: has 28 Null-Value and 0 Non-Null Value
ROW 2253: has 28 Null-Value and 0 Non-Null Value
ROW 2254: has 28 Null-Value and 0 Non-Null Value
ROW 2255: has 28 Null-Value and 0 Non-Null Value
ROW 2256: has 28 Null-Value and 0 Non-Null Value
ROW 2257: has 21 Null-Value and 7 Non-Null Value
ROW 2258: has 28 Null-Value and 0 Non-Null Value
ROW 2259: has 28 Null-Value and 0 Non-Null Value
ROW 2260: has 28 Null-Value and 0 Non-Null Value
ROW 2261: has 28 Null-Value and 0 Non-Null Value
ROW 2262: has 28 Null-Value and 0 Non-Null Value
ROW 2263: has 28 Null-Value and 0 Non-Null Value
ROW 2264: has 28 Null-Value and 0 Non-Null Value
ROW 2265: has 27 Null-Value and 1 Non-Null Value
ROW 2266: has 28 Null-Value and 0 Non-Null Value
ROW 2267: has 27 Null-Value and 1 Non-Null Value
ROW 2268: has 28 Null-Value and 0 Non-Null Value
ROW 2269: has 28 Null-Value and 0 Non-Null Value
ROW 2270: has 28 Null-Value and 0 Non-Null Value
ROW 2271: has 28 Null-Value and 0 Non-Null Value
ROW 2272: has 28 Null-Value and 0 Non-Null Value
ROW 2273: has 28 Null-Value and 0 Non-Null Value
ROW 2274: has 28 Null-Value and 0 Non-Null Value
ROW 2275: has 28 Null-Value and 0 Non-Null Value
ROW 2276: has 28 Null-Value and 0 Non-Null Value
ROW 2277: has 28 Null-Value and 0 Non-Null Value
ROW 2278: has 28 Null-Value and 0 Non-Null Value
ROW 2279: has 28 Null-Value and 0 Non-Null Value
ROW 2280: has 28 Null-Value and 0 Non-Null Value
ROW 2281: has 28 Null-Value and 0 Non-Null Value
ROW 2282: has 28 Null-Value and 0 Non-Null Value
ROW 2283: has 28 Null-Value and 0 Non-Null Value
ROW 2284: has 28 Null-Value and 0 Non-Null Value
ROW 2285: has 28 Null-Value and 0 Non-Null Value
ROW 2286: has 28 Null-Value and 0 Non-Null Value
ROW 2287: has 28 Null-Value and 0 Non-Null Value
ROW 2288: has 28 Null-Value and 0 Non-Null Value
ROW 2289: has 28 Null-Value and 0 Non-Null Value
ROW 2290: has 28 Null-Value and 0 Non-Null Value
ROW 2291: has 28 Null-Value and 0 Non-Null Value
ROW 2292: has 28 Null-Value and 0 Non-Null Value
ROW 2293: has 28 Null-Value and 0 Non-Null Value
ROW 2294: has 28 Null-Value and 0 Non-Null Value
ROW 2295: has 28 Null-Value and 0 Non-Null Value
ROW 2296: has 28 Null-Value and 0 Non-Null Value
ROW 2297: has 28 Null-Value and 0 Non-Null Value
ROW 2298: has 28 Null-Value and 0 Non-Null Value
ROW 2299: has 27 Null-Value and 1 Non-Null Value
ROW 2300: has 28 Null-Value and 0 Non-Null Value
ROW 2301: has 28 Null-Value and 0 Non-Null Value
ROW 2302: has 28 Null-Value and 0 Non-Null Value
ROW 2303: has 22 Null-Value and 6 Non-Null Value
ROW 2304: has 28 Null-Value and 0 Non-Null Value
ROW 2305: has 28 Null-Value and 0 Non-Null Value
ROW 2306: has 28 Null-Value and 0 Non-Null Value
ROW 2307: has 28 Null-Value and 0 Non-Null Value
ROW 2308: has 28 Null-Value and 0 Non-Null Value
ROW 2309: has 27 Null-Value and 1 Non-Null Value
ROW 2310: has 28 Null-Value and 0 Non-Null Value
ROW 2311: has 28 Null-Value and 0 Non-Null Value
ROW 2312: has 28 Null-Value and 0 Non-Null Value
ROW 2313: has 28 Null-Value and 0 Non-Null Value
ROW 2314: has 28 Null-Value and 0 Non-Null Value
ROW 2315: has 28 Null-Value and 0 Non-Null Value
ROW 2316: has 28 Null-Value and 0 Non-Null Value
ROW 2317: has 27 Null-Value and 1 Non-Null Value
ROW 2318: has 28 Null-Value and 0 Non-Null Value
ROW 2319: has 28 Null-Value and 0 Non-Null Value
ROW 2320: has 28 Null-Value and 0 Non-Null Value
ROW 2321: has 28 Null-Value and 0 Non-Null Value
ROW 2322: has 28 Null-Value and 0 Non-Null Value
ROW 2323: has 28 Null-Value and 0 Non-Null Value
ROW 2324: has 28 Null-Value and 0 Non-Null Value
ROW 2325: has 28 Null-Value and 0 Non-Null Value
ROW 2326: has 28 Null-Value and 0 Non-Null Value
ROW 2327: has 28 Null-Value and 0 Non-Null Value
ROW 2328: has 28 Null-Value and 0 Non-Null Value
ROW 2329: has 28 Null-Value and 0 Non-Null Value
ROW 2330: has 28 Null-Value and 0 Non-Null Value
ROW 2331: has 28 Null-Value and 0 Non-Null Value
ROW 2332: has 27 Null-Value and 1 Non-Null Value
ROW 2333: has 28 Null-Value and 0 Non-Null Value
ROW 2334: has 28 Null-Value and 0 Non-Null Value
ROW 2335: has 28 Null-Value and 0 Non-Null Value
ROW 2336: has 27 Null-Value and 1 Non-Null Value
ROW 2337: has 28 Null-Value and 0 Non-Null Value
ROW 2338: has 27 Null-Value and 1 Non-Null Value
ROW 2339: has 27 Null-Value and 1 Non-Null Value
ROW 2340: has 28 Null-Value and 0 Non-Null Value
ROW 2341: has 28 Null-Value and 0 Non-Null Value
ROW 2342: has 18 Null-Value and 10 Non-Null Value
ROW 2343: has 28 Null-Value and 0 Non-Null Value
ROW 2344: has 27 Null-Value and 1 Non-Null Value
ROW 2345: has 24 Null-Value and 4 Non-Null Value
ROW 2346: has 27 Null-Value and 1 Non-Null Value
ROW 2347: has 27 Null-Value and 1 Non-Null Value
ROW 2348: has 27 Null-Value and 1 Non-Null Value
ROW 2349: has 25 Null-Value and 3 Non-Null Value
ROW 2350: has 26 Null-Value and 2 Non-Null Value
ROW 2351: has 25 Null-Value and 3 Non-Null Value
ROW 2352: has 27 Null-Value and 1 Non-Null Value
ROW 2353: has 27 Null-Value and 1 Non-Null Value
ROW 2354: has 28 Null-Value and 0 Non-Null Value
ROW 2355: has 28 Null-Value and 0 Non-Null Value
ROW 2356: has 28 Null-Value and 0 Non-Null Value
ROW 2357: has 28 Null-Value and 0 Non-Null Value
ROW 2358: has 28 Null-Value and 0 Non-Null Value
ROW 2359: has 28 Null-Value and 0 Non-Null Value
ROW 2360: has 28 Null-Value and 0 Non-Null Value
ROW 2361: has 28 Null-Value and 0 Non-Null Value
ROW 2362: has 27 Null-Value and 1 Non-Null Value
ROW 2363: has 28 Null-Value and 0 Non-Null Value
ROW 2364: has 28 Null-Value and 0 Non-Null Value
ROW 2365: has 28 Null-Value and 0 Non-Null Value
ROW 2366: has 24 Null-Value and 4 Non-Null Value
ROW 2367: has 28 Null-Value and 0 Non-Null Value
ROW 2368: has 28 Null-Value and 0 Non-Null Value
ROW 2369: has 28 Null-Value and 0 Non-Null Value
ROW 2370: has 20 Null-Value and 8 Non-Null Value
ROW 2371: has 28 Null-Value and 0 Non-Null Value
ROW 2372: has 28 Null-Value and 0 Non-Null Value
ROW 2373: has 28 Null-Value and 0 Non-Null Value
ROW 2374: has 25 Null-Value and 3 Non-Null Value
ROW 2375: has 28 Null-Value and 0 Non-Null Value
ROW 2376: has 28 Null-Value and 0 Non-Null Value
ROW 2377: has 28 Null-Value and 0 Non-Null Value
ROW 2378: has 28 Null-Value and 0 Non-Null Value
ROW 2379: has 27 Null-Value and 1 Non-Null Value
ROW 2380: has 28 Null-Value and 0 Non-Null Value
ROW 2381: has 27 Null-Value and 1 Non-Null Value
ROW 2382: has 28 Null-Value and 0 Non-Null Value
ROW 2383: has 28 Null-Value and 0 Non-Null Value
ROW 2384: has 27 Null-Value and 1 Non-Null Value
ROW 2385: has 28 Null-Value and 0 Non-Null Value
ROW 2386: has 28 Null-Value and 0 Non-Null Value
ROW 2387: has 28 Null-Value and 0 Non-Null Value
ROW 2388: has 25 Null-Value and 3 Non-Null Value
ROW 2389: has 28 Null-Value and 0 Non-Null Value
ROW 2390: has 28 Null-Value and 0 Non-Null Value
ROW 2391: has 28 Null-Value and 0 Non-Null Value
ROW 2392: has 28 Null-Value and 0 Non-Null Value
ROW 2393: has 28 Null-Value and 0 Non-Null Value
ROW 2394: has 28 Null-Value and 0 Non-Null Value
ROW 2395: has 28 Null-Value and 0 Non-Null Value
ROW 2396: has 28 Null-Value and 0 Non-Null Value
ROW 2397: has 28 Null-Value and 0 Non-Null Value
ROW 2398: has 28 Null-Value and 0 Non-Null Value
ROW 2399: has 28 Null-Value and 0 Non-Null Value
ROW 2400: has 28 Null-Value and 0 Non-Null Value
ROW 2401: has 28 Null-Value and 0 Non-Null Value
ROW 2402: has 28 Null-Value and 0 Non-Null Value
ROW 2403: has 28 Null-Value and 0 Non-Null Value
ROW 2404: has 28 Null-Value and 0 Non-Null Value
ROW 2405: has 28 Null-Value and 0 Non-Null Value
ROW 2406: has 28 Null-Value and 0 Non-Null Value
ROW 2407: has 28 Null-Value and 0 Non-Null Value
ROW 2408: has 28 Null-Value and 0 Non-Null Value
ROW 2409: has 28 Null-Value and 0 Non-Null Value
ROW 2410: has 28 Null-Value and 0 Non-Null Value
ROW 2411: has 28 Null-Value and 0 Non-Null Value
ROW 2412: has 23 Null-Value and 5 Non-Null Value
ROW 2413: has 28 Null-Value and 0 Non-Null Value
ROW 2414: has 28 Null-Value and 0 Non-Null Value
ROW 2415: has 28 Null-Value and 0 Non-Null Value
ROW 2416: has 28 Null-Value and 0 Non-Null Value
ROW 2417: has 28 Null-Value and 0 Non-Null Value
ROW 2418: has 28 Null-Value and 0 Non-Null Value
ROW 2419: has 28 Null-Value and 0 Non-Null Value
ROW 2420: has 28 Null-Value and 0 Non-Null Value
ROW 2421: has 28 Null-Value and 0 Non-Null Value
ROW 2422: has 27 Null-Value and 1 Non-Null Value
ROW 2423: has 28 Null-Value and 0 Non-Null Value
ROW 2424: has 28 Null-Value and 0 Non-Null Value
ROW 2425: has 28 Null-Value and 0 Non-Null Value
ROW 2426: has 28 Null-Value and 0 Non-Null Value
ROW 2427: has 28 Null-Value and 0 Non-Null Value
ROW 2428: has 28 Null-Value and 0 Non-Null Value
ROW 2429: has 28 Null-Value and 0 Non-Null Value
ROW 2430: has 28 Null-Value and 0 Non-Null Value
ROW 2431: has 28 Null-Value and 0 Non-Null Value
ROW 2432: has 28 Null-Value and 0 Non-Null Value
ROW 2433: has 28 Null-Value and 0 Non-Null Value
ROW 2434: has 28 Null-Value and 0 Non-Null Value
ROW 2435: has 28 Null-Value and 0 Non-Null Value
ROW 2436: has 28 Null-Value and 0 Non-Null Value
ROW 2437: has 28 Null-Value and 0 Non-Null Value
ROW 2438: has 28 Null-Value and 0 Non-Null Value
ROW 2439: has 28 Null-Value and 0 Non-Null Value
ROW 2440: has 27 Null-Value and 1 Non-Null Value
ROW 2441: has 28 Null-Value and 0 Non-Null Value
ROW 2442: has 28 Null-Value and 0 Non-Null Value
ROW 2443: has 28 Null-Value and 0 Non-Null Value
ROW 2444: has 28 Null-Value and 0 Non-Null Value
ROW 2445: has 28 Null-Value and 0 Non-Null Value
ROW 2446: has 28 Null-Value and 0 Non-Null Value
ROW 2447: has 28 Null-Value and 0 Non-Null Value
ROW 2448: has 28 Null-Value and 0 Non-Null Value
ROW 2449: has 28 Null-Value and 0 Non-Null Value
ROW 2450: has 28 Null-Value and 0 Non-Null Value
ROW 2451: has 28 Null-Value and 0 Non-Null Value
ROW 2452: has 28 Null-Value and 0 Non-Null Value
ROW 2453: has 28 Null-Value and 0 Non-Null Value
ROW 2454: has 28 Null-Value and 0 Non-Null Value
ROW 2455: has 27 Null-Value and 1 Non-Null Value
ROW 2456: has 28 Null-Value and 0 Non-Null Value
ROW 2457: has 28 Null-Value and 0 Non-Null Value
ROW 2458: has 28 Null-Value and 0 Non-Null Value
ROW 2459: has 19 Null-Value and 9 Non-Null Value
ROW 2460: has 28 Null-Value and 0 Non-Null Value
ROW 2461: has 23 Null-Value and 5 Non-Null Value
ROW 2462: has 28 Null-Value and 0 Non-Null Value
ROW 2463: has 28 Null-Value and 0 Non-Null Value
ROW 2464: has 27 Null-Value and 1 Non-Null Value
ROW 2465: has 27 Null-Value and 1 Non-Null Value
ROW 2466: has 24 Null-Value and 4 Non-Null Value
ROW 2467: has 27 Null-Value and 1 Non-Null Value
ROW 2468: has 28 Null-Value and 0 Non-Null Value
ROW 2469: has 27 Null-Value and 1 Non-Null Value
ROW 2470: has 26 Null-Value and 2 Non-Null Value
ROW 2471: has 28 Null-Value and 0 Non-Null Value
ROW 2472: has 26 Null-Value and 2 Non-Null Value
ROW 2473: has 27 Null-Value and 1 Non-Null Value
ROW 2474: has 27 Null-Value and 1 Non-Null Value
ROW 2475: has 28 Null-Value and 0 Non-Null Value
ROW 2476: has 27 Null-Value and 1 Non-Null Value
ROW 2477: has 27 Null-Value and 1 Non-Null Value
ROW 2478: has 28 Null-Value and 0 Non-Null Value
ROW 2479: has 28 Null-Value and 0 Non-Null Value
ROW 2480: has 28 Null-Value and 0 Non-Null Value
ROW 2481: has 28 Null-Value and 0 Non-Null Value
ROW 2482: has 28 Null-Value and 0 Non-Null Value
ROW 2483: has 27 Null-Value and 1 Non-Null Value
ROW 2484: has 28 Null-Value and 0 Non-Null Value
ROW 2485: has 28 Null-Value and 0 Non-Null Value
ROW 2486: has 28 Null-Value and 0 Non-Null Value
ROW 2487: has 28 Null-Value and 0 Non-Null Value
ROW 2488: has 28 Null-Value and 0 Non-Null Value
ROW 2489: has 28 Null-Value and 0 Non-Null Value
ROW 2490: has 28 Null-Value and 0 Non-Null Value
ROW 2491: has 28 Null-Value and 0 Non-Null Value
ROW 2492: has 28 Null-Value and 0 Non-Null Value
ROW 2493: has 28 Null-Value and 0 Non-Null Value
ROW 2494: has 28 Null-Value and 0 Non-Null Value
ROW 2495: has 28 Null-Value and 0 Non-Null Value
ROW 2496: has 28 Null-Value and 0 Non-Null Value
ROW 2497: has 28 Null-Value and 0 Non-Null Value
ROW 2498: has 28 Null-Value and 0 Non-Null Value
ROW 2499: has 28 Null-Value and 0 Non-Null Value
ROW 2500: has 28 Null-Value and 0 Non-Null Value
ROW 2501: has 28 Null-Value and 0 Non-Null Value
ROW 2502: has 28 Null-Value and 0 Non-Null Value
ROW 2503: has 28 Null-Value and 0 Non-Null Value
ROW 2504: has 28 Null-Value and 0 Non-Null Value
ROW 2505: has 27 Null-Value and 1 Non-Null Value
ROW 2506: has 27 Null-Value and 1 Non-Null Value
ROW 2507: has 28 Null-Value and 0 Non-Null Value
ROW 2508: has 28 Null-Value and 0 Non-Null Value
ROW 2509: has 28 Null-Value and 0 Non-Null Value
ROW 2510: has 28 Null-Value and 0 Non-Null Value
ROW 2511: has 28 Null-Value and 0 Non-Null Value
ROW 2512: has 28 Null-Value and 0 Non-Null Value
ROW 2513: has 28 Null-Value and 0 Non-Null Value
ROW 2514: has 27 Null-Value and 1 Non-Null Value
ROW 2515: has 28 Null-Value and 0 Non-Null Value
ROW 2516: has 28 Null-Value and 0 Non-Null Value
ROW 2517: has 28 Null-Value and 0 Non-Null Value
ROW 2518: has 28 Null-Value and 0 Non-Null Value
ROW 2519: has 27 Null-Value and 1 Non-Null Value
ROW 2520: has 28 Null-Value and 0 Non-Null Value
ROW 2521: has 27 Null-Value and 1 Non-Null Value
ROW 2522: has 28 Null-Value and 0 Non-Null Value
ROW 2523: has 28 Null-Value and 0 Non-Null Value
ROW 2524: has 28 Null-Value and 0 Non-Null Value
ROW 2525: has 28 Null-Value and 0 Non-Null Value
ROW 2526: has 27 Null-Value and 1 Non-Null Value
ROW 2527: has 28 Null-Value and 0 Non-Null Value
ROW 2528: has 26 Null-Value and 2 Non-Null Value
ROW 2529: has 27 Null-Value and 1 Non-Null Value
ROW 2530: has 28 Null-Value and 0 Non-Null Value
ROW 2531: has 28 Null-Value and 0 Non-Null Value
ROW 2532: has 28 Null-Value and 0 Non-Null Value
ROW 2533: has 28 Null-Value and 0 Non-Null Value
ROW 2534: has 28 Null-Value and 0 Non-Null Value
ROW 2535: has 28 Null-Value and 0 Non-Null Value
ROW 2536: has 28 Null-Value and 0 Non-Null Value
ROW 2537: has 28 Null-Value and 0 Non-Null Value
ROW 2538: has 28 Null-Value and 0 Non-Null Value
ROW 2539: has 28 Null-Value and 0 Non-Null Value
ROW 2540: has 28 Null-Value and 0 Non-Null Value
ROW 2541: has 28 Null-Value and 0 Non-Null Value
ROW 2542: has 28 Null-Value and 0 Non-Null Value
ROW 2543: has 28 Null-Value and 0 Non-Null Value
ROW 2544: has 28 Null-Value and 0 Non-Null Value
ROW 2545: has 28 Null-Value and 0 Non-Null Value
ROW 2546: has 28 Null-Value and 0 Non-Null Value
ROW 2547: has 28 Null-Value and 0 Non-Null Value
ROW 2548: has 28 Null-Value and 0 Non-Null Value
ROW 2549: has 28 Null-Value and 0 Non-Null Value
ROW 2550: has 28 Null-Value and 0 Non-Null Value
ROW 2551: has 28 Null-Value and 0 Non-Null Value
ROW 2552: has 21 Null-Value and 7 Non-Null Value
ROW 2553: has 28 Null-Value and 0 Non-Null Value
ROW 2554: has 28 Null-Value and 0 Non-Null Value
ROW 2555: has 28 Null-Value and 0 Non-Null Value
ROW 2556: has 28 Null-Value and 0 Non-Null Value
ROW 2557: has 28 Null-Value and 0 Non-Null Value
ROW 2558: has 28 Null-Value and 0 Non-Null Value
ROW 2559: has 28 Null-Value and 0 Non-Null Value
ROW 2560: has 28 Null-Value and 0 Non-Null Value
ROW 2561: has 26 Null-Value and 2 Non-Null Value
ROW 2562: has 27 Null-Value and 1 Non-Null Value
ROW 2563: has 28 Null-Value and 0 Non-Null Value
ROW 2564: has 28 Null-Value and 0 Non-Null Value
ROW 2565: has 28 Null-Value and 0 Non-Null Value
ROW 2566: has 28 Null-Value and 0 Non-Null Value
ROW 2567: has 28 Null-Value and 0 Non-Null Value
ROW 2568: has 28 Null-Value and 0 Non-Null Value
ROW 2569: has 28 Null-Value and 0 Non-Null Value
ROW 2570: has 28 Null-Value and 0 Non-Null Value
ROW 2571: has 28 Null-Value and 0 Non-Null Value
ROW 2572: has 28 Null-Value and 0 Non-Null Value
ROW 2573: has 28 Null-Value and 0 Non-Null Value
ROW 2574: has 27 Null-Value and 1 Non-Null Value
ROW 2575: has 27 Null-Value and 1 Non-Null Value
ROW 2576: has 28 Null-Value and 0 Non-Null Value
ROW 2577: has 28 Null-Value and 0 Non-Null Value
ROW 2578: has 28 Null-Value and 0 Non-Null Value
ROW 2579: has 28 Null-Value and 0 Non-Null Value
ROW 2580: has 28 Null-Value and 0 Non-Null Value
ROW 2581: has 28 Null-Value and 0 Non-Null Value
ROW 2582: has 28 Null-Value and 0 Non-Null Value
ROW 2583: has 28 Null-Value and 0 Non-Null Value
ROW 2584: has 28 Null-Value and 0 Non-Null Value
ROW 2585: has 28 Null-Value and 0 Non-Null Value
ROW 2586: has 26 Null-Value and 2 Non-Null Value
ROW 2587: has 28 Null-Value and 0 Non-Null Value
ROW 2588: has 28 Null-Value and 0 Non-Null Value
ROW 2589: has 28 Null-Value and 0 Non-Null Value
ROW 2590: has 27 Null-Value and 1 Non-Null Value
ROW 2591: has 27 Null-Value and 1 Non-Null Value
ROW 2592: has 28 Null-Value and 0 Non-Null Value
ROW 2593: has 28 Null-Value and 0 Non-Null Value
ROW 2594: has 24 Null-Value and 4 Non-Null Value
ROW 2595: has 27 Null-Value and 1 Non-Null Value
ROW 2596: has 27 Null-Value and 1 Non-Null Value
ROW 2597: has 28 Null-Value and 0 Non-Null Value
ROW 2598: has 28 Null-Value and 0 Non-Null Value
ROW 2599: has 28 Null-Value and 0 Non-Null Value
ROW 2600: has 28 Null-Value and 0 Non-Null Value
ROW 2601: has 28 Null-Value and 0 Non-Null Value
ROW 2602: has 28 Null-Value and 0 Non-Null Value
ROW 2603: has 28 Null-Value and 0 Non-Null Value
ROW 2604: has 28 Null-Value and 0 Non-Null Value
ROW 2605: has 28 Null-Value and 0 Non-Null Value
ROW 2606: has 28 Null-Value and 0 Non-Null Value
ROW 2607: has 28 Null-Value and 0 Non-Null Value
ROW 2608: has 28 Null-Value and 0 Non-Null Value
ROW 2609: has 23 Null-Value and 5 Non-Null Value
ROW 2610: has 28 Null-Value and 0 Non-Null Value
ROW 2611: has 28 Null-Value and 0 Non-Null Value
ROW 2612: has 26 Null-Value and 2 Non-Null Value
ROW 2613: has 27 Null-Value and 1 Non-Null Value
ROW 2614: has 28 Null-Value and 0 Non-Null Value
ROW 2615: has 28 Null-Value and 0 Non-Null Value
ROW 2616: has 27 Null-Value and 1 Non-Null Value
ROW 2617: has 28 Null-Value and 0 Non-Null Value
ROW 2618: has 28 Null-Value and 0 Non-Null Value
ROW 2619: has 28 Null-Value and 0 Non-Null Value
ROW 2620: has 28 Null-Value and 0 Non-Null Value
ROW 2621: has 28 Null-Value and 0 Non-Null Value
ROW 2622: has 28 Null-Value and 0 Non-Null Value
ROW 2623: has 28 Null-Value and 0 Non-Null Value
ROW 2624: has 28 Null-Value and 0 Non-Null Value
ROW 2625: has 28 Null-Value and 0 Non-Null Value
ROW 2626: has 28 Null-Value and 0 Non-Null Value
ROW 2627: has 28 Null-Value and 0 Non-Null Value
ROW 2628: has 28 Null-Value and 0 Non-Null Value
ROW 2629: has 27 Null-Value and 1 Non-Null Value
ROW 2630: has 28 Null-Value and 0 Non-Null Value
ROW 2631: has 28 Null-Value and 0 Non-Null Value
ROW 2632: has 28 Null-Value and 0 Non-Null Value
ROW 2633: has 28 Null-Value and 0 Non-Null Value
ROW 2634: has 28 Null-Value and 0 Non-Null Value
ROW 2635: has 27 Null-Value and 1 Non-Null Value
ROW 2636: has 28 Null-Value and 0 Non-Null Value
ROW 2637: has 28 Null-Value and 0 Non-Null Value
ROW 2638: has 28 Null-Value and 0 Non-Null Value
ROW 2639: has 28 Null-Value and 0 Non-Null Value
ROW 2640: has 28 Null-Value and 0 Non-Null Value
ROW 2641: has 28 Null-Value and 0 Non-Null Value
ROW 2642: has 28 Null-Value and 0 Non-Null Value
ROW 2643: has 28 Null-Value and 0 Non-Null Value
ROW 2644: has 28 Null-Value and 0 Non-Null Value
ROW 2645: has 28 Null-Value and 0 Non-Null Value
ROW 2646: has 28 Null-Value and 0 Non-Null Value
ROW 2647: has 28 Null-Value and 0 Non-Null Value
ROW 2648: has 28 Null-Value and 0 Non-Null Value
ROW 2649: has 28 Null-Value and 0 Non-Null Value
ROW 2650: has 28 Null-Value and 0 Non-Null Value
ROW 2651: has 28 Null-Value and 0 Non-Null Value
ROW 2652: has 28 Null-Value and 0 Non-Null Value
ROW 2653: has 28 Null-Value and 0 Non-Null Value
ROW 2654: has 28 Null-Value and 0 Non-Null Value
ROW 2655: has 28 Null-Value and 0 Non-Null Value
ROW 2656: has 28 Null-Value and 0 Non-Null Value
ROW 2657: has 28 Null-Value and 0 Non-Null Value
ROW 2658: has 28 Null-Value and 0 Non-Null Value
ROW 2659: has 28 Null-Value and 0 Non-Null Value
ROW 2660: has 28 Null-Value and 0 Non-Null Value
ROW 2661: has 28 Null-Value and 0 Non-Null Value
ROW 2662: has 28 Null-Value and 0 Non-Null Value
ROW 2663: has 28 Null-Value and 0 Non-Null Value
ROW 2664: has 28 Null-Value and 0 Non-Null Value
ROW 2665: has 28 Null-Value and 0 Non-Null Value
ROW 2666: has 28 Null-Value and 0 Non-Null Value
ROW 2667: has 28 Null-Value and 0 Non-Null Value
ROW 2668: has 28 Null-Value and 0 Non-Null Value
ROW 2669: has 28 Null-Value and 0 Non-Null Value
ROW 2670: has 28 Null-Value and 0 Non-Null Value
ROW 2671: has 28 Null-Value and 0 Non-Null Value
ROW 2672: has 28 Null-Value and 0 Non-Null Value
ROW 2673: has 28 Null-Value and 0 Non-Null Value
ROW 2674: has 28 Null-Value and 0 Non-Null Value
ROW 2675: has 28 Null-Value and 0 Non-Null Value
ROW 2676: has 28 Null-Value and 0 Non-Null Value
ROW 2677: has 28 Null-Value and 0 Non-Null Value
ROW 2678: has 28 Null-Value and 0 Non-Null Value
ROW 2679: has 28 Null-Value and 0 Non-Null Value
ROW 2680: has 28 Null-Value and 0 Non-Null Value
ROW 2681: has 28 Null-Value and 0 Non-Null Value
ROW 2682: has 28 Null-Value and 0 Non-Null Value
ROW 2683: has 28 Null-Value and 0 Non-Null Value
ROW 2684: has 28 Null-Value and 0 Non-Null Value
ROW 2685: has 28 Null-Value and 0 Non-Null Value
ROW 2686: has 27 Null-Value and 1 Non-Null Value
ROW 2687: has 28 Null-Value and 0 Non-Null Value
ROW 2688: has 28 Null-Value and 0 Non-Null Value
ROW 2689: has 28 Null-Value and 0 Non-Null Value
ROW 2690: has 28 Null-Value and 0 Non-Null Value
ROW 2691: has 27 Null-Value and 1 Non-Null Value
ROW 2692: has 28 Null-Value and 0 Non-Null Value
ROW 2693: has 28 Null-Value and 0 Non-Null Value
ROW 2694: has 28 Null-Value and 0 Non-Null Value
ROW 2695: has 28 Null-Value and 0 Non-Null Value
ROW 2696: has 28 Null-Value and 0 Non-Null Value
ROW 2697: has 28 Null-Value and 0 Non-Null Value
ROW 2698: has 28 Null-Value and 0 Non-Null Value
ROW 2699: has 28 Null-Value and 0 Non-Null Value
ROW 2700: has 28 Null-Value and 0 Non-Null Value
ROW 2701: has 28 Null-Value and 0 Non-Null Value
ROW 2702: has 22 Null-Value and 6 Non-Null Value
ROW 2703: has 28 Null-Value and 0 Non-Null Value
ROW 2704: has 28 Null-Value and 0 Non-Null Value
ROW 2705: has 28 Null-Value and 0 Non-Null Value
ROW 2706: has 28 Null-Value and 0 Non-Null Value
ROW 2707: has 28 Null-Value and 0 Non-Null Value
ROW 2708: has 28 Null-Value and 0 Non-Null Value
ROW 2709: has 28 Null-Value and 0 Non-Null Value
ROW 2710: has 25 Null-Value and 3 Non-Null Value
ROW 2711: has 28 Null-Value and 0 Non-Null Value
ROW 2712: has 28 Null-Value and 0 Non-Null Value
ROW 2713: has 28 Null-Value and 0 Non-Null Value
ROW 2714: has 28 Null-Value and 0 Non-Null Value
ROW 2715: has 28 Null-Value and 0 Non-Null Value
ROW 2716: has 28 Null-Value and 0 Non-Null Value
ROW 2717: has 28 Null-Value and 0 Non-Null Value
ROW 2718: has 28 Null-Value and 0 Non-Null Value
ROW 2719: has 28 Null-Value and 0 Non-Null Value
ROW 2720: has 28 Null-Value and 0 Non-Null Value
ROW 2721: has 28 Null-Value and 0 Non-Null Value
ROW 2722: has 28 Null-Value and 0 Non-Null Value
ROW 2723: has 28 Null-Value and 0 Non-Null Value
ROW 2724: has 27 Null-Value and 1 Non-Null Value
ROW 2725: has 28 Null-Value and 0 Non-Null Value
ROW 2726: has 28 Null-Value and 0 Non-Null Value
ROW 2727: has 22 Null-Value and 6 Non-Null Value
ROW 2728: has 28 Null-Value and 0 Non-Null Value
ROW 2729: has 28 Null-Value and 0 Non-Null Value
ROW 2730: has 28 Null-Value and 0 Non-Null Value
ROW 2731: has 28 Null-Value and 0 Non-Null Value
ROW 2732: has 25 Null-Value and 3 Non-Null Value
ROW 2733: has 27 Null-Value and 1 Non-Null Value
ROW 2734: has 28 Null-Value and 0 Non-Null Value
ROW 2735: has 28 Null-Value and 0 Non-Null Value
ROW 2736: has 28 Null-Value and 0 Non-Null Value
ROW 2737: has 28 Null-Value and 0 Non-Null Value
ROW 2738: has 28 Null-Value and 0 Non-Null Value
ROW 2739: has 27 Null-Value and 1 Non-Null Value
ROW 2740: has 28 Null-Value and 0 Non-Null Value
ROW 2741: has 27 Null-Value and 1 Non-Null Value
ROW 2742: has 27 Null-Value and 1 Non-Null Value
ROW 2743: has 28 Null-Value and 0 Non-Null Value
ROW 2744: has 26 Null-Value and 2 Non-Null Value
ROW 2745: has 28 Null-Value and 0 Non-Null Value
ROW 2746: has 28 Null-Value and 0 Non-Null Value
ROW 2747: has 28 Null-Value and 0 Non-Null Value
ROW 2748: has 26 Null-Value and 2 Non-Null Value
ROW 2749: has 26 Null-Value and 2 Non-Null Value
ROW 2750: has 27 Null-Value and 1 Non-Null Value
ROW 2751: has 27 Null-Value and 1 Non-Null Value
ROW 2752: has 24 Null-Value and 4 Non-Null Value
ROW 2753: has 26 Null-Value and 2 Non-Null Value
ROW 2754: has 26 Null-Value and 2 Non-Null Value
ROW 2755: has 28 Null-Value and 0 Non-Null Value
ROW 2756: has 28 Null-Value and 0 Non-Null Value
ROW 2757: has 28 Null-Value and 0 Non-Null Value
ROW 2758: has 28 Null-Value and 0 Non-Null Value
ROW 2759: has 26 Null-Value and 2 Non-Null Value
ROW 2760: has 28 Null-Value and 0 Non-Null Value
ROW 2761: has 28 Null-Value and 0 Non-Null Value
ROW 2762: has 28 Null-Value and 0 Non-Null Value
ROW 2763: has 28 Null-Value and 0 Non-Null Value
ROW 2764: has 28 Null-Value and 0 Non-Null Value
ROW 2765: has 21 Null-Value and 7 Non-Null Value
ROW 2766: has 28 Null-Value and 0 Non-Null Value
ROW 2767: has 26 Null-Value and 2 Non-Null Value
ROW 2768: has 28 Null-Value and 0 Non-Null Value
ROW 2769: has 28 Null-Value and 0 Non-Null Value
ROW 2770: has 28 Null-Value and 0 Non-Null Value
ROW 2771: has 28 Null-Value and 0 Non-Null Value
ROW 2772: has 27 Null-Value and 1 Non-Null Value
ROW 2773: has 28 Null-Value and 0 Non-Null Value
ROW 2774: has 28 Null-Value and 0 Non-Null Value
ROW 2775: has 21 Null-Value and 7 Non-Null Value
ROW 2776: has 28 Null-Value and 0 Non-Null Value
ROW 2777: has 28 Null-Value and 0 Non-Null Value
ROW 2778: has 27 Null-Value and 1 Non-Null Value
ROW 2779: has 28 Null-Value and 0 Non-Null Value
ROW 2780: has 28 Null-Value and 0 Non-Null Value
ROW 2781: has 28 Null-Value and 0 Non-Null Value
ROW 2782: has 28 Null-Value and 0 Non-Null Value
ROW 2783: has 28 Null-Value and 0 Non-Null Value
ROW 2784: has 28 Null-Value and 0 Non-Null Value
ROW 2785: has 28 Null-Value and 0 Non-Null Value
ROW 2786: has 27 Null-Value and 1 Non-Null Value
ROW 2787: has 28 Null-Value and 0 Non-Null Value
ROW 2788: has 28 Null-Value and 0 Non-Null Value
ROW 2789: has 28 Null-Value and 0 Non-Null Value
ROW 2790: has 28 Null-Value and 0 Non-Null Value
ROW 2791: has 28 Null-Value and 0 Non-Null Value
ROW 2792: has 28 Null-Value and 0 Non-Null Value
ROW 2793: has 28 Null-Value and 0 Non-Null Value
ROW 2794: has 27 Null-Value and 1 Non-Null Value
ROW 2795: has 28 Null-Value and 0 Non-Null Value
ROW 2796: has 27 Null-Value and 1 Non-Null Value
ROW 2797: has 28 Null-Value and 0 Non-Null Value
ROW 2798: has 28 Null-Value and 0 Non-Null Value
ROW 2799: has 28 Null-Value and 0 Non-Null Value
ROW 2800: has 28 Null-Value and 0 Non-Null Value
ROW 2801: has 28 Null-Value and 0 Non-Null Value
ROW 2802: has 27 Null-Value and 1 Non-Null Value
ROW 2803: has 28 Null-Value and 0 Non-Null Value
ROW 2804: has 28 Null-Value and 0 Non-Null Value
ROW 2805: has 28 Null-Value and 0 Non-Null Value
ROW 2806: has 28 Null-Value and 0 Non-Null Value
ROW 2807: has 28 Null-Value and 0 Non-Null Value
ROW 2808: has 28 Null-Value and 0 Non-Null Value
ROW 2809: has 27 Null-Value and 1 Non-Null Value
ROW 2810: has 28 Null-Value and 0 Non-Null Value
ROW 2811: has 28 Null-Value and 0 Non-Null Value
ROW 2812: has 27 Null-Value and 1 Non-Null Value
ROW 2813: has 28 Null-Value and 0 Non-Null Value
ROW 2814: has 27 Null-Value and 1 Non-Null Value
ROW 2815: has 28 Null-Value and 0 Non-Null Value
ROW 2816: has 28 Null-Value and 0 Non-Null Value
ROW 2817: has 26 Null-Value and 2 Non-Null Value
ROW 2818: has 28 Null-Value and 0 Non-Null Value
ROW 2819: has 28 Null-Value and 0 Non-Null Value
ROW 2820: has 28 Null-Value and 0 Non-Null Value
ROW 2821: has 28 Null-Value and 0 Non-Null Value
ROW 2822: has 28 Null-Value and 0 Non-Null Value
ROW 2823: has 28 Null-Value and 0 Non-Null Value
ROW 2824: has 24 Null-Value and 4 Non-Null Value
ROW 2825: has 28 Null-Value and 0 Non-Null Value
ROW 2826: has 28 Null-Value and 0 Non-Null Value
ROW 2827: has 27 Null-Value and 1 Non-Null Value
ROW 2828: has 20 Null-Value and 8 Non-Null Value
ROW 2829: has 28 Null-Value and 0 Non-Null Value
ROW 2830: has 28 Null-Value and 0 Non-Null Value
ROW 2831: has 27 Null-Value and 1 Non-Null Value
ROW 2832: has 28 Null-Value and 0 Non-Null Value
ROW 2833: has 28 Null-Value and 0 Non-Null Value
ROW 2834: has 28 Null-Value and 0 Non-Null Value
ROW 2835: has 28 Null-Value and 0 Non-Null Value
ROW 2836: has 28 Null-Value and 0 Non-Null Value
ROW 2837: has 28 Null-Value and 0 Non-Null Value
ROW 2838: has 28 Null-Value and 0 Non-Null Value
ROW 2839: has 28 Null-Value and 0 Non-Null Value
ROW 2840: has 28 Null-Value and 0 Non-Null Value
ROW 2841: has 28 Null-Value and 0 Non-Null Value
ROW 2842: has 28 Null-Value and 0 Non-Null Value
ROW 2843: has 28 Null-Value and 0 Non-Null Value
ROW 2844: has 28 Null-Value and 0 Non-Null Value
ROW 2845: has 28 Null-Value and 0 Non-Null Value
ROW 2846: has 28 Null-Value and 0 Non-Null Value
ROW 2847: has 28 Null-Value and 0 Non-Null Value
ROW 2848: has 28 Null-Value and 0 Non-Null Value
ROW 2849: has 28 Null-Value and 0 Non-Null Value
ROW 2850: has 28 Null-Value and 0 Non-Null Value
ROW 2851: has 28 Null-Value and 0 Non-Null Value
ROW 2852: has 28 Null-Value and 0 Non-Null Value
ROW 2853: has 28 Null-Value and 0 Non-Null Value
ROW 2854: has 28 Null-Value and 0 Non-Null Value
ROW 2855: has 28 Null-Value and 0 Non-Null Value
ROW 2856: has 28 Null-Value and 0 Non-Null Value
ROW 2857: has 28 Null-Value and 0 Non-Null Value
ROW 2858: has 28 Null-Value and 0 Non-Null Value
ROW 2859: has 28 Null-Value and 0 Non-Null Value
ROW 2860: has 28 Null-Value and 0 Non-Null Value
ROW 2861: has 28 Null-Value and 0 Non-Null Value
ROW 2862: has 28 Null-Value and 0 Non-Null Value
ROW 2863: has 28 Null-Value and 0 Non-Null Value
ROW 2864: has 28 Null-Value and 0 Non-Null Value
ROW 2865: has 27 Null-Value and 1 Non-Null Value
ROW 2866: has 28 Null-Value and 0 Non-Null Value
ROW 2867: has 28 Null-Value and 0 Non-Null Value
ROW 2868: has 28 Null-Value and 0 Non-Null Value
ROW 2869: has 28 Null-Value and 0 Non-Null Value
ROW 2870: has 20 Null-Value and 8 Non-Null Value
ROW 2871: has 28 Null-Value and 0 Non-Null Value
ROW 2872: has 28 Null-Value and 0 Non-Null Value
ROW 2873: has 28 Null-Value and 0 Non-Null Value
ROW 2874: has 28 Null-Value and 0 Non-Null Value
ROW 2875: has 28 Null-Value and 0 Non-Null Value
ROW 2876: has 28 Null-Value and 0 Non-Null Value
ROW 2877: has 28 Null-Value and 0 Non-Null Value
ROW 2878: has 28 Null-Value and 0 Non-Null Value
ROW 2879: has 28 Null-Value and 0 Non-Null Value
ROW 2880: has 28 Null-Value and 0 Non-Null Value
ROW 2881: has 28 Null-Value and 0 Non-Null Value
ROW 2882: has 28 Null-Value and 0 Non-Null Value
ROW 2883: has 28 Null-Value and 0 Non-Null Value
ROW 2884: has 28 Null-Value and 0 Non-Null Value
ROW 2885: has 28 Null-Value and 0 Non-Null Value
ROW 2886: has 28 Null-Value and 0 Non-Null Value
ROW 2887: has 28 Null-Value and 0 Non-Null Value
ROW 2888: has 28 Null-Value and 0 Non-Null Value
ROW 2889: has 28 Null-Value and 0 Non-Null Value
ROW 2890: has 28 Null-Value and 0 Non-Null Value
ROW 2891: has 28 Null-Value and 0 Non-Null Value
ROW 2892: has 25 Null-Value and 3 Non-Null Value
ROW 2893: has 28 Null-Value and 0 Non-Null Value
ROW 2894: has 28 Null-Value and 0 Non-Null Value
ROW 2895: has 27 Null-Value and 1 Non-Null Value
ROW 2896: has 28 Null-Value and 0 Non-Null Value
ROW 2897: has 28 Null-Value and 0 Non-Null Value
ROW 2898: has 28 Null-Value and 0 Non-Null Value
ROW 2899: has 27 Null-Value and 1 Non-Null Value
ROW 2900: has 28 Null-Value and 0 Non-Null Value
ROW 2901: has 28 Null-Value and 0 Non-Null Value
ROW 2902: has 27 Null-Value and 1 Non-Null Value
ROW 2903: has 28 Null-Value and 0 Non-Null Value
ROW 2904: has 26 Null-Value and 2 Non-Null Value
ROW 2905: has 28 Null-Value and 0 Non-Null Value
ROW 2906: has 28 Null-Value and 0 Non-Null Value
ROW 2907: has 28 Null-Value and 0 Non-Null Value
ROW 2908: has 28 Null-Value and 0 Non-Null Value
ROW 2909: has 28 Null-Value and 0 Non-Null Value
ROW 2910: has 28 Null-Value and 0 Non-Null Value
ROW 2911: has 28 Null-Value and 0 Non-Null Value
ROW 2912: has 28 Null-Value and 0 Non-Null Value
ROW 2913: has 28 Null-Value and 0 Non-Null Value
ROW 2914: has 28 Null-Value and 0 Non-Null Value
ROW 2915: has 28 Null-Value and 0 Non-Null Value
ROW 2916: has 28 Null-Value and 0 Non-Null Value
ROW 2917: has 28 Null-Value and 0 Non-Null Value
ROW 2918: has 28 Null-Value and 0 Non-Null Value
ROW 2919: has 28 Null-Value and 0 Non-Null Value
ROW 2920: has 28 Null-Value and 0 Non-Null Value
ROW 2921: has 28 Null-Value and 0 Non-Null Value
ROW 2922: has 28 Null-Value and 0 Non-Null Value
ROW 2923: has 28 Null-Value and 0 Non-Null Value
ROW 2924: has 28 Null-Value and 0 Non-Null Value
ROW 2925: has 28 Null-Value and 0 Non-Null Value
ROW 2926: has 28 Null-Value and 0 Non-Null Value
ROW 2927: has 28 Null-Value and 0 Non-Null Value
ROW 2928: has 28 Null-Value and 0 Non-Null Value
ROW 2929: has 28 Null-Value and 0 Non-Null Value
ROW 2930: has 28 Null-Value and 0 Non-Null Value
ROW 2931: has 28 Null-Value and 0 Non-Null Value
ROW 2932: has 28 Null-Value and 0 Non-Null Value
ROW 2933: has 28 Null-Value and 0 Non-Null Value
ROW 2934: has 28 Null-Value and 0 Non-Null Value
ROW 2935: has 28 Null-Value and 0 Non-Null Value
ROW 2936: has 28 Null-Value and 0 Non-Null Value
ROW 2937: has 27 Null-Value and 1 Non-Null Value
ROW 2938: has 28 Null-Value and 0 Non-Null Value
ROW 2939: has 28 Null-Value and 0 Non-Null Value
ROW 2940: has 28 Null-Value and 0 Non-Null Value
ROW 2941: has 28 Null-Value and 0 Non-Null Value
ROW 2942: has 28 Null-Value and 0 Non-Null Value
ROW 2943: has 28 Null-Value and 0 Non-Null Value
ROW 2944: has 28 Null-Value and 0 Non-Null Value
ROW 2945: has 28 Null-Value and 0 Non-Null Value
ROW 2946: has 28 Null-Value and 0 Non-Null Value
ROW 2947: has 28 Null-Value and 0 Non-Null Value
ROW 2948: has 28 Null-Value and 0 Non-Null Value
ROW 2949: has 28 Null-Value and 0 Non-Null Value
ROW 2950: has 27 Null-Value and 1 Non-Null Value
ROW 2951: has 28 Null-Value and 0 Non-Null Value
ROW 2952: has 23 Null-Value and 5 Non-Null Value
ROW 2953: has 28 Null-Value and 0 Non-Null Value
ROW 2954: has 28 Null-Value and 0 Non-Null Value
ROW 2955: has 27 Null-Value and 1 Non-Null Value
ROW 2956: has 28 Null-Value and 0 Non-Null Value
ROW 2957: has 28 Null-Value and 0 Non-Null Value
ROW 2958: has 27 Null-Value and 1 Non-Null Value
ROW 2959: has 28 Null-Value and 0 Non-Null Value
ROW 2960: has 28 Null-Value and 0 Non-Null Value
ROW 2961: has 28 Null-Value and 0 Non-Null Value
ROW 2962: has 28 Null-Value and 0 Non-Null Value
ROW 2963: has 28 Null-Value and 0 Non-Null Value
ROW 2964: has 27 Null-Value and 1 Non-Null Value
ROW 2965: has 28 Null-Value and 0 Non-Null Value
ROW 2966: has 27 Null-Value and 1 Non-Null Value
ROW 2967: has 27 Null-Value and 1 Non-Null Value
ROW 2968: has 27 Null-Value and 1 Non-Null Value
ROW 2969: has 27 Null-Value and 1 Non-Null Value
ROW 2970: has 28 Null-Value and 0 Non-Null Value
ROW 2971: has 28 Null-Value and 0 Non-Null Value
ROW 2972: has 28 Null-Value and 0 Non-Null Value
ROW 2973: has 28 Null-Value and 0 Non-Null Value
ROW 2974: has 28 Null-Value and 0 Non-Null Value
ROW 2975: has 28 Null-Value and 0 Non-Null Value
ROW 2976: has 28 Null-Value and 0 Non-Null Value
ROW 2977: has 28 Null-Value and 0 Non-Null Value
ROW 2978: has 28 Null-Value and 0 Non-Null Value
ROW 2979: has 28 Null-Value and 0 Non-Null Value
ROW 2980: has 28 Null-Value and 0 Non-Null Value
ROW 2981: has 28 Null-Value and 0 Non-Null Value
ROW 2982: has 28 Null-Value and 0 Non-Null Value
ROW 2983: has 28 Null-Value and 0 Non-Null Value
ROW 2984: has 28 Null-Value and 0 Non-Null Value
ROW 2985: has 28 Null-Value and 0 Non-Null Value
ROW 2986: has 28 Null-Value and 0 Non-Null Value
ROW 2987: has 28 Null-Value and 0 Non-Null Value
ROW 2988: has 28 Null-Value and 0 Non-Null Value
ROW 2989: has 27 Null-Value and 1 Non-Null Value
ROW 2990: has 28 Null-Value and 0 Non-Null Value
ROW 2991: has 28 Null-Value and 0 Non-Null Value
ROW 2992: has 28 Null-Value and 0 Non-Null Value
ROW 2993: has 28 Null-Value and 0 Non-Null Value
ROW 2994: has 28 Null-Value and 0 Non-Null Value
ROW 2995: has 28 Null-Value and 0 Non-Null Value
ROW 2996: has 28 Null-Value and 0 Non-Null Value
ROW 2997: has 28 Null-Value and 0 Non-Null Value
ROW 2998: has 28 Null-Value and 0 Non-Null Value
ROW 2999: has 28 Null-Value and 0 Non-Null Value
ROW 3000: has 28 Null-Value and 0 Non-Null Value
ROW 3001: has 28 Null-Value and 0 Non-Null Value
ROW 3002: has 28 Null-Value and 0 Non-Null Value
ROW 3003: has 27 Null-Value and 1 Non-Null Value
ROW 3004: has 28 Null-Value and 0 Non-Null Value
ROW 3005: has 28 Null-Value and 0 Non-Null Value
ROW 3006: has 28 Null-Value and 0 Non-Null Value
ROW 3007: has 27 Null-Value and 1 Non-Null Value
ROW 3008: has 27 Null-Value and 1 Non-Null Value
ROW 3009: has 28 Null-Value and 0 Non-Null Value
ROW 3010: has 28 Null-Value and 0 Non-Null Value
ROW 3011: has 25 Null-Value and 3 Non-Null Value
ROW 3012: has 27 Null-Value and 1 Non-Null Value
ROW 3013: has 28 Null-Value and 0 Non-Null Value
ROW 3014: has 27 Null-Value and 1 Non-Null Value
ROW 3015: has 27 Null-Value and 1 Non-Null Value
ROW 3016: has 27 Null-Value and 1 Non-Null Value
ROW 3017: has 28 Null-Value and 0 Non-Null Value
ROW 3018: has 25 Null-Value and 3 Non-Null Value
ROW 3019: has 28 Null-Value and 0 Non-Null Value
ROW 3020: has 27 Null-Value and 1 Non-Null Value
ROW 3021: has 27 Null-Value and 1 Non-Null Value
ROW 3022: has 25 Null-Value and 3 Non-Null Value
ROW 3023: has 28 Null-Value and 0 Non-Null Value
ROW 3024: has 28 Null-Value and 0 Non-Null Value
ROW 3025: has 28 Null-Value and 0 Non-Null Value
ROW 3026: has 28 Null-Value and 0 Non-Null Value
ROW 3027: has 27 Null-Value and 1 Non-Null Value
ROW 3028: has 28 Null-Value and 0 Non-Null Value
ROW 3029: has 28 Null-Value and 0 Non-Null Value
ROW 3030: has 27 Null-Value and 1 Non-Null Value
ROW 3031: has 28 Null-Value and 0 Non-Null Value
ROW 3032: has 28 Null-Value and 0 Non-Null Value
ROW 3033: has 25 Null-Value and 3 Non-Null Value
ROW 3034: has 28 Null-Value and 0 Non-Null Value
ROW 3035: has 27 Null-Value and 1 Non-Null Value
ROW 3036: has 28 Null-Value and 0 Non-Null Value
ROW 3037: has 28 Null-Value and 0 Non-Null Value
ROW 3038: has 28 Null-Value and 0 Non-Null Value
ROW 3039: has 28 Null-Value and 0 Non-Null Value
ROW 3040: has 28 Null-Value and 0 Non-Null Value
ROW 3041: has 27 Null-Value and 1 Non-Null Value
ROW 3042: has 28 Null-Value and 0 Non-Null Value
ROW 3043: has 28 Null-Value and 0 Non-Null Value
ROW 3044: has 28 Null-Value and 0 Non-Null Value
ROW 3045: has 27 Null-Value and 1 Non-Null Value
ROW 3046: has 28 Null-Value and 0 Non-Null Value
ROW 3047: has 28 Null-Value and 0 Non-Null Value
ROW 3048: has 27 Null-Value and 1 Non-Null Value
ROW 3049: has 28 Null-Value and 0 Non-Null Value
ROW 3050: has 28 Null-Value and 0 Non-Null Value
ROW 3051: has 28 Null-Value and 0 Non-Null Value
ROW 3052: has 28 Null-Value and 0 Non-Null Value
ROW 3053: has 28 Null-Value and 0 Non-Null Value
ROW 3054: has 28 Null-Value and 0 Non-Null Value
ROW 3055: has 28 Null-Value and 0 Non-Null Value
ROW 3056: has 28 Null-Value and 0 Non-Null Value
ROW 3057: has 28 Null-Value and 0 Non-Null Value
ROW 3058: has 28 Null-Value and 0 Non-Null Value
ROW 3059: has 28 Null-Value and 0 Non-Null Value
ROW 3060: has 28 Null-Value and 0 Non-Null Value
ROW 3061: has 28 Null-Value and 0 Non-Null Value
ROW 3062: has 28 Null-Value and 0 Non-Null Value
ROW 3063: has 28 Null-Value and 0 Non-Null Value
ROW 3064: has 28 Null-Value and 0 Non-Null Value
ROW 3065: has 28 Null-Value and 0 Non-Null Value
ROW 3066: has 27 Null-Value and 1 Non-Null Value
ROW 3067: has 27 Null-Value and 1 Non-Null Value
ROW 3068: has 28 Null-Value and 0 Non-Null Value
ROW 3069: has 28 Null-Value and 0 Non-Null Value
ROW 3070: has 27 Null-Value and 1 Non-Null Value
ROW 3071: has 28 Null-Value and 0 Non-Null Value
ROW 3072: has 26 Null-Value and 2 Non-Null Value
ROW 3073: has 27 Null-Value and 1 Non-Null Value
ROW 3074: has 28 Null-Value and 0 Non-Null Value
ROW 3075: has 28 Null-Value and 0 Non-Null Value
ROW 3076: has 28 Null-Value and 0 Non-Null Value
ROW 3077: has 28 Null-Value and 0 Non-Null Value
ROW 3078: has 28 Null-Value and 0 Non-Null Value
ROW 3079: has 28 Null-Value and 0 Non-Null Value
ROW 3080: has 28 Null-Value and 0 Non-Null Value
ROW 3081: has 28 Null-Value and 0 Non-Null Value
ROW 3082: has 27 Null-Value and 1 Non-Null Value
ROW 3083: has 27 Null-Value and 1 Non-Null Value
ROW 3084: has 21 Null-Value and 7 Non-Null Value
ROW 3085: has 25 Null-Value and 3 Non-Null Value
ROW 3086: has 27 Null-Value and 1 Non-Null Value
ROW 3087: has 28 Null-Value and 0 Non-Null Value
ROW 3088: has 26 Null-Value and 2 Non-Null Value
ROW 3089: has 28 Null-Value and 0 Non-Null Value
ROW 3090: has 27 Null-Value and 1 Non-Null Value
ROW 3091: has 28 Null-Value and 0 Non-Null Value
ROW 3092: has 28 Null-Value and 0 Non-Null Value
ROW 3093: has 28 Null-Value and 0 Non-Null Value
ROW 3094: has 28 Null-Value and 0 Non-Null Value
ROW 3095: has 28 Null-Value and 0 Non-Null Value
ROW 3096: has 28 Null-Value and 0 Non-Null Value
ROW 3097: has 28 Null-Value and 0 Non-Null Value
ROW 3098: has 28 Null-Value and 0 Non-Null Value
ROW 3099: has 28 Null-Value and 0 Non-Null Value
ROW 3100: has 28 Null-Value and 0 Non-Null Value
ROW 3101: has 27 Null-Value and 1 Non-Null Value
ROW 3102: has 28 Null-Value and 0 Non-Null Value
ROW 3103: has 28 Null-Value and 0 Non-Null Value
ROW 3104: has 28 Null-Value and 0 Non-Null Value
ROW 3105: has 28 Null-Value and 0 Non-Null Value
ROW 3106: has 28 Null-Value and 0 Non-Null Value
ROW 3107: has 28 Null-Value and 0 Non-Null Value
ROW 3108: has 28 Null-Value and 0 Non-Null Value
ROW 3109: has 28 Null-Value and 0 Non-Null Value
ROW 3110: has 28 Null-Value and 0 Non-Null Value
ROW 3111: has 27 Null-Value and 1 Non-Null Value
ROW 3112: has 28 Null-Value and 0 Non-Null Value
ROW 3113: has 28 Null-Value and 0 Non-Null Value
ROW 3114: has 28 Null-Value and 0 Non-Null Value
ROW 3115: has 28 Null-Value and 0 Non-Null Value
ROW 3116: has 28 Null-Value and 0 Non-Null Value
ROW 3117: has 28 Null-Value and 0 Non-Null Value
ROW 3118: has 28 Null-Value and 0 Non-Null Value
ROW 3119: has 28 Null-Value and 0 Non-Null Value
ROW 3120: has 28 Null-Value and 0 Non-Null Value
ROW 3121: has 28 Null-Value and 0 Non-Null Value
ROW 3122: has 28 Null-Value and 0 Non-Null Value
ROW 3123: has 28 Null-Value and 0 Non-Null Value
ROW 3124: has 28 Null-Value and 0 Non-Null Value
ROW 3125: has 28 Null-Value and 0 Non-Null Value
ROW 3126: has 28 Null-Value and 0 Non-Null Value
ROW 3127: has 28 Null-Value and 0 Non-Null Value
ROW 3128: has 28 Null-Value and 0 Non-Null Value
ROW 3129: has 26 Null-Value and 2 Non-Null Value
ROW 3130: has 27 Null-Value and 1 Non-Null Value
ROW 3131: has 28 Null-Value and 0 Non-Null Value
ROW 3132: has 28 Null-Value and 0 Non-Null Value
ROW 3133: has 28 Null-Value and 0 Non-Null Value
ROW 3134: has 28 Null-Value and 0 Non-Null Value
ROW 3135: has 28 Null-Value and 0 Non-Null Value
ROW 3136: has 28 Null-Value and 0 Non-Null Value
ROW 3137: has 27 Null-Value and 1 Non-Null Value
ROW 3138: has 27 Null-Value and 1 Non-Null Value
ROW 3139: has 28 Null-Value and 0 Non-Null Value
ROW 3140: has 28 Null-Value and 0 Non-Null Value
ROW 3141: has 28 Null-Value and 0 Non-Null Value
ROW 3142: has 28 Null-Value and 0 Non-Null Value
ROW 3143: has 28 Null-Value and 0 Non-Null Value
ROW 3144: has 28 Null-Value and 0 Non-Null Value
ROW 3145: has 28 Null-Value and 0 Non-Null Value
ROW 3146: has 28 Null-Value and 0 Non-Null Value
ROW 3147: has 28 Null-Value and 0 Non-Null Value
ROW 3148: has 27 Null-Value and 1 Non-Null Value
ROW 3149: has 28 Null-Value and 0 Non-Null Value
ROW 3150: has 28 Null-Value and 0 Non-Null Value
ROW 3151: has 28 Null-Value and 0 Non-Null Value
ROW 3152: has 28 Null-Value and 0 Non-Null Value
ROW 3153: has 27 Null-Value and 1 Non-Null Value
ROW 3154: has 28 Null-Value and 0 Non-Null Value
ROW 3155: has 28 Null-Value and 0 Non-Null Value
ROW 3156: has 28 Null-Value and 0 Non-Null Value
ROW 3157: has 28 Null-Value and 0 Non-Null Value
ROW 3158: has 28 Null-Value and 0 Non-Null Value
ROW 3159: has 28 Null-Value and 0 Non-Null Value
ROW 3160: has 28 Null-Value and 0 Non-Null Value
ROW 3161: has 28 Null-Value and 0 Non-Null Value
ROW 3162: has 28 Null-Value and 0 Non-Null Value
ROW 3163: has 28 Null-Value and 0 Non-Null Value
ROW 3164: has 28 Null-Value and 0 Non-Null Value
ROW 3165: has 28 Null-Value and 0 Non-Null Value
ROW 3166: has 27 Null-Value and 1 Non-Null Value
ROW 3167: has 28 Null-Value and 0 Non-Null Value
ROW 3168: has 28 Null-Value and 0 Non-Null Value
ROW 3169: has 28 Null-Value and 0 Non-Null Value
ROW 3170: has 28 Null-Value and 0 Non-Null Value
ROW 3171: has 28 Null-Value and 0 Non-Null Value
ROW 3172: has 28 Null-Value and 0 Non-Null Value
ROW 3173: has 27 Null-Value and 1 Non-Null Value
ROW 3174: has 23 Null-Value and 5 Non-Null Value
ROW 3175: has 28 Null-Value and 0 Non-Null Value
ROW 3176: has 28 Null-Value and 0 Non-Null Value
ROW 3177: has 28 Null-Value and 0 Non-Null Value
ROW 3178: has 28 Null-Value and 0 Non-Null Value
ROW 3179: has 28 Null-Value and 0 Non-Null Value
ROW 3180: has 28 Null-Value and 0 Non-Null Value
ROW 3181: has 28 Null-Value and 0 Non-Null Value
ROW 3182: has 27 Null-Value and 1 Non-Null Value
ROW 3183: has 27 Null-Value and 1 Non-Null Value
ROW 3184: has 28 Null-Value and 0 Non-Null Value
ROW 3185: has 28 Null-Value and 0 Non-Null Value
ROW 3186: has 28 Null-Value and 0 Non-Null Value
ROW 3187: has 27 Null-Value and 1 Non-Null Value
ROW 3188: has 28 Null-Value and 0 Non-Null Value
ROW 3189: has 28 Null-Value and 0 Non-Null Value
ROW 3190: has 28 Null-Value and 0 Non-Null Value
ROW 3191: has 28 Null-Value and 0 Non-Null Value
ROW 3192: has 28 Null-Value and 0 Non-Null Value
ROW 3193: has 28 Null-Value and 0 Non-Null Value
ROW 3194: has 28 Null-Value and 0 Non-Null Value
ROW 3195: has 28 Null-Value and 0 Non-Null Value
ROW 3196: has 28 Null-Value and 0 Non-Null Value
ROW 3197: has 28 Null-Value and 0 Non-Null Value
ROW 3198: has 28 Null-Value and 0 Non-Null Value
ROW 3199: has 28 Null-Value and 0 Non-Null Value
ROW 3200: has 28 Null-Value and 0 Non-Null Value
ROW 3201: has 28 Null-Value and 0 Non-Null Value
ROW 3202: has 28 Null-Value and 0 Non-Null Value
ROW 3203: has 28 Null-Value and 0 Non-Null Value
ROW 3204: has 28 Null-Value and 0 Non-Null Value
ROW 3205: has 28 Null-Value and 0 Non-Null Value
ROW 3206: has 28 Null-Value and 0 Non-Null Value
ROW 3207: has 24 Null-Value and 4 Non-Null Value
ROW 3208: has 27 Null-Value and 1 Non-Null Value
ROW 3209: has 28 Null-Value and 0 Non-Null Value
ROW 3210: has 28 Null-Value and 0 Non-Null Value
ROW 3211: has 28 Null-Value and 0 Non-Null Value
ROW 3212: has 28 Null-Value and 0 Non-Null Value
ROW 3213: has 28 Null-Value and 0 Non-Null Value
ROW 3214: has 28 Null-Value and 0 Non-Null Value
ROW 3215: has 27 Null-Value and 1 Non-Null Value
ROW 3216: has 28 Null-Value and 0 Non-Null Value
ROW 3217: has 28 Null-Value and 0 Non-Null Value
ROW 3218: has 28 Null-Value and 0 Non-Null Value
ROW 3219: has 28 Null-Value and 0 Non-Null Value
ROW 3220: has 27 Null-Value and 1 Non-Null Value
ROW 3221: has 28 Null-Value and 0 Non-Null Value
ROW 3222: has 26 Null-Value and 2 Non-Null Value
ROW 3223: has 27 Null-Value and 1 Non-Null Value
ROW 3224: has 28 Null-Value and 0 Non-Null Value
ROW 3225: has 28 Null-Value and 0 Non-Null Value
ROW 3226: has 27 Null-Value and 1 Non-Null Value
ROW 3227: has 28 Null-Value and 0 Non-Null Value
ROW 3228: has 28 Null-Value and 0 Non-Null Value
ROW 3229: has 27 Null-Value and 1 Non-Null Value
ROW 3230: has 28 Null-Value and 0 Non-Null Value
ROW 3231: has 27 Null-Value and 1 Non-Null Value
ROW 3232: has 26 Null-Value and 2 Non-Null Value
ROW 3233: has 27 Null-Value and 1 Non-Null Value
ROW 3234: has 28 Null-Value and 0 Non-Null Value
ROW 3235: has 28 Null-Value and 0 Non-Null Value
ROW 3236: has 28 Null-Value and 0 Non-Null Value
ROW 3237: has 28 Null-Value and 0 Non-Null Value
ROW 3238: has 26 Null-Value and 2 Non-Null Value
ROW 3239: has 27 Null-Value and 1 Non-Null Value
ROW 3240: has 26 Null-Value and 2 Non-Null Value
ROW 3241: has 28 Null-Value and 0 Non-Null Value
ROW 3242: has 28 Null-Value and 0 Non-Null Value
ROW 3243: has 26 Null-Value and 2 Non-Null Value
ROW 3244: has 28 Null-Value and 0 Non-Null Value
ROW 3245: has 27 Null-Value and 1 Non-Null Value
ROW 3246: has 26 Null-Value and 2 Non-Null Value
ROW 3247: has 27 Null-Value and 1 Non-Null Value
ROW 3248: has 24 Null-Value and 4 Non-Null Value
ROW 3249: has 27 Null-Value and 1 Non-Null Value
ROW 3250: has 27 Null-Value and 1 Non-Null Value
ROW 3251: has 27 Null-Value and 1 Non-Null Value
ROW 3252: has 27 Null-Value and 1 Non-Null Value
ROW 3253: has 27 Null-Value and 1 Non-Null Value
ROW 3254: has 25 Null-Value and 3 Non-Null Value
ROW 3255: has 28 Null-Value and 0 Non-Null Value
ROW 3256: has 27 Null-Value and 1 Non-Null Value
ROW 3257: has 26 Null-Value and 2 Non-Null Value
ROW 3258: has 27 Null-Value and 1 Non-Null Value
ROW 3259: has 28 Null-Value and 0 Non-Null Value
ROW 3260: has 28 Null-Value and 0 Non-Null Value
ROW 3261: has 26 Null-Value and 2 Non-Null Value
ROW 3262: has 28 Null-Value and 0 Non-Null Value
ROW 3263: has 26 Null-Value and 2 Non-Null Value
ROW 3264: has 28 Null-Value and 0 Non-Null Value
ROW 3265: has 28 Null-Value and 0 Non-Null Value
ROW 3266: has 27 Null-Value and 1 Non-Null Value
ROW 3267: has 28 Null-Value and 0 Non-Null Value
ROW 3268: has 27 Null-Value and 1 Non-Null Value
ROW 3269: has 27 Null-Value and 1 Non-Null Value
ROW 3270: has 26 Null-Value and 2 Non-Null Value
ROW 3271: has 28 Null-Value and 0 Non-Null Value
ROW 3272: has 26 Null-Value and 2 Non-Null Value
ROW 3273: has 26 Null-Value and 2 Non-Null Value
ROW 3274: has 28 Null-Value and 0 Non-Null Value
ROW 3275: has 27 Null-Value and 1 Non-Null Value
ROW 3276: has 28 Null-Value and 0 Non-Null Value
ROW 3277: has 28 Null-Value and 0 Non-Null Value
ROW 3278: has 28 Null-Value and 0 Non-Null Value
ROW 3279: has 28 Null-Value and 0 Non-Null Value
ROW 3280: has 28 Null-Value and 0 Non-Null Value
ROW 3281: has 28 Null-Value and 0 Non-Null Value
ROW 3282: has 27 Null-Value and 1 Non-Null Value
ROW 3283: has 25 Null-Value and 3 Non-Null Value
ROW 3284: has 28 Null-Value and 0 Non-Null Value
ROW 3285: has 28 Null-Value and 0 Non-Null Value
ROW 3286: has 28 Null-Value and 0 Non-Null Value
ROW 3287: has 28 Null-Value and 0 Non-Null Value
ROW 3288: has 28 Null-Value and 0 Non-Null Value
ROW 3289: has 28 Null-Value and 0 Non-Null Value
ROW 3290: has 28 Null-Value and 0 Non-Null Value
ROW 3291: has 28 Null-Value and 0 Non-Null Value
ROW 3292: has 28 Null-Value and 0 Non-Null Value
ROW 3293: has 27 Null-Value and 1 Non-Null Value
ROW 3294: has 28 Null-Value and 0 Non-Null Value
ROW 3295: has 27 Null-Value and 1 Non-Null Value
ROW 3296: has 28 Null-Value and 0 Non-Null Value
ROW 3297: has 27 Null-Value and 1 Non-Null Value
ROW 3298: has 27 Null-Value and 1 Non-Null Value
ROW 3299: has 28 Null-Value and 0 Non-Null Value
ROW 3300: has 28 Null-Value and 0 Non-Null Value
ROW 3301: has 28 Null-Value and 0 Non-Null Value
ROW 3302: has 27 Null-Value and 1 Non-Null Value
ROW 3303: has 23 Null-Value and 5 Non-Null Value
ROW 3304: has 27 Null-Value and 1 Non-Null Value
ROW 3305: has 28 Null-Value and 0 Non-Null Value
ROW 3306: has 28 Null-Value and 0 Non-Null Value
ROW 3307: has 28 Null-Value and 0 Non-Null Value
ROW 3308: has 27 Null-Value and 1 Non-Null Value
ROW 3309: has 27 Null-Value and 1 Non-Null Value
ROW 3310: has 28 Null-Value and 0 Non-Null Value
ROW 3311: has 28 Null-Value and 0 Non-Null Value
ROW 3312: has 28 Null-Value and 0 Non-Null Value
ROW 3313: has 24 Null-Value and 4 Non-Null Value
ROW 3314: has 28 Null-Value and 0 Non-Null Value
ROW 3315: has 28 Null-Value and 0 Non-Null Value
ROW 3316: has 28 Null-Value and 0 Non-Null Value
ROW 3317: has 27 Null-Value and 1 Non-Null Value
ROW 3318: has 28 Null-Value and 0 Non-Null Value
ROW 3319: has 28 Null-Value and 0 Non-Null Value
ROW 3320: has 26 Null-Value and 2 Non-Null Value
ROW 3321: has 27 Null-Value and 1 Non-Null Value
ROW 3322: has 27 Null-Value and 1 Non-Null Value
ROW 3323: has 28 Null-Value and 0 Non-Null Value
ROW 3324: has 26 Null-Value and 2 Non-Null Value
ROW 3325: has 27 Null-Value and 1 Non-Null Value
ROW 3326: has 27 Null-Value and 1 Non-Null Value
ROW 3327: has 27 Null-Value and 1 Non-Null Value
ROW 3328: has 28 Null-Value and 0 Non-Null Value
ROW 3329: has 23 Null-Value and 5 Non-Null Value
ROW 3330: has 28 Null-Value and 0 Non-Null Value
ROW 3331: has 27 Null-Value and 1 Non-Null Value
ROW 3332: has 28 Null-Value and 0 Non-Null Value
ROW 3333: has 28 Null-Value and 0 Non-Null Value
ROW 3334: has 28 Null-Value and 0 Non-Null Value
ROW 3335: has 27 Null-Value and 1 Non-Null Value
ROW 3336: has 27 Null-Value and 1 Non-Null Value
ROW 3337: has 28 Null-Value and 0 Non-Null Value
ROW 3338: has 27 Null-Value and 1 Non-Null Value
ROW 3339: has 28 Null-Value and 0 Non-Null Value
ROW 3340: has 28 Null-Value and 0 Non-Null Value
ROW 3341: has 27 Null-Value and 1 Non-Null Value
ROW 3342: has 26 Null-Value and 2 Non-Null Value
ROW 3343: has 28 Null-Value and 0 Non-Null Value
ROW 3344: has 28 Null-Value and 0 Non-Null Value
ROW 3345: has 28 Null-Value and 0 Non-Null Value
ROW 3346: has 24 Null-Value and 4 Non-Null Value
ROW 3347: has 28 Null-Value and 0 Non-Null Value
ROW 3348: has 25 Null-Value and 3 Non-Null Value
ROW 3349: has 27 Null-Value and 1 Non-Null Value
ROW 3350: has 26 Null-Value and 2 Non-Null Value
ROW 3351: has 28 Null-Value and 0 Non-Null Value
ROW 3352: has 27 Null-Value and 1 Non-Null Value
ROW 3353: has 28 Null-Value and 0 Non-Null Value
ROW 3354: has 26 Null-Value and 2 Non-Null Value
ROW 3355: has 28 Null-Value and 0 Non-Null Value
ROW 3356: has 27 Null-Value and 1 Non-Null Value
ROW 3357: has 28 Null-Value and 0 Non-Null Value
ROW 3358: has 28 Null-Value and 0 Non-Null Value
ROW 3359: has 28 Null-Value and 0 Non-Null Value
ROW 3360: has 28 Null-Value and 0 Non-Null Value
ROW 3361: has 28 Null-Value and 0 Non-Null Value
ROW 3362: has 28 Null-Value and 0 Non-Null Value
ROW 3363: has 28 Null-Value and 0 Non-Null Value
ROW 3364: has 28 Null-Value and 0 Non-Null Value
ROW 3365: has 28 Null-Value and 0 Non-Null Value
ROW 3366: has 28 Null-Value and 0 Non-Null Value
ROW 3367: has 28 Null-Value and 0 Non-Null Value
ROW 3368: has 28 Null-Value and 0 Non-Null Value
ROW 3369: has 28 Null-Value and 0 Non-Null Value
ROW 3370: has 27 Null-Value and 1 Non-Null Value
ROW 3371: has 28 Null-Value and 0 Non-Null Value
ROW 3372: has 27 Null-Value and 1 Non-Null Value
ROW 3373: has 23 Null-Value and 5 Non-Null Value
ROW 3374: has 28 Null-Value and 0 Non-Null Value
ROW 3375: has 28 Null-Value and 0 Non-Null Value
ROW 3376: has 23 Null-Value and 5 Non-Null Value
ROW 3377: has 28 Null-Value and 0 Non-Null Value
ROW 3378: has 28 Null-Value and 0 Non-Null Value
ROW 3379: has 27 Null-Value and 1 Non-Null Value
ROW 3380: has 28 Null-Value and 0 Non-Null Value
ROW 3381: has 28 Null-Value and 0 Non-Null Value
ROW 3382: has 28 Null-Value and 0 Non-Null Value
ROW 3383: has 28 Null-Value and 0 Non-Null Value
ROW 3384: has 28 Null-Value and 0 Non-Null Value
ROW 3385: has 27 Null-Value and 1 Non-Null Value
ROW 3386: has 28 Null-Value and 0 Non-Null Value
ROW 3387: has 27 Null-Value and 1 Non-Null Value
ROW 3388: has 28 Null-Value and 0 Non-Null Value
ROW 3389: has 28 Null-Value and 0 Non-Null Value
ROW 3390: has 27 Null-Value and 1 Non-Null Value
ROW 3391: has 28 Null-Value and 0 Non-Null Value
ROW 3392: has 28 Null-Value and 0 Non-Null Value
ROW 3393: has 27 Null-Value and 1 Non-Null Value
ROW 3394: has 28 Null-Value and 0 Non-Null Value
ROW 3395: has 28 Null-Value and 0 Non-Null Value
ROW 3396: has 27 Null-Value and 1 Non-Null Value
ROW 3397: has 22 Null-Value and 6 Non-Null Value
ROW 3398: has 28 Null-Value and 0 Non-Null Value
ROW 3399: has 28 Null-Value and 0 Non-Null Value
ROW 3400: has 28 Null-Value and 0 Non-Null Value
ROW 3401: has 28 Null-Value and 0 Non-Null Value
ROW 3402: has 28 Null-Value and 0 Non-Null Value
ROW 3403: has 28 Null-Value and 0 Non-Null Value
ROW 3404: has 28 Null-Value and 0 Non-Null Value
ROW 3405: has 28 Null-Value and 0 Non-Null Value
ROW 3406: has 28 Null-Value and 0 Non-Null Value
ROW 3407: has 27 Null-Value and 1 Non-Null Value
ROW 3408: has 28 Null-Value and 0 Non-Null Value
ROW 3409: has 28 Null-Value and 0 Non-Null Value
ROW 3410: has 28 Null-Value and 0 Non-Null Value
ROW 3411: has 28 Null-Value and 0 Non-Null Value
ROW 3412: has 25 Null-Value and 3 Non-Null Value
ROW 3413: has 28 Null-Value and 0 Non-Null Value
ROW 3414: has 27 Null-Value and 1 Non-Null Value
ROW 3415: has 28 Null-Value and 0 Non-Null Value
ROW 3416: has 28 Null-Value and 0 Non-Null Value
ROW 3417: has 28 Null-Value and 0 Non-Null Value
ROW 3418: has 28 Null-Value and 0 Non-Null Value
ROW 3419: has 21 Null-Value and 7 Non-Null Value
ROW 3420: has 28 Null-Value and 0 Non-Null Value
ROW 3421: has 28 Null-Value and 0 Non-Null Value
ROW 3422: has 27 Null-Value and 1 Non-Null Value
ROW 3423: has 28 Null-Value and 0 Non-Null Value
ROW 3424: has 27 Null-Value and 1 Non-Null Value
ROW 3425: has 27 Null-Value and 1 Non-Null Value
ROW 3426: has 26 Null-Value and 2 Non-Null Value
ROW 3427: has 25 Null-Value and 3 Non-Null Value
ROW 3428: has 28 Null-Value and 0 Non-Null Value
ROW 3429: has 26 Null-Value and 2 Non-Null Value
ROW 3430: has 27 Null-Value and 1 Non-Null Value
ROW 3431: has 26 Null-Value and 2 Non-Null Value
ROW 3432: has 28 Null-Value and 0 Non-Null Value
ROW 3433: has 26 Null-Value and 2 Non-Null Value
ROW 3434: has 28 Null-Value and 0 Non-Null Value
ROW 3435: has 28 Null-Value and 0 Non-Null Value
ROW 3436: has 28 Null-Value and 0 Non-Null Value
ROW 3437: has 26 Null-Value and 2 Non-Null Value
ROW 3438: has 28 Null-Value and 0 Non-Null Value
ROW 3439: has 28 Null-Value and 0 Non-Null Value
ROW 3440: has 28 Null-Value and 0 Non-Null Value
ROW 3441: has 27 Null-Value and 1 Non-Null Value
ROW 3442: has 28 Null-Value and 0 Non-Null Value
ROW 3443: has 28 Null-Value and 0 Non-Null Value
ROW 3444: has 28 Null-Value and 0 Non-Null Value
ROW 3445: has 28 Null-Value and 0 Non-Null Value
ROW 3446: has 27 Null-Value and 1 Non-Null Value
ROW 3447: has 28 Null-Value and 0 Non-Null Value
ROW 3448: has 27 Null-Value and 1 Non-Null Value
ROW 3449: has 26 Null-Value and 2 Non-Null Value
ROW 3450: has 28 Null-Value and 0 Non-Null Value
ROW 3451: has 24 Null-Value and 4 Non-Null Value
ROW 3452: has 28 Null-Value and 0 Non-Null Value
ROW 3453: has 28 Null-Value and 0 Non-Null Value
ROW 3454: has 25 Null-Value and 3 Non-Null Value
ROW 3455: has 26 Null-Value and 2 Non-Null Value
ROW 3456: has 28 Null-Value and 0 Non-Null Value
ROW 3457: has 27 Null-Value and 1 Non-Null Value
ROW 3458: has 26 Null-Value and 2 Non-Null Value
ROW 3459: has 28 Null-Value and 0 Non-Null Value
ROW 3460: has 28 Null-Value and 0 Non-Null Value
ROW 3461: has 28 Null-Value and 0 Non-Null Value
ROW 3462: has 28 Null-Value and 0 Non-Null Value
ROW 3463: has 28 Null-Value and 0 Non-Null Value
ROW 3464: has 27 Null-Value and 1 Non-Null Value
ROW 3465: has 28 Null-Value and 0 Non-Null Value
ROW 3466: has 28 Null-Value and 0 Non-Null Value
ROW 3467: has 28 Null-Value and 0 Non-Null Value
ROW 3468: has 28 Null-Value and 0 Non-Null Value
ROW 3469: has 28 Null-Value and 0 Non-Null Value
ROW 3470: has 28 Null-Value and 0 Non-Null Value
ROW 3471: has 28 Null-Value and 0 Non-Null Value
ROW 3472: has 28 Null-Value and 0 Non-Null Value
ROW 3473: has 28 Null-Value and 0 Non-Null Value
ROW 3474: has 27 Null-Value and 1 Non-Null Value
ROW 3475: has 28 Null-Value and 0 Non-Null Value
ROW 3476: has 28 Null-Value and 0 Non-Null Value
ROW 3477: has 28 Null-Value and 0 Non-Null Value
ROW 3478: has 28 Null-Value and 0 Non-Null Value
ROW 3479: has 28 Null-Value and 0 Non-Null Value
ROW 3480: has 28 Null-Value and 0 Non-Null Value
ROW 3481: has 23 Null-Value and 5 Non-Null Value
ROW 3482: has 28 Null-Value and 0 Non-Null Value
ROW 3483: has 28 Null-Value and 0 Non-Null Value
ROW 3484: has 28 Null-Value and 0 Non-Null Value
ROW 3485: has 28 Null-Value and 0 Non-Null Value
ROW 3486: has 26 Null-Value and 2 Non-Null Value
ROW 3487: has 28 Null-Value and 0 Non-Null Value
ROW 3488: has 28 Null-Value and 0 Non-Null Value
ROW 3489: has 28 Null-Value and 0 Non-Null Value
ROW 3490: has 24 Null-Value and 4 Non-Null Value
ROW 3491: has 28 Null-Value and 0 Non-Null Value
ROW 3492: has 28 Null-Value and 0 Non-Null Value
ROW 3493: has 28 Null-Value and 0 Non-Null Value
ROW 3494: has 28 Null-Value and 0 Non-Null Value
ROW 3495: has 26 Null-Value and 2 Non-Null Value
ROW 3496: has 28 Null-Value and 0 Non-Null Value
ROW 3497: has 28 Null-Value and 0 Non-Null Value
ROW 3498: has 28 Null-Value and 0 Non-Null Value
ROW 3499: has 27 Null-Value and 1 Non-Null Value
ROW 3500: has 28 Null-Value and 0 Non-Null Value
ROW 3501: has 28 Null-Value and 0 Non-Null Value
ROW 3502: has 28 Null-Value and 0 Non-Null Value
ROW 3503: has 28 Null-Value and 0 Non-Null Value
ROW 3504: has 28 Null-Value and 0 Non-Null Value
ROW 3505: has 28 Null-Value and 0 Non-Null Value
ROW 3506: has 28 Null-Value and 0 Non-Null Value
ROW 3507: has 22 Null-Value and 6 Non-Null Value
ROW 3508: has 28 Null-Value and 0 Non-Null Value
ROW 3509: has 23 Null-Value and 5 Non-Null Value
ROW 3510: has 27 Null-Value and 1 Non-Null Value
ROW 3511: has 28 Null-Value and 0 Non-Null Value
ROW 3512: has 28 Null-Value and 0 Non-Null Value
ROW 3513: has 28 Null-Value and 0 Non-Null Value
ROW 3514: has 28 Null-Value and 0 Non-Null Value
ROW 3515: has 28 Null-Value and 0 Non-Null Value
ROW 3516: has 28 Null-Value and 0 Non-Null Value
ROW 3517: has 26 Null-Value and 2 Non-Null Value
ROW 3518: has 28 Null-Value and 0 Non-Null Value
ROW 3519: has 26 Null-Value and 2 Non-Null Value
ROW 3520: has 28 Null-Value and 0 Non-Null Value
ROW 3521: has 28 Null-Value and 0 Non-Null Value
ROW 3522: has 28 Null-Value and 0 Non-Null Value
ROW 3523: has 28 Null-Value and 0 Non-Null Value
ROW 3524: has 27 Null-Value and 1 Non-Null Value
ROW 3525: has 28 Null-Value and 0 Non-Null Value
ROW 3526: has 28 Null-Value and 0 Non-Null Value
ROW 3527: has 27 Null-Value and 1 Non-Null Value
ROW 3528: has 26 Null-Value and 2 Non-Null Value
ROW 3529: has 28 Null-Value and 0 Non-Null Value
ROW 3530: has 28 Null-Value and 0 Non-Null Value
ROW 3531: has 28 Null-Value and 0 Non-Null Value
ROW 3532: has 27 Null-Value and 1 Non-Null Value
ROW 3533: has 28 Null-Value and 0 Non-Null Value
ROW 3534: has 28 Null-Value and 0 Non-Null Value
ROW 3535: has 27 Null-Value and 1 Non-Null Value
ROW 3536: has 25 Null-Value and 3 Non-Null Value
ROW 3537: has 27 Null-Value and 1 Non-Null Value
ROW 3538: has 26 Null-Value and 2 Non-Null Value
ROW 3539: has 23 Null-Value and 5 Non-Null Value
ROW 3540: has 28 Null-Value and 0 Non-Null Value
ROW 3541: has 25 Null-Value and 3 Non-Null Value
ROW 3542: has 28 Null-Value and 0 Non-Null Value
ROW 3543: has 27 Null-Value and 1 Non-Null Value
ROW 3544: has 25 Null-Value and 3 Non-Null Value
ROW 3545: has 26 Null-Value and 2 Non-Null Value
ROW 3546: has 27 Null-Value and 1 Non-Null Value
ROW 3547: has 28 Null-Value and 0 Non-Null Value
ROW 3548: has 28 Null-Value and 0 Non-Null Value
ROW 3549: has 28 Null-Value and 0 Non-Null Value
ROW 3550: has 28 Null-Value and 0 Non-Null Value
ROW 3551: has 28 Null-Value and 0 Non-Null Value
ROW 3552: has 27 Null-Value and 1 Non-Null Value
ROW 3553: has 28 Null-Value and 0 Non-Null Value
ROW 3554: has 28 Null-Value and 0 Non-Null Value
ROW 3555: has 28 Null-Value and 0 Non-Null Value
ROW 3556: has 28 Null-Value and 0 Non-Null Value
ROW 3557: has 28 Null-Value and 0 Non-Null Value
ROW 3558: has 26 Null-Value and 2 Non-Null Value
ROW 3559: has 28 Null-Value and 0 Non-Null Value
ROW 3560: has 28 Null-Value and 0 Non-Null Value
ROW 3561: has 28 Null-Value and 0 Non-Null Value
ROW 3562: has 28 Null-Value and 0 Non-Null Value
ROW 3563: has 27 Null-Value and 1 Non-Null Value
ROW 3564: has 28 Null-Value and 0 Non-Null Value
ROW 3565: has 28 Null-Value and 0 Non-Null Value
ROW 3566: has 28 Null-Value and 0 Non-Null Value
ROW 3567: has 28 Null-Value and 0 Non-Null Value
ROW 3568: has 28 Null-Value and 0 Non-Null Value
ROW 3569: has 28 Null-Value and 0 Non-Null Value
ROW 3570: has 28 Null-Value and 0 Non-Null Value
ROW 3571: has 27 Null-Value and 1 Non-Null Value
ROW 3572: has 28 Null-Value and 0 Non-Null Value
ROW 3573: has 27 Null-Value and 1 Non-Null Value
ROW 3574: has 28 Null-Value and 0 Non-Null Value
ROW 3575: has 28 Null-Value and 0 Non-Null Value
ROW 3576: has 28 Null-Value and 0 Non-Null Value
ROW 3577: has 28 Null-Value and 0 Non-Null Value
ROW 3578: has 27 Null-Value and 1 Non-Null Value
ROW 3579: has 22 Null-Value and 6 Non-Null Value
ROW 3580: has 28 Null-Value and 0 Non-Null Value
ROW 3581: has 28 Null-Value and 0 Non-Null Value
ROW 3582: has 28 Null-Value and 0 Non-Null Value
ROW 3583: has 28 Null-Value and 0 Non-Null Value
ROW 3584: has 28 Null-Value and 0 Non-Null Value
ROW 3585: has 28 Null-Value and 0 Non-Null Value
ROW 3586: has 28 Null-Value and 0 Non-Null Value
ROW 3587: has 28 Null-Value and 0 Non-Null Value
ROW 3588: has 28 Null-Value and 0 Non-Null Value
ROW 3589: has 28 Null-Value and 0 Non-Null Value
ROW 3590: has 28 Null-Value and 0 Non-Null Value
ROW 3591: has 28 Null-Value and 0 Non-Null Value
ROW 3592: has 28 Null-Value and 0 Non-Null Value
ROW 3593: has 28 Null-Value and 0 Non-Null Value
ROW 3594: has 28 Null-Value and 0 Non-Null Value
ROW 3595: has 28 Null-Value and 0 Non-Null Value
ROW 3596: has 28 Null-Value and 0 Non-Null Value
ROW 3597: has 28 Null-Value and 0 Non-Null Value
ROW 3598: has 28 Null-Value and 0 Non-Null Value
ROW 3599: has 28 Null-Value and 0 Non-Null Value
ROW 3600: has 28 Null-Value and 0 Non-Null Value
ROW 3601: has 27 Null-Value and 1 Non-Null Value
ROW 3602: has 27 Null-Value and 1 Non-Null Value
ROW 3603: has 28 Null-Value and 0 Non-Null Value
ROW 3604: has 22 Null-Value and 6 Non-Null Value
ROW 3605: has 28 Null-Value and 0 Non-Null Value
ROW 3606: has 28 Null-Value and 0 Non-Null Value
ROW 3607: has 28 Null-Value and 0 Non-Null Value
ROW 3608: has 28 Null-Value and 0 Non-Null Value
ROW 3609: has 28 Null-Value and 0 Non-Null Value
ROW 3610: has 25 Null-Value and 3 Non-Null Value
ROW 3611: has 28 Null-Value and 0 Non-Null Value
ROW 3612: has 28 Null-Value and 0 Non-Null Value
ROW 3613: has 28 Null-Value and 0 Non-Null Value
ROW 3614: has 28 Null-Value and 0 Non-Null Value
ROW 3615: has 28 Null-Value and 0 Non-Null Value
ROW 3616: has 28 Null-Value and 0 Non-Null Value
ROW 3617: has 28 Null-Value and 0 Non-Null Value
ROW 3618: has 28 Null-Value and 0 Non-Null Value
ROW 3619: has 27 Null-Value and 1 Non-Null Value
ROW 3620: has 28 Null-Value and 0 Non-Null Value
ROW 3621: has 28 Null-Value and 0 Non-Null Value
ROW 3622: has 28 Null-Value and 0 Non-Null Value
ROW 3623: has 23 Null-Value and 5 Non-Null Value
ROW 3624: has 28 Null-Value and 0 Non-Null Value
ROW 3625: has 28 Null-Value and 0 Non-Null Value
ROW 3626: has 25 Null-Value and 3 Non-Null Value
ROW 3627: has 28 Null-Value and 0 Non-Null Value
ROW 3628: has 28 Null-Value and 0 Non-Null Value
ROW 3629: has 27 Null-Value and 1 Non-Null Value
ROW 3630: has 27 Null-Value and 1 Non-Null Value
ROW 3631: has 28 Null-Value and 0 Non-Null Value
ROW 3632: has 27 Null-Value and 1 Non-Null Value
ROW 3633: has 27 Null-Value and 1 Non-Null Value
ROW 3634: has 28 Null-Value and 0 Non-Null Value
ROW 3635: has 28 Null-Value and 0 Non-Null Value
ROW 3636: has 27 Null-Value and 1 Non-Null Value
ROW 3637: has 28 Null-Value and 0 Non-Null Value
ROW 3638: has 27 Null-Value and 1 Non-Null Value
ROW 3639: has 28 Null-Value and 0 Non-Null Value
ROW 3640: has 28 Null-Value and 0 Non-Null Value
ROW 3641: has 27 Null-Value and 1 Non-Null Value
ROW 3642: has 28 Null-Value and 0 Non-Null Value
ROW 3643: has 26 Null-Value and 2 Non-Null Value
ROW 3644: has 27 Null-Value and 1 Non-Null Value
ROW 3645: has 27 Null-Value and 1 Non-Null Value
ROW 3646: has 26 Null-Value and 2 Non-Null Value
ROW 3647: has 28 Null-Value and 0 Non-Null Value
ROW 3648: has 27 Null-Value and 1 Non-Null Value
ROW 3649: has 27 Null-Value and 1 Non-Null Value
ROW 3650: has 22 Null-Value and 6 Non-Null Value
ROW 3651: has 27 Null-Value and 1 Non-Null Value
ROW 3652: has 28 Null-Value and 0 Non-Null Value
ROW 3653: has 27 Null-Value and 1 Non-Null Value
ROW 3654: has 28 Null-Value and 0 Non-Null Value
ROW 3655: has 28 Null-Value and 0 Non-Null Value
ROW 3656: has 25 Null-Value and 3 Non-Null Value
ROW 3657: has 27 Null-Value and 1 Non-Null Value
ROW 3658: has 27 Null-Value and 1 Non-Null Value
ROW 3659: has 28 Null-Value and 0 Non-Null Value
ROW 3660: has 27 Null-Value and 1 Non-Null Value
ROW 3661: has 23 Null-Value and 5 Non-Null Value
ROW 3662: has 28 Null-Value and 0 Non-Null Value
ROW 3663: has 28 Null-Value and 0 Non-Null Value
ROW 3664: has 28 Null-Value and 0 Non-Null Value
ROW 3665: has 26 Null-Value and 2 Non-Null Value
ROW 3666: has 28 Null-Value and 0 Non-Null Value
ROW 3667: has 26 Null-Value and 2 Non-Null Value
ROW 3668: has 28 Null-Value and 0 Non-Null Value
ROW 3669: has 28 Null-Value and 0 Non-Null Value
ROW 3670: has 28 Null-Value and 0 Non-Null Value
ROW 3671: has 28 Null-Value and 0 Non-Null Value
ROW 3672: has 28 Null-Value and 0 Non-Null Value
ROW 3673: has 27 Null-Value and 1 Non-Null Value
ROW 3674: has 28 Null-Value and 0 Non-Null Value
ROW 3675: has 28 Null-Value and 0 Non-Null Value
ROW 3676: has 26 Null-Value and 2 Non-Null Value
ROW 3677: has 28 Null-Value and 0 Non-Null Value
ROW 3678: has 28 Null-Value and 0 Non-Null Value
ROW 3679: has 28 Null-Value and 0 Non-Null Value
ROW 3680: has 28 Null-Value and 0 Non-Null Value
ROW 3681: has 28 Null-Value and 0 Non-Null Value
ROW 3682: has 28 Null-Value and 0 Non-Null Value
ROW 3683: has 27 Null-Value and 1 Non-Null Value
ROW 3684: has 28 Null-Value and 0 Non-Null Value
ROW 3685: has 27 Null-Value and 1 Non-Null Value
ROW 3686: has 25 Null-Value and 3 Non-Null Value
ROW 3687: has 28 Null-Value and 0 Non-Null Value
ROW 3688: has 28 Null-Value and 0 Non-Null Value
ROW 3689: has 27 Null-Value and 1 Non-Null Value
ROW 3690: has 28 Null-Value and 0 Non-Null Value
ROW 3691: has 27 Null-Value and 1 Non-Null Value
ROW 3692: has 28 Null-Value and 0 Non-Null Value
ROW 3693: has 26 Null-Value and 2 Non-Null Value
ROW 3694: has 27 Null-Value and 1 Non-Null Value
ROW 3695: has 26 Null-Value and 2 Non-Null Value
ROW 3696: has 28 Null-Value and 0 Non-Null Value
ROW 3697: has 28 Null-Value and 0 Non-Null Value
ROW 3698: has 28 Null-Value and 0 Non-Null Value
ROW 3699: has 28 Null-Value and 0 Non-Null Value
ROW 3700: has 28 Null-Value and 0 Non-Null Value
ROW 3701: has 28 Null-Value and 0 Non-Null Value
ROW 3702: has 28 Null-Value and 0 Non-Null Value
ROW 3703: has 28 Null-Value and 0 Non-Null Value
ROW 3704: has 28 Null-Value and 0 Non-Null Value
ROW 3705: has 28 Null-Value and 0 Non-Null Value
ROW 3706: has 28 Null-Value and 0 Non-Null Value
ROW 3707: has 28 Null-Value and 0 Non-Null Value
ROW 3708: has 27 Null-Value and 1 Non-Null Value
ROW 3709: has 28 Null-Value and 0 Non-Null Value
ROW 3710: has 28 Null-Value and 0 Non-Null Value
ROW 3711: has 27 Null-Value and 1 Non-Null Value
ROW 3712: has 28 Null-Value and 0 Non-Null Value
ROW 3713: has 27 Null-Value and 1 Non-Null Value
ROW 3714: has 28 Null-Value and 0 Non-Null Value
ROW 3715: has 28 Null-Value and 0 Non-Null Value
ROW 3716: has 28 Null-Value and 0 Non-Null Value
ROW 3717: has 28 Null-Value and 0 Non-Null Value
ROW 3718: has 28 Null-Value and 0 Non-Null Value
ROW 3719: has 28 Null-Value and 0 Non-Null Value
ROW 3720: has 28 Null-Value and 0 Non-Null Value
ROW 3721: has 28 Null-Value and 0 Non-Null Value
ROW 3722: has 27 Null-Value and 1 Non-Null Value
ROW 3723: has 28 Null-Value and 0 Non-Null Value
ROW 3724: has 28 Null-Value and 0 Non-Null Value
ROW 3725: has 27 Null-Value and 1 Non-Null Value
ROW 3726: has 28 Null-Value and 0 Non-Null Value
ROW 3727: has 27 Null-Value and 1 Non-Null Value
ROW 3728: has 28 Null-Value and 0 Non-Null Value
ROW 3729: has 28 Null-Value and 0 Non-Null Value
ROW 3730: has 28 Null-Value and 0 Non-Null Value
ROW 3731: has 28 Null-Value and 0 Non-Null Value
ROW 3732: has 28 Null-Value and 0 Non-Null Value
ROW 3733: has 28 Null-Value and 0 Non-Null Value
ROW 3734: has 27 Null-Value and 1 Non-Null Value
ROW 3735: has 27 Null-Value and 1 Non-Null Value
ROW 3736: has 28 Null-Value and 0 Non-Null Value
ROW 3737: has 28 Null-Value and 0 Non-Null Value
ROW 3738: has 28 Null-Value and 0 Non-Null Value
ROW 3739: has 28 Null-Value and 0 Non-Null Value
ROW 3740: has 28 Null-Value and 0 Non-Null Value
ROW 3741: has 28 Null-Value and 0 Non-Null Value
ROW 3742: has 28 Null-Value and 0 Non-Null Value
ROW 3743: has 28 Null-Value and 0 Non-Null Value
ROW 3744: has 28 Null-Value and 0 Non-Null Value
ROW 3745: has 28 Null-Value and 0 Non-Null Value
ROW 3746: has 28 Null-Value and 0 Non-Null Value
ROW 3747: has 28 Null-Value and 0 Non-Null Value
ROW 3748: has 28 Null-Value and 0 Non-Null Value
ROW 3749: has 28 Null-Value and 0 Non-Null Value
ROW 3750: has 28 Null-Value and 0 Non-Null Value
ROW 3751: has 27 Null-Value and 1 Non-Null Value
ROW 3752: has 26 Null-Value and 2 Non-Null Value
ROW 3753: has 27 Null-Value and 1 Non-Null Value
ROW 3754: has 28 Null-Value and 0 Non-Null Value
ROW 3755: has 27 Null-Value and 1 Non-Null Value
ROW 3756: has 26 Null-Value and 2 Non-Null Value
ROW 3757: has 28 Null-Value and 0 Non-Null Value
ROW 3758: has 28 Null-Value and 0 Non-Null Value
ROW 3759: has 28 Null-Value and 0 Non-Null Value
ROW 3760: has 27 Null-Value and 1 Non-Null Value
ROW 3761: has 28 Null-Value and 0 Non-Null Value
ROW 3762: has 27 Null-Value and 1 Non-Null Value
ROW 3763: has 28 Null-Value and 0 Non-Null Value
ROW 3764: has 27 Null-Value and 1 Non-Null Value
ROW 3765: has 28 Null-Value and 0 Non-Null Value
ROW 3766: has 27 Null-Value and 1 Non-Null Value
ROW 3767: has 28 Null-Value and 0 Non-Null Value
ROW 3768: has 28 Null-Value and 0 Non-Null Value
ROW 3769: has 27 Null-Value and 1 Non-Null Value
ROW 3770: has 27 Null-Value and 1 Non-Null Value
ROW 3771: has 28 Null-Value and 0 Non-Null Value
ROW 3772: has 28 Null-Value and 0 Non-Null Value
ROW 3773: has 28 Null-Value and 0 Non-Null Value
ROW 3774: has 26 Null-Value and 2 Non-Null Value
ROW 3775: has 28 Null-Value and 0 Non-Null Value
ROW 3776: has 28 Null-Value and 0 Non-Null Value
ROW 3777: has 28 Null-Value and 0 Non-Null Value
ROW 3778: has 28 Null-Value and 0 Non-Null Value
ROW 3779: has 28 Null-Value and 0 Non-Null Value
ROW 3780: has 28 Null-Value and 0 Non-Null Value
ROW 3781: has 28 Null-Value and 0 Non-Null Value
ROW 3782: has 28 Null-Value and 0 Non-Null Value
ROW 3783: has 28 Null-Value and 0 Non-Null Value
ROW 3784: has 28 Null-Value and 0 Non-Null Value
ROW 3785: has 27 Null-Value and 1 Non-Null Value
ROW 3786: has 27 Null-Value and 1 Non-Null Value
ROW 3787: has 28 Null-Value and 0 Non-Null Value
ROW 3788: has 28 Null-Value and 0 Non-Null Value
ROW 3789: has 26 Null-Value and 2 Non-Null Value
ROW 3790: has 27 Null-Value and 1 Non-Null Value
ROW 3791: has 27 Null-Value and 1 Non-Null Value
ROW 3792: has 27 Null-Value and 1 Non-Null Value
ROW 3793: has 28 Null-Value and 0 Non-Null Value
ROW 3794: has 27 Null-Value and 1 Non-Null Value
ROW 3795: has 28 Null-Value and 0 Non-Null Value
ROW 3796: has 27 Null-Value and 1 Non-Null Value
ROW 3797: has 27 Null-Value and 1 Non-Null Value
ROW 3798: has 28 Null-Value and 0 Non-Null Value
ROW 3799: has 28 Null-Value and 0 Non-Null Value
ROW 3800: has 23 Null-Value and 5 Non-Null Value
ROW 3801: has 26 Null-Value and 2 Non-Null Value
ROW 3802: has 27 Null-Value and 1 Non-Null Value
ROW 3803: has 27 Null-Value and 1 Non-Null Value
ROW 3804: has 27 Null-Value and 1 Non-Null Value
ROW 3805: has 26 Null-Value and 2 Non-Null Value
ROW 3806: has 23 Null-Value and 5 Non-Null Value
ROW 3807: has 23 Null-Value and 5 Non-Null Value
ROW 3808: has 27 Null-Value and 1 Non-Null Value
ROW 3809: has 26 Null-Value and 2 Non-Null Value
ROW 3810: has 24 Null-Value and 4 Non-Null Value
ROW 3811: has 26 Null-Value and 2 Non-Null Value
ROW 3812: has 27 Null-Value and 1 Non-Null Value
ROW 3813: has 26 Null-Value and 2 Non-Null Value
ROW 3814: has 27 Null-Value and 1 Non-Null Value
ROW 3815: has 23 Null-Value and 5 Non-Null Value
ROW 3816: has 22 Null-Value and 6 Non-Null Value
ROW 3817: has 26 Null-Value and 2 Non-Null Value
ROW 3818: has 24 Null-Value and 4 Non-Null Value
ROW 3819: has 28 Null-Value and 0 Non-Null Value
ROW 3820: has 27 Null-Value and 1 Non-Null Value
ROW 3821: has 28 Null-Value and 0 Non-Null Value
ROW 3822: has 27 Null-Value and 1 Non-Null Value
ROW 3823: has 28 Null-Value and 0 Non-Null Value
ROW 3824: has 28 Null-Value and 0 Non-Null Value
ROW 3825: has 28 Null-Value and 0 Non-Null Value
ROW 3826: has 28 Null-Value and 0 Non-Null Value
ROW 3827: has 27 Null-Value and 1 Non-Null Value
ROW 3828: has 26 Null-Value and 2 Non-Null Value
ROW 3829: has 28 Null-Value and 0 Non-Null Value
ROW 3830: has 27 Null-Value and 1 Non-Null Value
ROW 3831: has 28 Null-Value and 0 Non-Null Value
ROW 3832: has 24 Null-Value and 4 Non-Null Value
ROW 3833: has 26 Null-Value and 2 Non-Null Value
ROW 3834: has 22 Null-Value and 6 Non-Null Value
ROW 3835: has 27 Null-Value and 1 Non-Null Value
ROW 3836: has 27 Null-Value and 1 Non-Null Value
ROW 3837: has 28 Null-Value and 0 Non-Null Value
ROW 3838: has 24 Null-Value and 4 Non-Null Value
ROW 3839: has 28 Null-Value and 0 Non-Null Value
ROW 3840: has 26 Null-Value and 2 Non-Null Value
ROW 3841: has 28 Null-Value and 0 Non-Null Value
ROW 3842: has 27 Null-Value and 1 Non-Null Value
ROW 3843: has 28 Null-Value and 0 Non-Null Value
ROW 3844: has 27 Null-Value and 1 Non-Null Value
ROW 3845: has 27 Null-Value and 1 Non-Null Value
ROW 3846: has 28 Null-Value and 0 Non-Null Value
ROW 3847: has 21 Null-Value and 7 Non-Null Value
ROW 3848: has 28 Null-Value and 0 Non-Null Value
ROW 3849: has 28 Null-Value and 0 Non-Null Value
ROW 3850: has 26 Null-Value and 2 Non-Null Value
ROW 3851: has 28 Null-Value and 0 Non-Null Value
ROW 3852: has 27 Null-Value and 1 Non-Null Value
ROW 3853: has 27 Null-Value and 1 Non-Null Value
ROW 3854: has 28 Null-Value and 0 Non-Null Value
ROW 3855: has 27 Null-Value and 1 Non-Null Value
ROW 3856: has 28 Null-Value and 0 Non-Null Value
ROW 3857: has 28 Null-Value and 0 Non-Null Value
ROW 3858: has 27 Null-Value and 1 Non-Null Value
ROW 3859: has 28 Null-Value and 0 Non-Null Value
ROW 3860: has 26 Null-Value and 2 Non-Null Value
ROW 3861: has 28 Null-Value and 0 Non-Null Value
ROW 3862: has 28 Null-Value and 0 Non-Null Value
ROW 3863: has 27 Null-Value and 1 Non-Null Value
ROW 3864: has 27 Null-Value and 1 Non-Null Value
ROW 3865: has 28 Null-Value and 0 Non-Null Value
ROW 3866: has 23 Null-Value and 5 Non-Null Value
ROW 3867: has 28 Null-Value and 0 Non-Null Value
ROW 3868: has 27 Null-Value and 1 Non-Null Value
ROW 3869: has 26 Null-Value and 2 Non-Null Value
ROW 3870: has 26 Null-Value and 2 Non-Null Value
ROW 3871: has 23 Null-Value and 5 Non-Null Value
ROW 3872: has 26 Null-Value and 2 Non-Null Value
ROW 3873: has 28 Null-Value and 0 Non-Null Value
ROW 3874: has 27 Null-Value and 1 Non-Null Value
ROW 3875: has 27 Null-Value and 1 Non-Null Value
ROW 3876: has 28 Null-Value and 0 Non-Null Value
ROW 3877: has 27 Null-Value and 1 Non-Null Value
ROW 3878: has 26 Null-Value and 2 Non-Null Value
ROW 3879: has 28 Null-Value and 0 Non-Null Value
ROW 3880: has 27 Null-Value and 1 Non-Null Value
ROW 3881: has 22 Null-Value and 6 Non-Null Value
ROW 3882: has 27 Null-Value and 1 Non-Null Value
ROW 3883: has 28 Null-Value and 0 Non-Null Value
ROW 3884: has 28 Null-Value and 0 Non-Null Value
ROW 3885: has 28 Null-Value and 0 Non-Null Value
ROW 3886: has 28 Null-Value and 0 Non-Null Value
ROW 3887: has 27 Null-Value and 1 Non-Null Value
ROW 3888: has 28 Null-Value and 0 Non-Null Value
ROW 3889: has 28 Null-Value and 0 Non-Null Value
ROW 3890: has 28 Null-Value and 0 Non-Null Value
ROW 3891: has 28 Null-Value and 0 Non-Null Value
ROW 3892: has 28 Null-Value and 0 Non-Null Value
ROW 3893: has 28 Null-Value and 0 Non-Null Value
ROW 3894: has 28 Null-Value and 0 Non-Null Value
ROW 3895: has 26 Null-Value and 2 Non-Null Value
ROW 3896: has 27 Null-Value and 1 Non-Null Value
ROW 3897: has 27 Null-Value and 1 Non-Null Value
ROW 3898: has 28 Null-Value and 0 Non-Null Value
ROW 3899: has 27 Null-Value and 1 Non-Null Value
ROW 3900: has 23 Null-Value and 5 Non-Null Value
ROW 3901: has 28 Null-Value and 0 Non-Null Value
ROW 3902: has 28 Null-Value and 0 Non-Null Value
ROW 3903: has 27 Null-Value and 1 Non-Null Value
ROW 3904: has 27 Null-Value and 1 Non-Null Value
ROW 3905: has 28 Null-Value and 0 Non-Null Value
ROW 3906: has 28 Null-Value and 0 Non-Null Value
ROW 3907: has 28 Null-Value and 0 Non-Null Value
ROW 3908: has 28 Null-Value and 0 Non-Null Value
ROW 3909: has 28 Null-Value and 0 Non-Null Value
ROW 3910: has 28 Null-Value and 0 Non-Null Value
ROW 3911: has 28 Null-Value and 0 Non-Null Value
ROW 3912: has 27 Null-Value and 1 Non-Null Value
ROW 3913: has 28 Null-Value and 0 Non-Null Value
ROW 3914: has 27 Null-Value and 1 Non-Null Value
ROW 3915: has 28 Null-Value and 0 Non-Null Value
ROW 3916: has 28 Null-Value and 0 Non-Null Value
ROW 3917: has 28 Null-Value and 0 Non-Null Value
ROW 3918: has 28 Null-Value and 0 Non-Null Value
ROW 3919: has 27 Null-Value and 1 Non-Null Value
ROW 3920: has 27 Null-Value and 1 Non-Null Value
ROW 3921: has 28 Null-Value and 0 Non-Null Value
ROW 3922: has 28 Null-Value and 0 Non-Null Value
ROW 3923: has 28 Null-Value and 0 Non-Null Value
ROW 3924: has 28 Null-Value and 0 Non-Null Value
ROW 3925: has 28 Null-Value and 0 Non-Null Value
ROW 3926: has 28 Null-Value and 0 Non-Null Value
ROW 3927: has 28 Null-Value and 0 Non-Null Value
ROW 3928: has 28 Null-Value and 0 Non-Null Value
ROW 3929: has 27 Null-Value and 1 Non-Null Value
ROW 3930: has 28 Null-Value and 0 Non-Null Value
ROW 3931: has 28 Null-Value and 0 Non-Null Value
ROW 3932: has 28 Null-Value and 0 Non-Null Value
ROW 3933: has 27 Null-Value and 1 Non-Null Value
ROW 3934: has 27 Null-Value and 1 Non-Null Value
ROW 3935: has 28 Null-Value and 0 Non-Null Value
ROW 3936: has 28 Null-Value and 0 Non-Null Value
ROW 3937: has 26 Null-Value and 2 Non-Null Value
ROW 3938: has 28 Null-Value and 0 Non-Null Value
ROW 3939: has 28 Null-Value and 0 Non-Null Value
ROW 3940: has 28 Null-Value and 0 Non-Null Value
ROW 3941: has 28 Null-Value and 0 Non-Null Value
ROW 3942: has 28 Null-Value and 0 Non-Null Value
ROW 3943: has 27 Null-Value and 1 Non-Null Value
ROW 3944: has 28 Null-Value and 0 Non-Null Value
ROW 3945: has 28 Null-Value and 0 Non-Null Value
ROW 3946: has 27 Null-Value and 1 Non-Null Value
ROW 3947: has 28 Null-Value and 0 Non-Null Value
ROW 3948: has 27 Null-Value and 1 Non-Null Value
ROW 3949: has 28 Null-Value and 0 Non-Null Value
ROW 3950: has 28 Null-Value and 0 Non-Null Value
ROW 3951: has 23 Null-Value and 5 Non-Null Value
ROW 3952: has 28 Null-Value and 0 Non-Null Value
ROW 3953: has 28 Null-Value and 0 Non-Null Value
ROW 3954: has 27 Null-Value and 1 Non-Null Value
ROW 3955: has 27 Null-Value and 1 Non-Null Value
ROW 3956: has 26 Null-Value and 2 Non-Null Value
ROW 3957: has 25 Null-Value and 3 Non-Null Value
ROW 3958: has 27 Null-Value and 1 Non-Null Value
ROW 3959: has 27 Null-Value and 1 Non-Null Value
ROW 3960: has 27 Null-Value and 1 Non-Null Value
ROW 3961: has 26 Null-Value and 2 Non-Null Value
ROW 3962: has 27 Null-Value and 1 Non-Null Value
ROW 3963: has 26 Null-Value and 2 Non-Null Value
ROW 3964: has 26 Null-Value and 2 Non-Null Value
ROW 3965: has 26 Null-Value and 2 Non-Null Value
ROW 3966: has 26 Null-Value and 2 Non-Null Value
ROW 3967: has 27 Null-Value and 1 Non-Null Value
ROW 3968: has 27 Null-Value and 1 Non-Null Value
ROW 3969: has 27 Null-Value and 1 Non-Null Value
ROW 3970: has 28 Null-Value and 0 Non-Null Value
ROW 3971: has 28 Null-Value and 0 Non-Null Value
ROW 3972: has 28 Null-Value and 0 Non-Null Value
ROW 3973: has 26 Null-Value and 2 Non-Null Value
ROW 3974: has 28 Null-Value and 0 Non-Null Value
ROW 3975: has 27 Null-Value and 1 Non-Null Value
ROW 3976: has 27 Null-Value and 1 Non-Null Value
ROW 3977: has 28 Null-Value and 0 Non-Null Value
ROW 3978: has 28 Null-Value and 0 Non-Null Value
ROW 3979: has 28 Null-Value and 0 Non-Null Value
ROW 3980: has 28 Null-Value and 0 Non-Null Value
ROW 3981: has 28 Null-Value and 0 Non-Null Value
ROW 3982: has 23 Null-Value and 5 Non-Null Value
ROW 3983: has 27 Null-Value and 1 Non-Null Value
ROW 3984: has 28 Null-Value and 0 Non-Null Value
ROW 3985: has 28 Null-Value and 0 Non-Null Value
ROW 3986: has 27 Null-Value and 1 Non-Null Value
ROW 3987: has 28 Null-Value and 0 Non-Null Value
ROW 3988: has 28 Null-Value and 0 Non-Null Value
ROW 3989: has 23 Null-Value and 5 Non-Null Value
ROW 3990: has 28 Null-Value and 0 Non-Null Value
ROW 3991: has 27 Null-Value and 1 Non-Null Value
ROW 3992: has 27 Null-Value and 1 Non-Null Value
ROW 3993: has 27 Null-Value and 1 Non-Null Value
ROW 3994: has 27 Null-Value and 1 Non-Null Value
ROW 3995: has 27 Null-Value and 1 Non-Null Value
ROW 3996: has 28 Null-Value and 0 Non-Null Value
ROW 3997: has 28 Null-Value and 0 Non-Null Value
ROW 3998: has 28 Null-Value and 0 Non-Null Value
ROW 3999: has 28 Null-Value and 0 Non-Null Value
ROW 4000: has 28 Null-Value and 0 Non-Null Value
ROW 4001: has 27 Null-Value and 1 Non-Null Value
ROW 4002: has 26 Null-Value and 2 Non-Null Value
ROW 4003: has 28 Null-Value and 0 Non-Null Value
ROW 4004: has 28 Null-Value and 0 Non-Null Value
ROW 4005: has 27 Null-Value and 1 Non-Null Value
ROW 4006: has 28 Null-Value and 0 Non-Null Value
ROW 4007: has 28 Null-Value and 0 Non-Null Value
ROW 4008: has 28 Null-Value and 0 Non-Null Value
ROW 4009: has 28 Null-Value and 0 Non-Null Value
ROW 4010: has 28 Null-Value and 0 Non-Null Value
ROW 4011: has 28 Null-Value and 0 Non-Null Value
ROW 4012: has 27 Null-Value and 1 Non-Null Value
ROW 4013: has 26 Null-Value and 2 Non-Null Value
ROW 4014: has 27 Null-Value and 1 Non-Null Value
ROW 4015: has 21 Null-Value and 7 Non-Null Value
ROW 4016: has 26 Null-Value and 2 Non-Null Value
ROW 4017: has 26 Null-Value and 2 Non-Null Value
ROW 4018: has 25 Null-Value and 3 Non-Null Value
ROW 4019: has 27 Null-Value and 1 Non-Null Value
ROW 4020: has 27 Null-Value and 1 Non-Null Value
ROW 4021: has 25 Null-Value and 3 Non-Null Value
ROW 4022: has 27 Null-Value and 1 Non-Null Value
ROW 4023: has 27 Null-Value and 1 Non-Null Value
ROW 4024: has 28 Null-Value and 0 Non-Null Value
ROW 4025: has 28 Null-Value and 0 Non-Null Value
ROW 4026: has 26 Null-Value and 2 Non-Null Value
ROW 4027: has 28 Null-Value and 0 Non-Null Value
ROW 4028: has 28 Null-Value and 0 Non-Null Value
ROW 4029: has 28 Null-Value and 0 Non-Null Value
ROW 4030: has 28 Null-Value and 0 Non-Null Value
ROW 4031: has 26 Null-Value and 2 Non-Null Value
ROW 4032: has 27 Null-Value and 1 Non-Null Value
ROW 4033: has 28 Null-Value and 0 Non-Null Value
ROW 4034: has 27 Null-Value and 1 Non-Null Value
ROW 4035: has 28 Null-Value and 0 Non-Null Value
ROW 4036: has 27 Null-Value and 1 Non-Null Value
ROW 4037: has 26 Null-Value and 2 Non-Null Value
ROW 4038: has 27 Null-Value and 1 Non-Null Value
ROW 4039: has 27 Null-Value and 1 Non-Null Value
ROW 4040: has 27 Null-Value and 1 Non-Null Value
ROW 4041: has 27 Null-Value and 1 Non-Null Value
ROW 4042: has 27 Null-Value and 1 Non-Null Value
ROW 4043: has 28 Null-Value and 0 Non-Null Value
ROW 4044: has 28 Null-Value and 0 Non-Null Value
ROW 4045: has 27 Null-Value and 1 Non-Null Value
ROW 4046: has 28 Null-Value and 0 Non-Null Value
ROW 4047: has 28 Null-Value and 0 Non-Null Value
ROW 4048: has 27 Null-Value and 1 Non-Null Value
ROW 4049: has 27 Null-Value and 1 Non-Null Value
ROW 4050: has 28 Null-Value and 0 Non-Null Value
ROW 4051: has 28 Null-Value and 0 Non-Null Value
ROW 4052: has 28 Null-Value and 0 Non-Null Value
ROW 4053: has 28 Null-Value and 0 Non-Null Value
ROW 4054: has 28 Null-Value and 0 Non-Null Value
ROW 4055: has 27 Null-Value and 1 Non-Null Value
ROW 4056: has 28 Null-Value and 0 Non-Null Value
ROW 4057: has 28 Null-Value and 0 Non-Null Value
ROW 4058: has 28 Null-Value and 0 Non-Null Value
ROW 4059: has 28 Null-Value and 0 Non-Null Value
ROW 4060: has 28 Null-Value and 0 Non-Null Value
ROW 4061: has 27 Null-Value and 1 Non-Null Value
ROW 4062: has 27 Null-Value and 1 Non-Null Value
ROW 4063: has 28 Null-Value and 0 Non-Null Value
ROW 4064: has 27 Null-Value and 1 Non-Null Value
ROW 4065: has 28 Null-Value and 0 Non-Null Value
ROW 4066: has 28 Null-Value and 0 Non-Null Value
ROW 4067: has 28 Null-Value and 0 Non-Null Value
ROW 4068: has 27 Null-Value and 1 Non-Null Value
ROW 4069: has 27 Null-Value and 1 Non-Null Value
ROW 4070: has 28 Null-Value and 0 Non-Null Value
ROW 4071: has 27 Null-Value and 1 Non-Null Value
ROW 4072: has 28 Null-Value and 0 Non-Null Value
ROW 4073: has 27 Null-Value and 1 Non-Null Value
ROW 4074: has 26 Null-Value and 2 Non-Null Value
ROW 4075: has 28 Null-Value and 0 Non-Null Value
ROW 4076: has 27 Null-Value and 1 Non-Null Value
ROW 4077: has 27 Null-Value and 1 Non-Null Value
ROW 4078: has 27 Null-Value and 1 Non-Null Value
ROW 4079: has 23 Null-Value and 5 Non-Null Value
ROW 4080: has 27 Null-Value and 1 Non-Null Value
ROW 4081: has 28 Null-Value and 0 Non-Null Value
ROW 4082: has 28 Null-Value and 0 Non-Null Value
ROW 4083: has 28 Null-Value and 0 Non-Null Value
ROW 4084: has 28 Null-Value and 0 Non-Null Value
ROW 4085: has 26 Null-Value and 2 Non-Null Value
ROW 4086: has 28 Null-Value and 0 Non-Null Value
ROW 4087: has 21 Null-Value and 7 Non-Null Value
ROW 4088: has 27 Null-Value and 1 Non-Null Value
ROW 4089: has 28 Null-Value and 0 Non-Null Value
ROW 4090: has 28 Null-Value and 0 Non-Null Value
ROW 4091: has 28 Null-Value and 0 Non-Null Value
ROW 4092: has 27 Null-Value and 1 Non-Null Value
ROW 4093: has 27 Null-Value and 1 Non-Null Value
ROW 4094: has 28 Null-Value and 0 Non-Null Value
ROW 4095: has 28 Null-Value and 0 Non-Null Value
ROW 4096: has 27 Null-Value and 1 Non-Null Value
ROW 4097: has 28 Null-Value and 0 Non-Null Value
ROW 4098: has 28 Null-Value and 0 Non-Null Value
ROW 4099: has 28 Null-Value and 0 Non-Null Value
ROW 4100: has 27 Null-Value and 1 Non-Null Value
ROW 4101: has 28 Null-Value and 0 Non-Null Value
ROW 4102: has 27 Null-Value and 1 Non-Null Value
ROW 4103: has 28 Null-Value and 0 Non-Null Value
ROW 4104: has 28 Null-Value and 0 Non-Null Value
ROW 4105: has 28 Null-Value and 0 Non-Null Value
ROW 4106: has 28 Null-Value and 0 Non-Null Value
ROW 4107: has 28 Null-Value and 0 Non-Null Value
ROW 4108: has 26 Null-Value and 2 Non-Null Value
ROW 4109: has 27 Null-Value and 1 Non-Null Value
ROW 4110: has 26 Null-Value and 2 Non-Null Value
ROW 4111: has 27 Null-Value and 1 Non-Null Value
ROW 4112: has 27 Null-Value and 1 Non-Null Value
ROW 4113: has 22 Null-Value and 6 Non-Null Value
ROW 4114: has 28 Null-Value and 0 Non-Null Value
ROW 4115: has 22 Null-Value and 6 Non-Null Value
ROW 4116: has 25 Null-Value and 3 Non-Null Value
ROW 4117: has 28 Null-Value and 0 Non-Null Value
ROW 4118: has 28 Null-Value and 0 Non-Null Value
ROW 4119: has 22 Null-Value and 6 Non-Null Value
ROW 4120: has 28 Null-Value and 0 Non-Null Value
ROW 4121: has 26 Null-Value and 2 Non-Null Value
ROW 4122: has 28 Null-Value and 0 Non-Null Value
ROW 4123: has 28 Null-Value and 0 Non-Null Value
ROW 4124: has 28 Null-Value and 0 Non-Null Value
ROW 4125: has 27 Null-Value and 1 Non-Null Value
ROW 4126: has 26 Null-Value and 2 Non-Null Value
ROW 4127: has 27 Null-Value and 1 Non-Null Value
ROW 4128: has 28 Null-Value and 0 Non-Null Value
ROW 4129: has 26 Null-Value and 2 Non-Null Value
ROW 4130: has 27 Null-Value and 1 Non-Null Value
ROW 4131: has 26 Null-Value and 2 Non-Null Value
ROW 4132: has 26 Null-Value and 2 Non-Null Value
ROW 4133: has 27 Null-Value and 1 Non-Null Value
ROW 4134: has 27 Null-Value and 1 Non-Null Value
ROW 4135: has 27 Null-Value and 1 Non-Null Value
ROW 4136: has 25 Null-Value and 3 Non-Null Value
ROW 4137: has 26 Null-Value and 2 Non-Null Value
ROW 4138: has 25 Null-Value and 3 Non-Null Value
ROW 4139: has 26 Null-Value and 2 Non-Null Value
ROW 4140: has 26 Null-Value and 2 Non-Null Value
ROW 4141: has 28 Null-Value and 0 Non-Null Value
ROW 4142: has 27 Null-Value and 1 Non-Null Value
ROW 4143: has 26 Null-Value and 2 Non-Null Value
ROW 4144: has 28 Null-Value and 0 Non-Null Value
ROW 4145: has 27 Null-Value and 1 Non-Null Value
ROW 4146: has 25 Null-Value and 3 Non-Null Value
ROW 4147: has 28 Null-Value and 0 Non-Null Value
ROW 4148: has 25 Null-Value and 3 Non-Null Value
ROW 4149: has 27 Null-Value and 1 Non-Null Value
ROW 4150: has 27 Null-Value and 1 Non-Null Value
ROW 4151: has 28 Null-Value and 0 Non-Null Value
ROW 4152: has 26 Null-Value and 2 Non-Null Value
ROW 4153: has 27 Null-Value and 1 Non-Null Value
ROW 4154: has 28 Null-Value and 0 Non-Null Value
ROW 4155: has 28 Null-Value and 0 Non-Null Value
ROW 4156: has 28 Null-Value and 0 Non-Null Value
ROW 4157: has 28 Null-Value and 0 Non-Null Value
ROW 4158: has 28 Null-Value and 0 Non-Null Value
ROW 4159: has 28 Null-Value and 0 Non-Null Value
ROW 4160: has 27 Null-Value and 1 Non-Null Value
ROW 4161: has 28 Null-Value and 0 Non-Null Value
ROW 4162: has 27 Null-Value and 1 Non-Null Value
ROW 4163: has 24 Null-Value and 4 Non-Null Value
ROW 4164: has 26 Null-Value and 2 Non-Null Value
ROW 4165: has 27 Null-Value and 1 Non-Null Value
ROW 4166: has 26 Null-Value and 2 Non-Null Value
ROW 4167: has 27 Null-Value and 1 Non-Null Value
ROW 4168: has 28 Null-Value and 0 Non-Null Value
ROW 4169: has 28 Null-Value and 0 Non-Null Value
ROW 4170: has 27 Null-Value and 1 Non-Null Value
ROW 4171: has 28 Null-Value and 0 Non-Null Value
ROW 4172: has 27 Null-Value and 1 Non-Null Value
ROW 4173: has 28 Null-Value and 0 Non-Null Value
ROW 4174: has 26 Null-Value and 2 Non-Null Value
ROW 4175: has 28 Null-Value and 0 Non-Null Value
ROW 4176: has 26 Null-Value and 2 Non-Null Value
ROW 4177: has 27 Null-Value and 1 Non-Null Value
ROW 4178: has 27 Null-Value and 1 Non-Null Value
ROW 4179: has 25 Null-Value and 3 Non-Null Value
ROW 4180: has 28 Null-Value and 0 Non-Null Value
ROW 4181: has 28 Null-Value and 0 Non-Null Value
ROW 4182: has 28 Null-Value and 0 Non-Null Value
ROW 4183: has 28 Null-Value and 0 Non-Null Value
ROW 4184: has 28 Null-Value and 0 Non-Null Value
ROW 4185: has 27 Null-Value and 1 Non-Null Value
ROW 4186: has 27 Null-Value and 1 Non-Null Value
ROW 4187: has 28 Null-Value and 0 Non-Null Value
ROW 4188: has 28 Null-Value and 0 Non-Null Value
ROW 4189: has 28 Null-Value and 0 Non-Null Value
ROW 4190: has 28 Null-Value and 0 Non-Null Value
ROW 4191: has 26 Null-Value and 2 Non-Null Value
ROW 4192: has 28 Null-Value and 0 Non-Null Value
ROW 4193: has 27 Null-Value and 1 Non-Null Value
ROW 4194: has 27 Null-Value and 1 Non-Null Value
ROW 4195: has 28 Null-Value and 0 Non-Null Value
ROW 4196: has 28 Null-Value and 0 Non-Null Value
ROW 4197: has 28 Null-Value and 0 Non-Null Value
ROW 4198: has 26 Null-Value and 2 Non-Null Value
ROW 4199: has 28 Null-Value and 0 Non-Null Value
ROW 4200: has 28 Null-Value and 0 Non-Null Value
ROW 4201: has 26 Null-Value and 2 Non-Null Value
ROW 4202: has 28 Null-Value and 0 Non-Null Value
ROW 4203: has 28 Null-Value and 0 Non-Null Value
ROW 4204: has 28 Null-Value and 0 Non-Null Value
ROW 4205: has 28 Null-Value and 0 Non-Null Value
ROW 4206: has 28 Null-Value and 0 Non-Null Value
ROW 4207: has 28 Null-Value and 0 Non-Null Value
ROW 4208: has 28 Null-Value and 0 Non-Null Value
ROW 4209: has 26 Null-Value and 2 Non-Null Value
ROW 4210: has 27 Null-Value and 1 Non-Null Value
ROW 4211: has 24 Null-Value and 4 Non-Null Value
ROW 4212: has 28 Null-Value and 0 Non-Null Value
ROW 4213: has 28 Null-Value and 0 Non-Null Value
ROW 4214: has 27 Null-Value and 1 Non-Null Value
ROW 4215: has 24 Null-Value and 4 Non-Null Value
ROW 4216: has 28 Null-Value and 0 Non-Null Value
ROW 4217: has 27 Null-Value and 1 Non-Null Value
ROW 4218: has 27 Null-Value and 1 Non-Null Value
ROW 4219: has 28 Null-Value and 0 Non-Null Value
ROW 4220: has 27 Null-Value and 1 Non-Null Value
ROW 4221: has 27 Null-Value and 1 Non-Null Value
ROW 4222: has 27 Null-Value and 1 Non-Null Value
ROW 4223: has 25 Null-Value and 3 Non-Null Value
ROW 4224: has 26 Null-Value and 2 Non-Null Value
ROW 4225: has 26 Null-Value and 2 Non-Null Value
ROW 4226: has 27 Null-Value and 1 Non-Null Value
ROW 4227: has 24 Null-Value and 4 Non-Null Value
ROW 4228: has 28 Null-Value and 0 Non-Null Value
ROW 4229: has 28 Null-Value and 0 Non-Null Value
ROW 4230: has 28 Null-Value and 0 Non-Null Value
ROW 4231: has 27 Null-Value and 1 Non-Null Value
ROW 4232: has 26 Null-Value and 2 Non-Null Value
ROW 4233: has 27 Null-Value and 1 Non-Null Value
ROW 4234: has 25 Null-Value and 3 Non-Null Value
ROW 4235: has 26 Null-Value and 2 Non-Null Value
ROW 4236: has 25 Null-Value and 3 Non-Null Value
ROW 4237: has 27 Null-Value and 1 Non-Null Value
ROW 4238: has 28 Null-Value and 0 Non-Null Value
ROW 4239: has 27 Null-Value and 1 Non-Null Value
ROW 4240: has 28 Null-Value and 0 Non-Null Value
ROW 4241: has 27 Null-Value and 1 Non-Null Value
ROW 4242: has 27 Null-Value and 1 Non-Null Value
ROW 4243: has 25 Null-Value and 3 Non-Null Value
ROW 4244: has 25 Null-Value and 3 Non-Null Value
ROW 4245: has 24 Null-Value and 4 Non-Null Value
ROW 4246: has 25 Null-Value and 3 Non-Null Value
ROW 4247: has 28 Null-Value and 0 Non-Null Value
ROW 4248: has 28 Null-Value and 0 Non-Null Value
ROW 4249: has 22 Null-Value and 6 Non-Null Value
ROW 4250: has 27 Null-Value and 1 Non-Null Value
ROW 4251: has 28 Null-Value and 0 Non-Null Value
ROW 4252: has 27 Null-Value and 1 Non-Null Value
ROW 4253: has 27 Null-Value and 1 Non-Null Value
ROW 4254: has 28 Null-Value and 0 Non-Null Value
ROW 4255: has 28 Null-Value and 0 Non-Null Value
ROW 4256: has 27 Null-Value and 1 Non-Null Value
ROW 4257: has 28 Null-Value and 0 Non-Null Value
ROW 4258: has 28 Null-Value and 0 Non-Null Value
ROW 4259: has 28 Null-Value and 0 Non-Null Value
ROW 4260: has 28 Null-Value and 0 Non-Null Value
ROW 4261: has 27 Null-Value and 1 Non-Null Value
ROW 4262: has 27 Null-Value and 1 Non-Null Value
ROW 4263: has 28 Null-Value and 0 Non-Null Value
ROW 4264: has 28 Null-Value and 0 Non-Null Value
ROW 4265: has 27 Null-Value and 1 Non-Null Value
ROW 4266: has 28 Null-Value and 0 Non-Null Value
ROW 4267: has 28 Null-Value and 0 Non-Null Value
ROW 4268: has 28 Null-Value and 0 Non-Null Value
ROW 4269: has 27 Null-Value and 1 Non-Null Value
ROW 4270: has 28 Null-Value and 0 Non-Null Value
ROW 4271: has 27 Null-Value and 1 Non-Null Value
ROW 4272: has 27 Null-Value and 1 Non-Null Value
ROW 4273: has 28 Null-Value and 0 Non-Null Value
ROW 4274: has 27 Null-Value and 1 Non-Null Value
ROW 4275: has 28 Null-Value and 0 Non-Null Value
ROW 4276: has 27 Null-Value and 1 Non-Null Value
ROW 4277: has 28 Null-Value and 0 Non-Null Value
ROW 4278: has 28 Null-Value and 0 Non-Null Value
ROW 4279: has 28 Null-Value and 0 Non-Null Value
ROW 4280: has 28 Null-Value and 0 Non-Null Value
ROW 4281: has 23 Null-Value and 5 Non-Null Value
ROW 4282: has 28 Null-Value and 0 Non-Null Value
ROW 4283: has 28 Null-Value and 0 Non-Null Value
ROW 4284: has 28 Null-Value and 0 Non-Null Value
ROW 4285: has 28 Null-Value and 0 Non-Null Value
ROW 4286: has 27 Null-Value and 1 Non-Null Value
ROW 4287: has 28 Null-Value and 0 Non-Null Value
ROW 4288: has 22 Null-Value and 6 Non-Null Value
ROW 4289: has 28 Null-Value and 0 Non-Null Value
ROW 4290: has 27 Null-Value and 1 Non-Null Value
ROW 4291: has 28 Null-Value and 0 Non-Null Value
ROW 4292: has 27 Null-Value and 1 Non-Null Value
ROW 4293: has 26 Null-Value and 2 Non-Null Value
ROW 4294: has 28 Null-Value and 0 Non-Null Value
ROW 4295: has 27 Null-Value and 1 Non-Null Value
ROW 4296: has 28 Null-Value and 0 Non-Null Value
ROW 4297: has 27 Null-Value and 1 Non-Null Value
ROW 4298: has 28 Null-Value and 0 Non-Null Value
ROW 4299: has 23 Null-Value and 5 Non-Null Value
ROW 4300: has 27 Null-Value and 1 Non-Null Value
ROW 4301: has 28 Null-Value and 0 Non-Null Value
ROW 4302: has 26 Null-Value and 2 Non-Null Value
ROW 4303: has 28 Null-Value and 0 Non-Null Value
ROW 4304: has 23 Null-Value and 5 Non-Null Value
ROW 4305: has 27 Null-Value and 1 Non-Null Value
ROW 4306: has 26 Null-Value and 2 Non-Null Value
ROW 4307: has 26 Null-Value and 2 Non-Null Value
ROW 4308: has 27 Null-Value and 1 Non-Null Value
ROW 4309: has 27 Null-Value and 1 Non-Null Value
ROW 4310: has 27 Null-Value and 1 Non-Null Value
ROW 4311: has 28 Null-Value and 0 Non-Null Value
ROW 4312: has 28 Null-Value and 0 Non-Null Value
ROW 4313: has 28 Null-Value and 0 Non-Null Value
ROW 4314: has 25 Null-Value and 3 Non-Null Value
ROW 4315: has 27 Null-Value and 1 Non-Null Value
ROW 4316: has 27 Null-Value and 1 Non-Null Value
ROW 4317: has 26 Null-Value and 2 Non-Null Value
ROW 4318: has 28 Null-Value and 0 Non-Null Value
ROW 4319: has 27 Null-Value and 1 Non-Null Value
ROW 4320: has 27 Null-Value and 1 Non-Null Value
ROW 4321: has 26 Null-Value and 2 Non-Null Value
ROW 4322: has 27 Null-Value and 1 Non-Null Value
ROW 4323: has 22 Null-Value and 6 Non-Null Value
ROW 4324: has 27 Null-Value and 1 Non-Null Value
ROW 4325: has 25 Null-Value and 3 Non-Null Value
ROW 4326: has 27 Null-Value and 1 Non-Null Value
ROW 4327: has 22 Null-Value and 6 Non-Null Value
ROW 4328: has 28 Null-Value and 0 Non-Null Value
ROW 4329: has 27 Null-Value and 1 Non-Null Value
ROW 4330: has 27 Null-Value and 1 Non-Null Value
ROW 4331: has 26 Null-Value and 2 Non-Null Value
ROW 4332: has 26 Null-Value and 2 Non-Null Value
ROW 4333: has 28 Null-Value and 0 Non-Null Value
ROW 4334: has 26 Null-Value and 2 Non-Null Value
ROW 4335: has 26 Null-Value and 2 Non-Null Value
ROW 4336: has 26 Null-Value and 2 Non-Null Value
ROW 4337: has 27 Null-Value and 1 Non-Null Value
ROW 4338: has 25 Null-Value and 3 Non-Null Value
ROW 4339: has 26 Null-Value and 2 Non-Null Value
ROW 4340: has 26 Null-Value and 2 Non-Null Value
ROW 4341: has 24 Null-Value and 4 Non-Null Value
ROW 4342: has 26 Null-Value and 2 Non-Null Value
ROW 4343: has 28 Null-Value and 0 Non-Null Value
ROW 4344: has 28 Null-Value and 0 Non-Null Value
ROW 4345: has 27 Null-Value and 1 Non-Null Value
ROW 4346: has 28 Null-Value and 0 Non-Null Value
ROW 4347: has 27 Null-Value and 1 Non-Null Value
ROW 4348: has 26 Null-Value and 2 Non-Null Value
ROW 4349: has 28 Null-Value and 0 Non-Null Value
ROW 4350: has 28 Null-Value and 0 Non-Null Value
ROW 4351: has 25 Null-Value and 3 Non-Null Value
ROW 4352: has 28 Null-Value and 0 Non-Null Value
ROW 4353: has 28 Null-Value and 0 Non-Null Value
ROW 4354: has 23 Null-Value and 5 Non-Null Value
ROW 4355: has 28 Null-Value and 0 Non-Null Value
ROW 4356: has 28 Null-Value and 0 Non-Null Value
ROW 4357: has 27 Null-Value and 1 Non-Null Value
ROW 4358: has 27 Null-Value and 1 Non-Null Value
ROW 4359: has 27 Null-Value and 1 Non-Null Value
ROW 4360: has 28 Null-Value and 0 Non-Null Value
ROW 4361: has 28 Null-Value and 0 Non-Null Value
ROW 4362: has 27 Null-Value and 1 Non-Null Value
ROW 4363: has 28 Null-Value and 0 Non-Null Value
ROW 4364: has 27 Null-Value and 1 Non-Null Value
ROW 4365: has 24 Null-Value and 4 Non-Null Value
ROW 4366: has 27 Null-Value and 1 Non-Null Value
ROW 4367: has 27 Null-Value and 1 Non-Null Value
ROW 4368: has 27 Null-Value and 1 Non-Null Value
ROW 4369: has 27 Null-Value and 1 Non-Null Value
ROW 4370: has 25 Null-Value and 3 Non-Null Value
ROW 4371: has 27 Null-Value and 1 Non-Null Value
ROW 4372: has 21 Null-Value and 7 Non-Null Value
ROW 4373: has 26 Null-Value and 2 Non-Null Value
ROW 4374: has 27 Null-Value and 1 Non-Null Value
ROW 4375: has 28 Null-Value and 0 Non-Null Value
ROW 4376: has 28 Null-Value and 0 Non-Null Value
ROW 4377: has 26 Null-Value and 2 Non-Null Value
ROW 4378: has 27 Null-Value and 1 Non-Null Value
ROW 4379: has 27 Null-Value and 1 Non-Null Value
ROW 4380: has 27 Null-Value and 1 Non-Null Value
ROW 4381: has 28 Null-Value and 0 Non-Null Value
ROW 4382: has 28 Null-Value and 0 Non-Null Value
ROW 4383: has 28 Null-Value and 0 Non-Null Value
ROW 4384: has 28 Null-Value and 0 Non-Null Value
ROW 4385: has 28 Null-Value and 0 Non-Null Value
ROW 4386: has 28 Null-Value and 0 Non-Null Value
ROW 4387: has 27 Null-Value and 1 Non-Null Value
ROW 4388: has 27 Null-Value and 1 Non-Null Value
ROW 4389: has 27 Null-Value and 1 Non-Null Value
ROW 4390: has 26 Null-Value and 2 Non-Null Value
ROW 4391: has 27 Null-Value and 1 Non-Null Value
ROW 4392: has 26 Null-Value and 2 Non-Null Value
ROW 4393: has 28 Null-Value and 0 Non-Null Value
ROW 4394: has 26 Null-Value and 2 Non-Null Value
ROW 4395: has 27 Null-Value and 1 Non-Null Value
ROW 4396: has 27 Null-Value and 1 Non-Null Value
ROW 4397: has 24 Null-Value and 4 Non-Null Value
ROW 4398: has 28 Null-Value and 0 Non-Null Value
ROW 4399: has 28 Null-Value and 0 Non-Null Value
ROW 4400: has 25 Null-Value and 3 Non-Null Value
ROW 4401: has 28 Null-Value and 0 Non-Null Value
ROW 4402: has 28 Null-Value and 0 Non-Null Value
ROW 4403: has 28 Null-Value and 0 Non-Null Value
ROW 4404: has 27 Null-Value and 1 Non-Null Value
ROW 4405: has 27 Null-Value and 1 Non-Null Value
ROW 4406: has 28 Null-Value and 0 Non-Null Value
ROW 4407: has 28 Null-Value and 0 Non-Null Value
ROW 4408: has 27 Null-Value and 1 Non-Null Value
ROW 4409: has 22 Null-Value and 6 Non-Null Value
ROW 4410: has 27 Null-Value and 1 Non-Null Value
ROW 4411: has 28 Null-Value and 0 Non-Null Value
ROW 4412: has 28 Null-Value and 0 Non-Null Value
ROW 4413: has 28 Null-Value and 0 Non-Null Value
ROW 4414: has 27 Null-Value and 1 Non-Null Value
ROW 4415: has 28 Null-Value and 0 Non-Null Value
ROW 4416: has 27 Null-Value and 1 Non-Null Value
ROW 4417: has 28 Null-Value and 0 Non-Null Value
ROW 4418: has 28 Null-Value and 0 Non-Null Value
ROW 4419: has 28 Null-Value and 0 Non-Null Value
ROW 4420: has 28 Null-Value and 0 Non-Null Value
ROW 4421: has 27 Null-Value and 1 Non-Null Value
ROW 4422: has 26 Null-Value and 2 Non-Null Value
ROW 4423: has 28 Null-Value and 0 Non-Null Value
ROW 4424: has 28 Null-Value and 0 Non-Null Value
ROW 4425: has 25 Null-Value and 3 Non-Null Value
ROW 4426: has 27 Null-Value and 1 Non-Null Value
ROW 4427: has 28 Null-Value and 0 Non-Null Value
ROW 4428: has 28 Null-Value and 0 Non-Null Value
ROW 4429: has 28 Null-Value and 0 Non-Null Value
ROW 4430: has 27 Null-Value and 1 Non-Null Value
ROW 4431: has 26 Null-Value and 2 Non-Null Value
ROW 4432: has 27 Null-Value and 1 Non-Null Value
ROW 4433: has 27 Null-Value and 1 Non-Null Value
ROW 4434: has 28 Null-Value and 0 Non-Null Value
ROW 4435: has 28 Null-Value and 0 Non-Null Value
ROW 4436: has 22 Null-Value and 6 Non-Null Value
ROW 4437: has 28 Null-Value and 0 Non-Null Value
ROW 4438: has 27 Null-Value and 1 Non-Null Value
ROW 4439: has 27 Null-Value and 1 Non-Null Value
ROW 4440: has 25 Null-Value and 3 Non-Null Value
ROW 4441: has 25 Null-Value and 3 Non-Null Value
ROW 4442: has 26 Null-Value and 2 Non-Null Value
ROW 4443: has 24 Null-Value and 4 Non-Null Value
ROW 4444: has 25 Null-Value and 3 Non-Null Value
ROW 4445: has 25 Null-Value and 3 Non-Null Value
ROW 4446: has 28 Null-Value and 0 Non-Null Value
ROW 4447: has 26 Null-Value and 2 Non-Null Value
ROW 4448: has 25 Null-Value and 3 Non-Null Value
ROW 4449: has 28 Null-Value and 0 Non-Null Value
ROW 4450: has 28 Null-Value and 0 Non-Null Value
ROW 4451: has 27 Null-Value and 1 Non-Null Value
ROW 4452: has 28 Null-Value and 0 Non-Null Value
ROW 4453: has 25 Null-Value and 3 Non-Null Value
ROW 4454: has 26 Null-Value and 2 Non-Null Value
ROW 4455: has 27 Null-Value and 1 Non-Null Value
ROW 4456: has 26 Null-Value and 2 Non-Null Value
ROW 4457: has 27 Null-Value and 1 Non-Null Value
ROW 4458: has 28 Null-Value and 0 Non-Null Value
ROW 4459: has 23 Null-Value and 5 Non-Null Value
ROW 4460: has 20 Null-Value and 8 Non-Null Value
ROW 4461: has 28 Null-Value and 0 Non-Null Value
ROW 4462: has 28 Null-Value and 0 Non-Null Value
ROW 4463: has 28 Null-Value and 0 Non-Null Value
ROW 4464: has 28 Null-Value and 0 Non-Null Value
ROW 4465: has 27 Null-Value and 1 Non-Null Value
ROW 4466: has 28 Null-Value and 0 Non-Null Value
ROW 4467: has 23 Null-Value and 5 Non-Null Value
ROW 4468: has 27 Null-Value and 1 Non-Null Value
ROW 4469: has 27 Null-Value and 1 Non-Null Value
ROW 4470: has 28 Null-Value and 0 Non-Null Value
ROW 4471: has 27 Null-Value and 1 Non-Null Value
ROW 4472: has 27 Null-Value and 1 Non-Null Value
ROW 4473: has 26 Null-Value and 2 Non-Null Value
ROW 4474: has 27 Null-Value and 1 Non-Null Value
ROW 4475: has 28 Null-Value and 0 Non-Null Value
ROW 4476: has 27 Null-Value and 1 Non-Null Value
ROW 4477: has 27 Null-Value and 1 Non-Null Value
ROW 4478: has 27 Null-Value and 1 Non-Null Value
ROW 4479: has 27 Null-Value and 1 Non-Null Value
ROW 4480: has 27 Null-Value and 1 Non-Null Value
ROW 4481: has 27 Null-Value and 1 Non-Null Value
ROW 4482: has 22 Null-Value and 6 Non-Null Value
ROW 4483: has 26 Null-Value and 2 Non-Null Value
ROW 4484: has 28 Null-Value and 0 Non-Null Value
ROW 4485: has 28 Null-Value and 0 Non-Null Value
ROW 4486: has 28 Null-Value and 0 Non-Null Value
ROW 4487: has 26 Null-Value and 2 Non-Null Value
ROW 4488: has 26 Null-Value and 2 Non-Null Value
ROW 4489: has 28 Null-Value and 0 Non-Null Value
ROW 4490: has 28 Null-Value and 0 Non-Null Value
ROW 4491: has 28 Null-Value and 0 Non-Null Value
ROW 4492: has 27 Null-Value and 1 Non-Null Value
ROW 4493: has 28 Null-Value and 0 Non-Null Value
ROW 4494: has 28 Null-Value and 0 Non-Null Value
ROW 4495: has 28 Null-Value and 0 Non-Null Value
ROW 4496: has 28 Null-Value and 0 Non-Null Value
ROW 4497: has 26 Null-Value and 2 Non-Null Value
ROW 4498: has 28 Null-Value and 0 Non-Null Value
ROW 4499: has 28 Null-Value and 0 Non-Null Value
ROW 4500: has 28 Null-Value and 0 Non-Null Value
ROW 4501: has 28 Null-Value and 0 Non-Null Value
ROW 4502: has 21 Null-Value and 7 Non-Null Value
ROW 4503: has 26 Null-Value and 2 Non-Null Value
ROW 4504: has 26 Null-Value and 2 Non-Null Value
ROW 4505: has 25 Null-Value and 3 Non-Null Value
ROW 4506: has 26 Null-Value and 2 Non-Null Value
ROW 4507: has 26 Null-Value and 2 Non-Null Value
ROW 4508: has 27 Null-Value and 1 Non-Null Value
ROW 4509: has 25 Null-Value and 3 Non-Null Value
ROW 4510: has 26 Null-Value and 2 Non-Null Value
ROW 4511: has 28 Null-Value and 0 Non-Null Value
ROW 4512: has 27 Null-Value and 1 Non-Null Value
ROW 4513: has 26 Null-Value and 2 Non-Null Value
ROW 4514: has 25 Null-Value and 3 Non-Null Value
ROW 4515: has 28 Null-Value and 0 Non-Null Value
ROW 4516: has 27 Null-Value and 1 Non-Null Value
ROW 4517: has 21 Null-Value and 7 Non-Null Value
ROW 4518: has 28 Null-Value and 0 Non-Null Value
ROW 4519: has 20 Null-Value and 8 Non-Null Value
ROW 4520: has 27 Null-Value and 1 Non-Null Value
ROW 4521: has 27 Null-Value and 1 Non-Null Value
ROW 4522: has 28 Null-Value and 0 Non-Null Value
ROW 4523: has 28 Null-Value and 0 Non-Null Value
ROW 4524: has 27 Null-Value and 1 Non-Null Value
ROW 4525: has 26 Null-Value and 2 Non-Null Value
ROW 4526: has 27 Null-Value and 1 Non-Null Value
ROW 4527: has 27 Null-Value and 1 Non-Null Value
ROW 4528: has 24 Null-Value and 4 Non-Null Value
ROW 4529: has 27 Null-Value and 1 Non-Null Value
ROW 4530: has 28 Null-Value and 0 Non-Null Value
ROW 4531: has 27 Null-Value and 1 Non-Null Value
ROW 4532: has 28 Null-Value and 0 Non-Null Value
ROW 4533: has 27 Null-Value and 1 Non-Null Value
ROW 4534: has 28 Null-Value and 0 Non-Null Value
ROW 4535: has 27 Null-Value and 1 Non-Null Value
ROW 4536: has 28 Null-Value and 0 Non-Null Value
ROW 4537: has 28 Null-Value and 0 Non-Null Value
ROW 4538: has 28 Null-Value and 0 Non-Null Value
ROW 4539: has 28 Null-Value and 0 Non-Null Value
ROW 4540: has 28 Null-Value and 0 Non-Null Value
ROW 4541: has 28 Null-Value and 0 Non-Null Value
ROW 4542: has 28 Null-Value and 0 Non-Null Value
ROW 4543: has 28 Null-Value and 0 Non-Null Value
ROW 4544: has 28 Null-Value and 0 Non-Null Value
ROW 4545: has 28 Null-Value and 0 Non-Null Value
ROW 4546: has 28 Null-Value and 0 Non-Null Value
ROW 4547: has 26 Null-Value and 2 Non-Null Value
ROW 4548: has 25 Null-Value and 3 Non-Null Value
ROW 4549: has 27 Null-Value and 1 Non-Null Value
ROW 4550: has 27 Null-Value and 1 Non-Null Value
ROW 4551: has 28 Null-Value and 0 Non-Null Value
ROW 4552: has 26 Null-Value and 2 Non-Null Value
ROW 4553: has 28 Null-Value and 0 Non-Null Value
ROW 4554: has 27 Null-Value and 1 Non-Null Value
ROW 4555: has 26 Null-Value and 2 Non-Null Value
ROW 4556: has 28 Null-Value and 0 Non-Null Value
ROW 4557: has 28 Null-Value and 0 Non-Null Value
ROW 4558: has 27 Null-Value and 1 Non-Null Value
ROW 4559: has 27 Null-Value and 1 Non-Null Value
ROW 4560: has 27 Null-Value and 1 Non-Null Value
ROW 4561: has 28 Null-Value and 0 Non-Null Value
ROW 4562: has 28 Null-Value and 0 Non-Null Value
ROW 4563: has 28 Null-Value and 0 Non-Null Value
ROW 4564: has 28 Null-Value and 0 Non-Null Value
ROW 4565: has 28 Null-Value and 0 Non-Null Value
ROW 4566: has 28 Null-Value and 0 Non-Null Value
ROW 4567: has 28 Null-Value and 0 Non-Null Value
ROW 4568: has 27 Null-Value and 1 Non-Null Value
ROW 4569: has 28 Null-Value and 0 Non-Null Value
ROW 4570: has 28 Null-Value and 0 Non-Null Value
ROW 4571: has 28 Null-Value and 0 Non-Null Value
ROW 4572: has 27 Null-Value and 1 Non-Null Value
ROW 4573: has 27 Null-Value and 1 Non-Null Value
ROW 4574: has 28 Null-Value and 0 Non-Null Value
ROW 4575: has 28 Null-Value and 0 Non-Null Value
ROW 4576: has 28 Null-Value and 0 Non-Null Value
ROW 4577: has 28 Null-Value and 0 Non-Null Value
ROW 4578: has 27 Null-Value and 1 Non-Null Value
ROW 4579: has 27 Null-Value and 1 Non-Null Value
ROW 4580: has 26 Null-Value and 2 Non-Null Value
ROW 4581: has 28 Null-Value and 0 Non-Null Value
ROW 4582: has 27 Null-Value and 1 Non-Null Value
ROW 4583: has 28 Null-Value and 0 Non-Null Value
ROW 4584: has 28 Null-Value and 0 Non-Null Value
ROW 4585: has 28 Null-Value and 0 Non-Null Value
ROW 4586: has 28 Null-Value and 0 Non-Null Value
ROW 4587: has 28 Null-Value and 0 Non-Null Value
ROW 4588: has 25 Null-Value and 3 Non-Null Value
ROW 4589: has 26 Null-Value and 2 Non-Null Value
ROW 4590: has 28 Null-Value and 0 Non-Null Value
ROW 4591: has 27 Null-Value and 1 Non-Null Value
ROW 4592: has 28 Null-Value and 0 Non-Null Value
ROW 4593: has 26 Null-Value and 2 Non-Null Value
ROW 4594: has 28 Null-Value and 0 Non-Null Value
ROW 4595: has 28 Null-Value and 0 Non-Null Value
ROW 4596: has 28 Null-Value and 0 Non-Null Value
ROW 4597: has 26 Null-Value and 2 Non-Null Value
ROW 4598: has 27 Null-Value and 1 Non-Null Value
ROW 4599: has 28 Null-Value and 0 Non-Null Value
ROW 4600: has 26 Null-Value and 2 Non-Null Value
ROW 4601: has 28 Null-Value and 0 Non-Null Value
ROW 4602: has 28 Null-Value and 0 Non-Null Value
ROW 4603: has 28 Null-Value and 0 Non-Null Value
ROW 4604: has 26 Null-Value and 2 Non-Null Value
ROW 4605: has 27 Null-Value and 1 Non-Null Value
ROW 4606: has 28 Null-Value and 0 Non-Null Value
ROW 4607: has 28 Null-Value and 0 Non-Null Value
ROW 4608: has 27 Null-Value and 1 Non-Null Value
ROW 4609: has 24 Null-Value and 4 Non-Null Value
ROW 4610: has 27 Null-Value and 1 Non-Null Value
ROW 4611: has 26 Null-Value and 2 Non-Null Value
ROW 4612: has 26 Null-Value and 2 Non-Null Value
ROW 4613: has 27 Null-Value and 1 Non-Null Value
ROW 4614: has 25 Null-Value and 3 Non-Null Value
ROW 4615: has 25 Null-Value and 3 Non-Null Value
ROW 4616: has 26 Null-Value and 2 Non-Null Value
ROW 4617: has 23 Null-Value and 5 Non-Null Value
ROW 4618: has 27 Null-Value and 1 Non-Null Value
ROW 4619: has 27 Null-Value and 1 Non-Null Value
ROW 4620: has 26 Null-Value and 2 Non-Null Value
ROW 4621: has 26 Null-Value and 2 Non-Null Value
ROW 4622: has 24 Null-Value and 4 Non-Null Value
ROW 4623: has 27 Null-Value and 1 Non-Null Value
ROW 4624: has 26 Null-Value and 2 Non-Null Value
ROW 4625: has 27 Null-Value and 1 Non-Null Value
ROW 4626: has 25 Null-Value and 3 Non-Null Value
ROW 4627: has 24 Null-Value and 4 Non-Null Value
ROW 4628: has 27 Null-Value and 1 Non-Null Value
ROW 4629: has 27 Null-Value and 1 Non-Null Value
ROW 4630: has 23 Null-Value and 5 Non-Null Value
ROW 4631: has 28 Null-Value and 0 Non-Null Value
ROW 4632: has 26 Null-Value and 2 Non-Null Value
ROW 4633: has 26 Null-Value and 2 Non-Null Value
ROW 4634: has 20 Null-Value and 8 Non-Null Value
ROW 4635: has 26 Null-Value and 2 Non-Null Value
ROW 4636: has 25 Null-Value and 3 Non-Null Value
ROW 4637: has 25 Null-Value and 3 Non-Null Value
ROW 4638: has 28 Null-Value and 0 Non-Null Value
ROW 4639: has 28 Null-Value and 0 Non-Null Value
ROW 4640: has 28 Null-Value and 0 Non-Null Value
ROW 4641: has 25 Null-Value and 3 Non-Null Value
ROW 4642: has 28 Null-Value and 0 Non-Null Value
ROW 4643: has 28 Null-Value and 0 Non-Null Value
ROW 4644: has 27 Null-Value and 1 Non-Null Value
ROW 4645: has 28 Null-Value and 0 Non-Null Value
ROW 4646: has 28 Null-Value and 0 Non-Null Value
ROW 4647: has 27 Null-Value and 1 Non-Null Value
ROW 4648: has 27 Null-Value and 1 Non-Null Value
ROW 4649: has 28 Null-Value and 0 Non-Null Value
ROW 4650: has 28 Null-Value and 0 Non-Null Value
ROW 4651: has 26 Null-Value and 2 Non-Null Value
ROW 4652: has 26 Null-Value and 2 Non-Null Value
ROW 4653: has 28 Null-Value and 0 Non-Null Value
ROW 4654: has 27 Null-Value and 1 Non-Null Value
ROW 4655: has 28 Null-Value and 0 Non-Null Value
ROW 4656: has 27 Null-Value and 1 Non-Null Value
ROW 4657: has 25 Null-Value and 3 Non-Null Value
ROW 4658: has 24 Null-Value and 4 Non-Null Value
ROW 4659: has 28 Null-Value and 0 Non-Null Value
ROW 4660: has 24 Null-Value and 4 Non-Null Value
ROW 4661: has 28 Null-Value and 0 Non-Null Value
ROW 4662: has 28 Null-Value and 0 Non-Null Value
ROW 4663: has 28 Null-Value and 0 Non-Null Value
ROW 4664: has 27 Null-Value and 1 Non-Null Value
ROW 4665: has 26 Null-Value and 2 Non-Null Value
ROW 4666: has 26 Null-Value and 2 Non-Null Value
ROW 4667: has 28 Null-Value and 0 Non-Null Value
ROW 4668: has 26 Null-Value and 2 Non-Null Value
ROW 4669: has 26 Null-Value and 2 Non-Null Value
ROW 4670: has 26 Null-Value and 2 Non-Null Value
ROW 4671: has 28 Null-Value and 0 Non-Null Value
ROW 4672: has 27 Null-Value and 1 Non-Null Value
ROW 4673: has 24 Null-Value and 4 Non-Null Value
ROW 4674: has 28 Null-Value and 0 Non-Null Value
ROW 4675: has 26 Null-Value and 2 Non-Null Value
ROW 4676: has 28 Null-Value and 0 Non-Null Value
ROW 4677: has 28 Null-Value and 0 Non-Null Value
ROW 4678: has 27 Null-Value and 1 Non-Null Value
ROW 4679: has 28 Null-Value and 0 Non-Null Value
ROW 4680: has 28 Null-Value and 0 Non-Null Value
ROW 4681: has 28 Null-Value and 0 Non-Null Value
ROW 4682: has 27 Null-Value and 1 Non-Null Value
ROW 4683: has 28 Null-Value and 0 Non-Null Value
ROW 4684: has 28 Null-Value and 0 Non-Null Value
ROW 4685: has 27 Null-Value and 1 Non-Null Value
ROW 4686: has 27 Null-Value and 1 Non-Null Value
ROW 4687: has 27 Null-Value and 1 Non-Null Value
ROW 4688: has 28 Null-Value and 0 Non-Null Value
ROW 4689: has 27 Null-Value and 1 Non-Null Value
ROW 4690: has 23 Null-Value and 5 Non-Null Value
ROW 4691: has 28 Null-Value and 0 Non-Null Value
ROW 4692: has 26 Null-Value and 2 Non-Null Value
ROW 4693: has 25 Null-Value and 3 Non-Null Value
ROW 4694: has 28 Null-Value and 0 Non-Null Value
ROW 4695: has 28 Null-Value and 0 Non-Null Value
ROW 4696: has 28 Null-Value and 0 Non-Null Value
ROW 4697: has 27 Null-Value and 1 Non-Null Value
ROW 4698: has 27 Null-Value and 1 Non-Null Value
ROW 4699: has 26 Null-Value and 2 Non-Null Value
ROW 4700: has 27 Null-Value and 1 Non-Null Value
ROW 4701: has 25 Null-Value and 3 Non-Null Value
ROW 4702: has 25 Null-Value and 3 Non-Null Value
ROW 4703: has 27 Null-Value and 1 Non-Null Value
ROW 4704: has 25 Null-Value and 3 Non-Null Value
ROW 4705: has 25 Null-Value and 3 Non-Null Value
ROW 4706: has 28 Null-Value and 0 Non-Null Value
ROW 4707: has 28 Null-Value and 0 Non-Null Value
ROW 4708: has 28 Null-Value and 0 Non-Null Value
ROW 4709: has 27 Null-Value and 1 Non-Null Value
ROW 4710: has 28 Null-Value and 0 Non-Null Value
ROW 4711: has 26 Null-Value and 2 Non-Null Value
ROW 4712: has 28 Null-Value and 0 Non-Null Value
ROW 4713: has 23 Null-Value and 5 Non-Null Value
ROW 4714: has 24 Null-Value and 4 Non-Null Value
ROW 4715: has 25 Null-Value and 3 Non-Null Value
ROW 4716: has 25 Null-Value and 3 Non-Null Value
ROW 4717: has 24 Null-Value and 4 Non-Null Value
ROW 4718: has 24 Null-Value and 4 Non-Null Value
ROW 4719: has 28 Null-Value and 0 Non-Null Value
ROW 4720: has 20 Null-Value and 8 Non-Null Value
ROW 4721: has 26 Null-Value and 2 Non-Null Value
ROW 4722: has 25 Null-Value and 3 Non-Null Value
ROW 4723: has 28 Null-Value and 0 Non-Null Value
ROW 4724: has 26 Null-Value and 2 Non-Null Value
ROW 4725: has 28 Null-Value and 0 Non-Null Value
ROW 4726: has 28 Null-Value and 0 Non-Null Value
ROW 4727: has 24 Null-Value and 4 Non-Null Value
ROW 4728: has 28 Null-Value and 0 Non-Null Value
ROW 4729: has 27 Null-Value and 1 Non-Null Value
ROW 4730: has 28 Null-Value and 0 Non-Null Value
ROW 4731: has 28 Null-Value and 0 Non-Null Value
ROW 4732: has 27 Null-Value and 1 Non-Null Value
ROW 4733: has 28 Null-Value and 0 Non-Null Value
ROW 4734: has 27 Null-Value and 1 Non-Null Value
ROW 4735: has 28 Null-Value and 0 Non-Null Value
ROW 4736: has 28 Null-Value and 0 Non-Null Value
ROW 4737: has 28 Null-Value and 0 Non-Null Value
ROW 4738: has 27 Null-Value and 1 Non-Null Value
ROW 4739: has 28 Null-Value and 0 Non-Null Value
ROW 4740: has 28 Null-Value and 0 Non-Null Value
ROW 4741: has 28 Null-Value and 0 Non-Null Value
ROW 4742: has 28 Null-Value and 0 Non-Null Value
ROW 4743: has 28 Null-Value and 0 Non-Null Value
ROW 4744: has 28 Null-Value and 0 Non-Null Value
ROW 4745: has 27 Null-Value and 1 Non-Null Value
ROW 4746: has 26 Null-Value and 2 Non-Null Value
ROW 4747: has 28 Null-Value and 0 Non-Null Value
ROW 4748: has 27 Null-Value and 1 Non-Null Value
ROW 4749: has 27 Null-Value and 1 Non-Null Value
ROW 4750: has 28 Null-Value and 0 Non-Null Value
ROW 4751: has 28 Null-Value and 0 Non-Null Value
ROW 4752: has 28 Null-Value and 0 Non-Null Value
ROW 4753: has 28 Null-Value and 0 Non-Null Value
ROW 4754: has 28 Null-Value and 0 Non-Null Value
ROW 4755: has 28 Null-Value and 0 Non-Null Value
ROW 4756: has 26 Null-Value and 2 Non-Null Value
ROW 4757: has 27 Null-Value and 1 Non-Null Value
ROW 4758: has 28 Null-Value and 0 Non-Null Value
ROW 4759: has 26 Null-Value and 2 Non-Null Value
ROW 4760: has 26 Null-Value and 2 Non-Null Value
ROW 4761: has 27 Null-Value and 1 Non-Null Value
ROW 4762: has 27 Null-Value and 1 Non-Null Value
ROW 4763: has 24 Null-Value and 4 Non-Null Value
ROW 4764: has 25 Null-Value and 3 Non-Null Value
ROW 4765: has 26 Null-Value and 2 Non-Null Value
ROW 4766: has 27 Null-Value and 1 Non-Null Value
ROW 4767: has 21 Null-Value and 7 Non-Null Value
ROW 4768: has 25 Null-Value and 3 Non-Null Value
ROW 4769: has 28 Null-Value and 0 Non-Null Value
ROW 4770: has 26 Null-Value and 2 Non-Null Value
ROW 4771: has 26 Null-Value and 2 Non-Null Value
ROW 4772: has 26 Null-Value and 2 Non-Null Value
ROW 4773: has 26 Null-Value and 2 Non-Null Value
ROW 4774: has 24 Null-Value and 4 Non-Null Value
ROW 4775: has 25 Null-Value and 3 Non-Null Value
ROW 4776: has 26 Null-Value and 2 Non-Null Value
ROW 4777: has 25 Null-Value and 3 Non-Null Value
ROW 4778: has 28 Null-Value and 0 Non-Null Value
ROW 4779: has 27 Null-Value and 1 Non-Null Value
ROW 4780: has 28 Null-Value and 0 Non-Null Value
ROW 4781: has 28 Null-Value and 0 Non-Null Value
ROW 4782: has 26 Null-Value and 2 Non-Null Value
ROW 4783: has 28 Null-Value and 0 Non-Null Value
ROW 4784: has 28 Null-Value and 0 Non-Null Value
ROW 4785: has 25 Null-Value and 3 Non-Null Value
ROW 4786: has 28 Null-Value and 0 Non-Null Value
ROW 4787: has 25 Null-Value and 3 Non-Null Value
ROW 4788: has 28 Null-Value and 0 Non-Null Value
ROW 4789: has 27 Null-Value and 1 Non-Null Value
ROW 4790: has 25 Null-Value and 3 Non-Null Value
ROW 4791: has 28 Null-Value and 0 Non-Null Value
ROW 4792: has 28 Null-Value and 0 Non-Null Value
ROW 4793: has 28 Null-Value and 0 Non-Null Value
ROW 4794: has 27 Null-Value and 1 Non-Null Value
ROW 4795: has 28 Null-Value and 0 Non-Null Value
ROW 4796: has 28 Null-Value and 0 Non-Null Value
ROW 4797: has 27 Null-Value and 1 Non-Null Value
ROW 4798: has 23 Null-Value and 5 Non-Null Value
ROW 4799: has 28 Null-Value and 0 Non-Null Value
ROW 4800: has 27 Null-Value and 1 Non-Null Value
ROW 4801: has 25 Null-Value and 3 Non-Null Value
ROW 4802: has 28 Null-Value and 0 Non-Null Value
ROW 4803: has 23 Null-Value and 5 Non-Null Value
ROW 4804: has 28 Null-Value and 0 Non-Null Value
ROW 4805: has 27 Null-Value and 1 Non-Null Value
ROW 4806: has 27 Null-Value and 1 Non-Null Value
ROW 4807: has 26 Null-Value and 2 Non-Null Value
ROW 4808: has 27 Null-Value and 1 Non-Null Value
ROW 4809: has 27 Null-Value and 1 Non-Null Value
ROW 4810: has 26 Null-Value and 2 Non-Null Value
ROW 4811: has 27 Null-Value and 1 Non-Null Value
ROW 4812: has 28 Null-Value and 0 Non-Null Value
ROW 4813: has 27 Null-Value and 1 Non-Null Value
ROW 4814: has 28 Null-Value and 0 Non-Null Value
ROW 4815: has 22 Null-Value and 6 Non-Null Value
ROW 4816: has 28 Null-Value and 0 Non-Null Value
ROW 4817: has 28 Null-Value and 0 Non-Null Value
ROW 4818: has 26 Null-Value and 2 Non-Null Value
ROW 4819: has 23 Null-Value and 5 Non-Null Value
ROW 4820: has 26 Null-Value and 2 Non-Null Value
ROW 4821: has 28 Null-Value and 0 Non-Null Value
ROW 4822: has 27 Null-Value and 1 Non-Null Value
ROW 4823: has 26 Null-Value and 2 Non-Null Value
ROW 4824: has 27 Null-Value and 1 Non-Null Value
ROW 4825: has 27 Null-Value and 1 Non-Null Value
ROW 4826: has 27 Null-Value and 1 Non-Null Value
ROW 4827: has 28 Null-Value and 0 Non-Null Value
ROW 4828: has 28 Null-Value and 0 Non-Null Value
ROW 4829: has 28 Null-Value and 0 Non-Null Value
ROW 4830: has 28 Null-Value and 0 Non-Null Value
ROW 4831: has 25 Null-Value and 3 Non-Null Value
ROW 4832: has 28 Null-Value and 0 Non-Null Value
ROW 4833: has 28 Null-Value and 0 Non-Null Value
ROW 4834: has 26 Null-Value and 2 Non-Null Value
ROW 4835: has 27 Null-Value and 1 Non-Null Value
ROW 4836: has 23 Null-Value and 5 Non-Null Value
ROW 4837: has 21 Null-Value and 7 Non-Null Value
ROW 4838: has 27 Null-Value and 1 Non-Null Value
ROW 4839: has 27 Null-Value and 1 Non-Null Value
ROW 4840: has 28 Null-Value and 0 Non-Null Value
ROW 4841: has 26 Null-Value and 2 Non-Null Value
ROW 4842: has 28 Null-Value and 0 Non-Null Value
ROW 4843: has 24 Null-Value and 4 Non-Null Value
ROW 4844: has 27 Null-Value and 1 Non-Null Value
ROW 4845: has 28 Null-Value and 0 Non-Null Value
ROW 4846: has 24 Null-Value and 4 Non-Null Value
ROW 4847: has 26 Null-Value and 2 Non-Null Value
ROW 4848: has 27 Null-Value and 1 Non-Null Value
ROW 4849: has 27 Null-Value and 1 Non-Null Value
ROW 4850: has 26 Null-Value and 2 Non-Null Value
ROW 4851: has 28 Null-Value and 0 Non-Null Value
ROW 4852: has 28 Null-Value and 0 Non-Null Value
ROW 4853: has 28 Null-Value and 0 Non-Null Value
ROW 4854: has 25 Null-Value and 3 Non-Null Value
ROW 4855: has 28 Null-Value and 0 Non-Null Value
ROW 4856: has 28 Null-Value and 0 Non-Null Value
ROW 4857: has 28 Null-Value and 0 Non-Null Value
ROW 4858: has 28 Null-Value and 0 Non-Null Value
ROW 4859: has 22 Null-Value and 6 Non-Null Value
ROW 4860: has 28 Null-Value and 0 Non-Null Value
ROW 4861: has 27 Null-Value and 1 Non-Null Value
ROW 4862: has 28 Null-Value and 0 Non-Null Value
ROW 4863: has 28 Null-Value and 0 Non-Null Value
ROW 4864: has 28 Null-Value and 0 Non-Null Value
ROW 4865: has 25 Null-Value and 3 Non-Null Value
ROW 4866: has 27 Null-Value and 1 Non-Null Value
ROW 4867: has 26 Null-Value and 2 Non-Null Value
ROW 4868: has 28 Null-Value and 0 Non-Null Value
ROW 4869: has 23 Null-Value and 5 Non-Null Value
ROW 4870: has 25 Null-Value and 3 Non-Null Value
ROW 4871: has 27 Null-Value and 1 Non-Null Value
ROW 4872: has 26 Null-Value and 2 Non-Null Value
ROW 4873: has 27 Null-Value and 1 Non-Null Value
ROW 4874: has 26 Null-Value and 2 Non-Null Value
ROW 4875: has 26 Null-Value and 2 Non-Null Value
ROW 4876: has 25 Null-Value and 3 Non-Null Value
ROW 4877: has 26 Null-Value and 2 Non-Null Value
ROW 4878: has 22 Null-Value and 6 Non-Null Value
ROW 4879: has 26 Null-Value and 2 Non-Null Value
ROW 4880: has 25 Null-Value and 3 Non-Null Value
ROW 4881: has 26 Null-Value and 2 Non-Null Value
ROW 4882: has 25 Null-Value and 3 Non-Null Value
ROW 4883: has 25 Null-Value and 3 Non-Null Value
ROW 4884: has 25 Null-Value and 3 Non-Null Value
ROW 4885: has 26 Null-Value and 2 Non-Null Value
ROW 4886: has 25 Null-Value and 3 Non-Null Value
ROW 4887: has 25 Null-Value and 3 Non-Null Value
ROW 4888: has 27 Null-Value and 1 Non-Null Value
ROW 4889: has 25 Null-Value and 3 Non-Null Value
ROW 4890: has 28 Null-Value and 0 Non-Null Value
ROW 4891: has 28 Null-Value and 0 Non-Null Value
ROW 4892: has 27 Null-Value and 1 Non-Null Value
ROW 4893: has 28 Null-Value and 0 Non-Null Value
ROW 4894: has 27 Null-Value and 1 Non-Null Value
ROW 4895: has 27 Null-Value and 1 Non-Null Value
ROW 4896: has 28 Null-Value and 0 Non-Null Value
ROW 4897: has 28 Null-Value and 0 Non-Null Value
ROW 4898: has 27 Null-Value and 1 Non-Null Value
ROW 4899: has 27 Null-Value and 1 Non-Null Value
ROW 4900: has 27 Null-Value and 1 Non-Null Value
ROW 4901: has 27 Null-Value and 1 Non-Null Value
ROW 4902: has 27 Null-Value and 1 Non-Null Value
ROW 4903: has 26 Null-Value and 2 Non-Null Value
ROW 4904: has 27 Null-Value and 1 Non-Null Value
ROW 4905: has 28 Null-Value and 0 Non-Null Value
ROW 4906: has 27 Null-Value and 1 Non-Null Value
ROW 4907: has 25 Null-Value and 3 Non-Null Value
ROW 4908: has 27 Null-Value and 1 Non-Null Value
ROW 4909: has 27 Null-Value and 1 Non-Null Value
ROW 4910: has 23 Null-Value and 5 Non-Null Value
ROW 4911: has 25 Null-Value and 3 Non-Null Value
ROW 4912: has 26 Null-Value and 2 Non-Null Value
ROW 4913: has 27 Null-Value and 1 Non-Null Value
ROW 4914: has 27 Null-Value and 1 Non-Null Value
ROW 4915: has 28 Null-Value and 0 Non-Null Value
ROW 4916: has 26 Null-Value and 2 Non-Null Value
ROW 4917: has 27 Null-Value and 1 Non-Null Value
ROW 4918: has 24 Null-Value and 4 Non-Null Value
ROW 4919: has 23 Null-Value and 5 Non-Null Value
ROW 4920: has 25 Null-Value and 3 Non-Null Value
ROW 4921: has 28 Null-Value and 0 Non-Null Value
ROW 4922: has 28 Null-Value and 0 Non-Null Value
ROW 4923: has 28 Null-Value and 0 Non-Null Value
ROW 4924: has 23 Null-Value and 5 Non-Null Value
ROW 4925: has 24 Null-Value and 4 Non-Null Value
ROW 4926: has 28 Null-Value and 0 Non-Null Value
ROW 4927: has 25 Null-Value and 3 Non-Null Value
ROW 4928: has 28 Null-Value and 0 Non-Null Value
ROW 4929: has 23 Null-Value and 5 Non-Null Value
ROW 4930: has 28 Null-Value and 0 Non-Null Value
ROW 4931: has 28 Null-Value and 0 Non-Null Value
ROW 4932: has 26 Null-Value and 2 Non-Null Value
ROW 4933: has 28 Null-Value and 0 Non-Null Value
ROW 4934: has 25 Null-Value and 3 Non-Null Value
ROW 4935: has 25 Null-Value and 3 Non-Null Value
ROW 4936: has 28 Null-Value and 0 Non-Null Value
ROW 4937: has 27 Null-Value and 1 Non-Null Value
ROW 4938: has 25 Null-Value and 3 Non-Null Value
ROW 4939: has 25 Null-Value and 3 Non-Null Value
ROW 4940: has 25 Null-Value and 3 Non-Null Value
ROW 4941: has 28 Null-Value and 0 Non-Null Value
ROW 4942: has 27 Null-Value and 1 Non-Null Value
ROW 4943: has 26 Null-Value and 2 Non-Null Value
ROW 4944: has 27 Null-Value and 1 Non-Null Value
ROW 4945: has 17 Null-Value and 11 Non-Null Value
ROW 4946: has 20 Null-Value and 8 Non-Null Value
ROW 4947: has 27 Null-Value and 1 Non-Null Value
ROW 4948: has 20 Null-Value and 8 Non-Null Value
ROW 4949: has 26 Null-Value and 2 Non-Null Value
ROW 4950: has 26 Null-Value and 2 Non-Null Value
ROW 4951: has 27 Null-Value and 1 Non-Null Value
ROW 4952: has 26 Null-Value and 2 Non-Null Value
ROW 4953: has 26 Null-Value and 2 Non-Null Value
ROW 4954: has 25 Null-Value and 3 Non-Null Value
ROW 4955: has 28 Null-Value and 0 Non-Null Value
ROW 4956: has 28 Null-Value and 0 Non-Null Value
ROW 4957: has 27 Null-Value and 1 Non-Null Value
ROW 4958: has 26 Null-Value and 2 Non-Null Value
ROW 4959: has 28 Null-Value and 0 Non-Null Value
ROW 4960: has 27 Null-Value and 1 Non-Null Value
ROW 4961: has 27 Null-Value and 1 Non-Null Value
ROW 4962: has 28 Null-Value and 0 Non-Null Value
ROW 4963: has 26 Null-Value and 2 Non-Null Value
ROW 4964: has 28 Null-Value and 0 Non-Null Value
ROW 4965: has 27 Null-Value and 1 Non-Null Value
ROW 4966: has 27 Null-Value and 1 Non-Null Value
ROW 4967: has 26 Null-Value and 2 Non-Null Value
ROW 4968: has 26 Null-Value and 2 Non-Null Value
ROW 4969: has 25 Null-Value and 3 Non-Null Value
ROW 4970: has 27 Null-Value and 1 Non-Null Value
ROW 4971: has 28 Null-Value and 0 Non-Null Value
ROW 4972: has 25 Null-Value and 3 Non-Null Value
ROW 4973: has 28 Null-Value and 0 Non-Null Value
ROW 4974: has 26 Null-Value and 2 Non-Null Value
ROW 4975: has 28 Null-Value and 0 Non-Null Value
ROW 4976: has 24 Null-Value and 4 Non-Null Value
ROW 4977: has 28 Null-Value and 0 Non-Null Value
ROW 4978: has 28 Null-Value and 0 Non-Null Value
ROW 4979: has 28 Null-Value and 0 Non-Null Value
ROW 4980: has 27 Null-Value and 1 Non-Null Value
ROW 4981: has 27 Null-Value and 1 Non-Null Value
ROW 4982: has 25 Null-Value and 3 Non-Null Value
ROW 4983: has 27 Null-Value and 1 Non-Null Value
ROW 4984: has 28 Null-Value and 0 Non-Null Value
ROW 4985: has 25 Null-Value and 3 Non-Null Value
ROW 4986: has 26 Null-Value and 2 Non-Null Value
ROW 4987: has 28 Null-Value and 0 Non-Null Value
ROW 4988: has 26 Null-Value and 2 Non-Null Value
ROW 4989: has 22 Null-Value and 6 Non-Null Value
ROW 4990: has 20 Null-Value and 8 Non-Null Value
ROW 4991: has 26 Null-Value and 2 Non-Null Value
ROW 4992: has 21 Null-Value and 7 Non-Null Value
ROW 4993: has 27 Null-Value and 1 Non-Null Value
ROW 4994: has 25 Null-Value and 3 Non-Null Value
ROW 4995: has 27 Null-Value and 1 Non-Null Value
ROW 4996: has 25 Null-Value and 3 Non-Null Value
ROW 4997: has 28 Null-Value and 0 Non-Null Value
ROW 4998: has 28 Null-Value and 0 Non-Null Value
ROW 4999: has 24 Null-Value and 4 Non-Null Value
ROW 5000: has 27 Null-Value and 1 Non-Null Value
ROW 5001: has 27 Null-Value and 1 Non-Null Value
ROW 5002: has 25 Null-Value and 3 Non-Null Value
ROW 5003: has 26 Null-Value and 2 Non-Null Value
ROW 5004: has 27 Null-Value and 1 Non-Null Value
ROW 5005: has 26 Null-Value and 2 Non-Null Value
ROW 5006: has 25 Null-Value and 3 Non-Null Value
ROW 5007: has 26 Null-Value and 2 Non-Null Value
ROW 5008: has 28 Null-Value and 0 Non-Null Value
ROW 5009: has 26 Null-Value and 2 Non-Null Value
ROW 5010: has 25 Null-Value and 3 Non-Null Value
ROW 5011: has 28 Null-Value and 0 Non-Null Value
ROW 5012: has 28 Null-Value and 0 Non-Null Value
ROW 5013: has 26 Null-Value and 2 Non-Null Value
ROW 5014: has 26 Null-Value and 2 Non-Null Value
ROW 5015: has 28 Null-Value and 0 Non-Null Value
ROW 5016: has 23 Null-Value and 5 Non-Null Value
ROW 5017: has 26 Null-Value and 2 Non-Null Value
ROW 5018: has 26 Null-Value and 2 Non-Null Value
ROW 5019: has 26 Null-Value and 2 Non-Null Value
ROW 5020: has 23 Null-Value and 5 Non-Null Value
ROW 5021: has 27 Null-Value and 1 Non-Null Value
ROW 5022: has 24 Null-Value and 4 Non-Null Value
ROW 5023: has 26 Null-Value and 2 Non-Null Value
ROW 5024: has 27 Null-Value and 1 Non-Null Value
ROW 5025: has 28 Null-Value and 0 Non-Null Value
ROW 5026: has 28 Null-Value and 0 Non-Null Value
ROW 5027: has 28 Null-Value and 0 Non-Null Value
ROW 5028: has 25 Null-Value and 3 Non-Null Value
ROW 5029: has 27 Null-Value and 1 Non-Null Value
ROW 5030: has 23 Null-Value and 5 Non-Null Value
ROW 5031: has 25 Null-Value and 3 Non-Null Value
ROW 5032: has 24 Null-Value and 4 Non-Null Value
ROW 5033: has 28 Null-Value and 0 Non-Null Value
ROW 5034: has 27 Null-Value and 1 Non-Null Value
ROW 5035: has 28 Null-Value and 0 Non-Null Value
ROW 5036: has 25 Null-Value and 3 Non-Null Value
ROW 5037: has 27 Null-Value and 1 Non-Null Value
ROW 5038: has 24 Null-Value and 4 Non-Null Value
ROW 5039: has 23 Null-Value and 5 Non-Null Value
ROW 5040: has 24 Null-Value and 4 Non-Null Value
ROW 5041: has 26 Null-Value and 2 Non-Null Value
ROW 5042: has 28 Null-Value and 0 Non-Null Value
In [22]:
# Write your code for row-wise null percentages here
movies.isnull()
A=movies.notnull().astype('int')
D=A.shape[1]
C=A.sum(axis=1)
for i in range(A.shape[0]):
    E=int(C[i]/D*100)
    F=D-C[i]
    F=int(F/D*100)
    
    print('ROW {}: has {} Null_Percentage and {} Not_Null percentage'.format(i,F,E))
ROW 0: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4: has 50 Null_Percentage and 50 Not_Null percentage
ROW 5: has 0 Null_Percentage and 100 Not_Null percentage
ROW 6: has 0 Null_Percentage and 100 Not_Null percentage
ROW 7: has 0 Null_Percentage and 100 Not_Null percentage
ROW 8: has 0 Null_Percentage and 100 Not_Null percentage
ROW 9: has 0 Null_Percentage and 100 Not_Null percentage
ROW 10: has 0 Null_Percentage and 100 Not_Null percentage
ROW 11: has 0 Null_Percentage and 100 Not_Null percentage
ROW 12: has 0 Null_Percentage and 100 Not_Null percentage
ROW 13: has 0 Null_Percentage and 100 Not_Null percentage
ROW 14: has 0 Null_Percentage and 100 Not_Null percentage
ROW 15: has 0 Null_Percentage and 100 Not_Null percentage
ROW 16: has 0 Null_Percentage and 100 Not_Null percentage
ROW 17: has 0 Null_Percentage and 100 Not_Null percentage
ROW 18: has 0 Null_Percentage and 100 Not_Null percentage
ROW 19: has 0 Null_Percentage and 100 Not_Null percentage
ROW 20: has 0 Null_Percentage and 100 Not_Null percentage
ROW 21: has 0 Null_Percentage and 100 Not_Null percentage
ROW 22: has 0 Null_Percentage and 100 Not_Null percentage
ROW 23: has 0 Null_Percentage and 100 Not_Null percentage
ROW 24: has 0 Null_Percentage and 100 Not_Null percentage
ROW 25: has 0 Null_Percentage and 100 Not_Null percentage
ROW 26: has 0 Null_Percentage and 100 Not_Null percentage
ROW 27: has 0 Null_Percentage and 100 Not_Null percentage
ROW 28: has 0 Null_Percentage and 100 Not_Null percentage
ROW 29: has 0 Null_Percentage and 100 Not_Null percentage
ROW 30: has 0 Null_Percentage and 100 Not_Null percentage
ROW 31: has 0 Null_Percentage and 100 Not_Null percentage
ROW 32: has 0 Null_Percentage and 100 Not_Null percentage
ROW 33: has 0 Null_Percentage and 100 Not_Null percentage
ROW 34: has 0 Null_Percentage and 100 Not_Null percentage
ROW 35: has 0 Null_Percentage and 100 Not_Null percentage
ROW 36: has 0 Null_Percentage and 100 Not_Null percentage
ROW 37: has 0 Null_Percentage and 100 Not_Null percentage
ROW 38: has 0 Null_Percentage and 100 Not_Null percentage
ROW 39: has 0 Null_Percentage and 100 Not_Null percentage
ROW 40: has 0 Null_Percentage and 100 Not_Null percentage
ROW 41: has 0 Null_Percentage and 100 Not_Null percentage
ROW 42: has 0 Null_Percentage and 100 Not_Null percentage
ROW 43: has 0 Null_Percentage and 100 Not_Null percentage
ROW 44: has 0 Null_Percentage and 100 Not_Null percentage
ROW 45: has 0 Null_Percentage and 100 Not_Null percentage
ROW 46: has 0 Null_Percentage and 100 Not_Null percentage
ROW 47: has 0 Null_Percentage and 100 Not_Null percentage
ROW 48: has 0 Null_Percentage and 100 Not_Null percentage
ROW 49: has 0 Null_Percentage and 100 Not_Null percentage
ROW 50: has 0 Null_Percentage and 100 Not_Null percentage
ROW 51: has 0 Null_Percentage and 100 Not_Null percentage
ROW 52: has 0 Null_Percentage and 100 Not_Null percentage
ROW 53: has 0 Null_Percentage and 100 Not_Null percentage
ROW 54: has 0 Null_Percentage and 100 Not_Null percentage
ROW 55: has 3 Null_Percentage and 96 Not_Null percentage
ROW 56: has 0 Null_Percentage and 100 Not_Null percentage
ROW 57: has 0 Null_Percentage and 100 Not_Null percentage
ROW 58: has 0 Null_Percentage and 100 Not_Null percentage
ROW 59: has 0 Null_Percentage and 100 Not_Null percentage
ROW 60: has 0 Null_Percentage and 100 Not_Null percentage
ROW 61: has 0 Null_Percentage and 100 Not_Null percentage
ROW 62: has 0 Null_Percentage and 100 Not_Null percentage
ROW 63: has 0 Null_Percentage and 100 Not_Null percentage
ROW 64: has 0 Null_Percentage and 100 Not_Null percentage
ROW 65: has 0 Null_Percentage and 100 Not_Null percentage
ROW 66: has 0 Null_Percentage and 100 Not_Null percentage
ROW 67: has 0 Null_Percentage and 100 Not_Null percentage
ROW 68: has 0 Null_Percentage and 100 Not_Null percentage
ROW 69: has 0 Null_Percentage and 100 Not_Null percentage
ROW 70: has 0 Null_Percentage and 100 Not_Null percentage
ROW 71: has 0 Null_Percentage and 100 Not_Null percentage
ROW 72: has 0 Null_Percentage and 100 Not_Null percentage
ROW 73: has 0 Null_Percentage and 100 Not_Null percentage
ROW 74: has 0 Null_Percentage and 100 Not_Null percentage
ROW 75: has 0 Null_Percentage and 100 Not_Null percentage
ROW 76: has 0 Null_Percentage and 100 Not_Null percentage
ROW 77: has 0 Null_Percentage and 100 Not_Null percentage
ROW 78: has 0 Null_Percentage and 100 Not_Null percentage
ROW 79: has 0 Null_Percentage and 100 Not_Null percentage
ROW 80: has 0 Null_Percentage and 100 Not_Null percentage
ROW 81: has 0 Null_Percentage and 100 Not_Null percentage
ROW 82: has 0 Null_Percentage and 100 Not_Null percentage
ROW 83: has 0 Null_Percentage and 100 Not_Null percentage
ROW 84: has 10 Null_Percentage and 89 Not_Null percentage
ROW 85: has 0 Null_Percentage and 100 Not_Null percentage
ROW 86: has 0 Null_Percentage and 100 Not_Null percentage
ROW 87: has 0 Null_Percentage and 100 Not_Null percentage
ROW 88: has 0 Null_Percentage and 100 Not_Null percentage
ROW 89: has 0 Null_Percentage and 100 Not_Null percentage
ROW 90: has 0 Null_Percentage and 100 Not_Null percentage
ROW 91: has 0 Null_Percentage and 100 Not_Null percentage
ROW 92: has 0 Null_Percentage and 100 Not_Null percentage
ROW 93: has 0 Null_Percentage and 100 Not_Null percentage
ROW 94: has 0 Null_Percentage and 100 Not_Null percentage
ROW 95: has 0 Null_Percentage and 100 Not_Null percentage
ROW 96: has 0 Null_Percentage and 100 Not_Null percentage
ROW 97: has 0 Null_Percentage and 100 Not_Null percentage
ROW 98: has 10 Null_Percentage and 89 Not_Null percentage
ROW 99: has 3 Null_Percentage and 96 Not_Null percentage
ROW 100: has 0 Null_Percentage and 100 Not_Null percentage
ROW 101: has 0 Null_Percentage and 100 Not_Null percentage
ROW 102: has 0 Null_Percentage and 100 Not_Null percentage
ROW 103: has 0 Null_Percentage and 100 Not_Null percentage
ROW 104: has 0 Null_Percentage and 100 Not_Null percentage
ROW 105: has 0 Null_Percentage and 100 Not_Null percentage
ROW 106: has 0 Null_Percentage and 100 Not_Null percentage
ROW 107: has 0 Null_Percentage and 100 Not_Null percentage
ROW 108: has 0 Null_Percentage and 100 Not_Null percentage
ROW 109: has 0 Null_Percentage and 100 Not_Null percentage
ROW 110: has 0 Null_Percentage and 100 Not_Null percentage
ROW 111: has 0 Null_Percentage and 100 Not_Null percentage
ROW 112: has 0 Null_Percentage and 100 Not_Null percentage
ROW 113: has 0 Null_Percentage and 100 Not_Null percentage
ROW 114: has 0 Null_Percentage and 100 Not_Null percentage
ROW 115: has 0 Null_Percentage and 100 Not_Null percentage
ROW 116: has 0 Null_Percentage and 100 Not_Null percentage
ROW 117: has 0 Null_Percentage and 100 Not_Null percentage
ROW 118: has 0 Null_Percentage and 100 Not_Null percentage
ROW 119: has 0 Null_Percentage and 100 Not_Null percentage
ROW 120: has 0 Null_Percentage and 100 Not_Null percentage
ROW 121: has 0 Null_Percentage and 100 Not_Null percentage
ROW 122: has 0 Null_Percentage and 100 Not_Null percentage
ROW 123: has 0 Null_Percentage and 100 Not_Null percentage
ROW 124: has 0 Null_Percentage and 100 Not_Null percentage
ROW 125: has 0 Null_Percentage and 100 Not_Null percentage
ROW 126: has 0 Null_Percentage and 100 Not_Null percentage
ROW 127: has 0 Null_Percentage and 100 Not_Null percentage
ROW 128: has 0 Null_Percentage and 100 Not_Null percentage
ROW 129: has 0 Null_Percentage and 100 Not_Null percentage
ROW 130: has 0 Null_Percentage and 100 Not_Null percentage
ROW 131: has 0 Null_Percentage and 100 Not_Null percentage
ROW 132: has 0 Null_Percentage and 100 Not_Null percentage
ROW 133: has 0 Null_Percentage and 100 Not_Null percentage
ROW 134: has 0 Null_Percentage and 100 Not_Null percentage
ROW 135: has 0 Null_Percentage and 100 Not_Null percentage
ROW 136: has 0 Null_Percentage and 100 Not_Null percentage
ROW 137: has 0 Null_Percentage and 100 Not_Null percentage
ROW 138: has 0 Null_Percentage and 100 Not_Null percentage
ROW 139: has 0 Null_Percentage and 100 Not_Null percentage
ROW 140: has 0 Null_Percentage and 100 Not_Null percentage
ROW 141: has 0 Null_Percentage and 100 Not_Null percentage
ROW 142: has 0 Null_Percentage and 100 Not_Null percentage
ROW 143: has 0 Null_Percentage and 100 Not_Null percentage
ROW 144: has 0 Null_Percentage and 100 Not_Null percentage
ROW 145: has 0 Null_Percentage and 100 Not_Null percentage
ROW 146: has 0 Null_Percentage and 100 Not_Null percentage
ROW 147: has 0 Null_Percentage and 100 Not_Null percentage
ROW 148: has 0 Null_Percentage and 100 Not_Null percentage
ROW 149: has 0 Null_Percentage and 100 Not_Null percentage
ROW 150: has 0 Null_Percentage and 100 Not_Null percentage
ROW 151: has 0 Null_Percentage and 100 Not_Null percentage
ROW 152: has 0 Null_Percentage and 100 Not_Null percentage
ROW 153: has 0 Null_Percentage and 100 Not_Null percentage
ROW 154: has 0 Null_Percentage and 100 Not_Null percentage
ROW 155: has 0 Null_Percentage and 100 Not_Null percentage
ROW 156: has 0 Null_Percentage and 100 Not_Null percentage
ROW 157: has 0 Null_Percentage and 100 Not_Null percentage
ROW 158: has 0 Null_Percentage and 100 Not_Null percentage
ROW 159: has 0 Null_Percentage and 100 Not_Null percentage
ROW 160: has 0 Null_Percentage and 100 Not_Null percentage
ROW 161: has 0 Null_Percentage and 100 Not_Null percentage
ROW 162: has 0 Null_Percentage and 100 Not_Null percentage
ROW 163: has 0 Null_Percentage and 100 Not_Null percentage
ROW 164: has 0 Null_Percentage and 100 Not_Null percentage
ROW 165: has 0 Null_Percentage and 100 Not_Null percentage
ROW 166: has 0 Null_Percentage and 100 Not_Null percentage
ROW 167: has 0 Null_Percentage and 100 Not_Null percentage
ROW 168: has 0 Null_Percentage and 100 Not_Null percentage
ROW 169: has 0 Null_Percentage and 100 Not_Null percentage
ROW 170: has 0 Null_Percentage and 100 Not_Null percentage
ROW 171: has 0 Null_Percentage and 100 Not_Null percentage
ROW 172: has 0 Null_Percentage and 100 Not_Null percentage
ROW 173: has 0 Null_Percentage and 100 Not_Null percentage
ROW 174: has 0 Null_Percentage and 100 Not_Null percentage
ROW 175: has 0 Null_Percentage and 100 Not_Null percentage
ROW 176: has 0 Null_Percentage and 100 Not_Null percentage
ROW 177: has 14 Null_Percentage and 85 Not_Null percentage
ROW 178: has 0 Null_Percentage and 100 Not_Null percentage
ROW 179: has 0 Null_Percentage and 100 Not_Null percentage
ROW 180: has 0 Null_Percentage and 100 Not_Null percentage
ROW 181: has 0 Null_Percentage and 100 Not_Null percentage
ROW 182: has 0 Null_Percentage and 100 Not_Null percentage
ROW 183: has 0 Null_Percentage and 100 Not_Null percentage
ROW 184: has 0 Null_Percentage and 100 Not_Null percentage
ROW 185: has 0 Null_Percentage and 100 Not_Null percentage
ROW 186: has 0 Null_Percentage and 100 Not_Null percentage
ROW 187: has 0 Null_Percentage and 100 Not_Null percentage
ROW 188: has 0 Null_Percentage and 100 Not_Null percentage
ROW 189: has 0 Null_Percentage and 100 Not_Null percentage
ROW 190: has 0 Null_Percentage and 100 Not_Null percentage
ROW 191: has 0 Null_Percentage and 100 Not_Null percentage
ROW 192: has 0 Null_Percentage and 100 Not_Null percentage
ROW 193: has 0 Null_Percentage and 100 Not_Null percentage
ROW 194: has 0 Null_Percentage and 100 Not_Null percentage
ROW 195: has 0 Null_Percentage and 100 Not_Null percentage
ROW 196: has 0 Null_Percentage and 100 Not_Null percentage
ROW 197: has 0 Null_Percentage and 100 Not_Null percentage
ROW 198: has 0 Null_Percentage and 100 Not_Null percentage
ROW 199: has 21 Null_Percentage and 78 Not_Null percentage
ROW 200: has 0 Null_Percentage and 100 Not_Null percentage
ROW 201: has 0 Null_Percentage and 100 Not_Null percentage
ROW 202: has 0 Null_Percentage and 100 Not_Null percentage
ROW 203: has 0 Null_Percentage and 100 Not_Null percentage
ROW 204: has 10 Null_Percentage and 89 Not_Null percentage
ROW 205: has 0 Null_Percentage and 100 Not_Null percentage
ROW 206: has 21 Null_Percentage and 78 Not_Null percentage
ROW 207: has 0 Null_Percentage and 100 Not_Null percentage
ROW 208: has 0 Null_Percentage and 100 Not_Null percentage
ROW 209: has 0 Null_Percentage and 100 Not_Null percentage
ROW 210: has 0 Null_Percentage and 100 Not_Null percentage
ROW 211: has 0 Null_Percentage and 100 Not_Null percentage
ROW 212: has 0 Null_Percentage and 100 Not_Null percentage
ROW 213: has 0 Null_Percentage and 100 Not_Null percentage
ROW 214: has 0 Null_Percentage and 100 Not_Null percentage
ROW 215: has 0 Null_Percentage and 100 Not_Null percentage
ROW 216: has 0 Null_Percentage and 100 Not_Null percentage
ROW 217: has 0 Null_Percentage and 100 Not_Null percentage
ROW 218: has 0 Null_Percentage and 100 Not_Null percentage
ROW 219: has 0 Null_Percentage and 100 Not_Null percentage
ROW 220: has 0 Null_Percentage and 100 Not_Null percentage
ROW 221: has 0 Null_Percentage and 100 Not_Null percentage
ROW 222: has 0 Null_Percentage and 100 Not_Null percentage
ROW 223: has 0 Null_Percentage and 100 Not_Null percentage
ROW 224: has 0 Null_Percentage and 100 Not_Null percentage
ROW 225: has 0 Null_Percentage and 100 Not_Null percentage
ROW 226: has 0 Null_Percentage and 100 Not_Null percentage
ROW 227: has 0 Null_Percentage and 100 Not_Null percentage
ROW 228: has 0 Null_Percentage and 100 Not_Null percentage
ROW 229: has 0 Null_Percentage and 100 Not_Null percentage
ROW 230: has 0 Null_Percentage and 100 Not_Null percentage
ROW 231: has 0 Null_Percentage and 100 Not_Null percentage
ROW 232: has 0 Null_Percentage and 100 Not_Null percentage
ROW 233: has 0 Null_Percentage and 100 Not_Null percentage
ROW 234: has 0 Null_Percentage and 100 Not_Null percentage
ROW 235: has 0 Null_Percentage and 100 Not_Null percentage
ROW 236: has 0 Null_Percentage and 100 Not_Null percentage
ROW 237: has 0 Null_Percentage and 100 Not_Null percentage
ROW 238: has 0 Null_Percentage and 100 Not_Null percentage
ROW 239: has 0 Null_Percentage and 100 Not_Null percentage
ROW 240: has 0 Null_Percentage and 100 Not_Null percentage
ROW 241: has 0 Null_Percentage and 100 Not_Null percentage
ROW 242: has 7 Null_Percentage and 92 Not_Null percentage
ROW 243: has 0 Null_Percentage and 100 Not_Null percentage
ROW 244: has 0 Null_Percentage and 100 Not_Null percentage
ROW 245: has 0 Null_Percentage and 100 Not_Null percentage
ROW 246: has 0 Null_Percentage and 100 Not_Null percentage
ROW 247: has 0 Null_Percentage and 100 Not_Null percentage
ROW 248: has 3 Null_Percentage and 96 Not_Null percentage
ROW 249: has 0 Null_Percentage and 100 Not_Null percentage
ROW 250: has 0 Null_Percentage and 100 Not_Null percentage
ROW 251: has 0 Null_Percentage and 100 Not_Null percentage
ROW 252: has 0 Null_Percentage and 100 Not_Null percentage
ROW 253: has 0 Null_Percentage and 100 Not_Null percentage
ROW 254: has 0 Null_Percentage and 100 Not_Null percentage
ROW 255: has 0 Null_Percentage and 100 Not_Null percentage
ROW 256: has 0 Null_Percentage and 100 Not_Null percentage
ROW 257: has 0 Null_Percentage and 100 Not_Null percentage
ROW 258: has 0 Null_Percentage and 100 Not_Null percentage
ROW 259: has 0 Null_Percentage and 100 Not_Null percentage
ROW 260: has 17 Null_Percentage and 82 Not_Null percentage
ROW 261: has 0 Null_Percentage and 100 Not_Null percentage
ROW 262: has 0 Null_Percentage and 100 Not_Null percentage
ROW 263: has 0 Null_Percentage and 100 Not_Null percentage
ROW 264: has 0 Null_Percentage and 100 Not_Null percentage
ROW 265: has 0 Null_Percentage and 100 Not_Null percentage
ROW 266: has 0 Null_Percentage and 100 Not_Null percentage
ROW 267: has 0 Null_Percentage and 100 Not_Null percentage
ROW 268: has 0 Null_Percentage and 100 Not_Null percentage
ROW 269: has 0 Null_Percentage and 100 Not_Null percentage
ROW 270: has 0 Null_Percentage and 100 Not_Null percentage
ROW 271: has 0 Null_Percentage and 100 Not_Null percentage
ROW 272: has 0 Null_Percentage and 100 Not_Null percentage
ROW 273: has 0 Null_Percentage and 100 Not_Null percentage
ROW 274: has 0 Null_Percentage and 100 Not_Null percentage
ROW 275: has 0 Null_Percentage and 100 Not_Null percentage
ROW 276: has 0 Null_Percentage and 100 Not_Null percentage
ROW 277: has 0 Null_Percentage and 100 Not_Null percentage
ROW 278: has 0 Null_Percentage and 100 Not_Null percentage
ROW 279: has 53 Null_Percentage and 46 Not_Null percentage
ROW 280: has 0 Null_Percentage and 100 Not_Null percentage
ROW 281: has 0 Null_Percentage and 100 Not_Null percentage
ROW 282: has 0 Null_Percentage and 100 Not_Null percentage
ROW 283: has 0 Null_Percentage and 100 Not_Null percentage
ROW 284: has 0 Null_Percentage and 100 Not_Null percentage
ROW 285: has 0 Null_Percentage and 100 Not_Null percentage
ROW 286: has 0 Null_Percentage and 100 Not_Null percentage
ROW 287: has 0 Null_Percentage and 100 Not_Null percentage
ROW 288: has 0 Null_Percentage and 100 Not_Null percentage
ROW 289: has 0 Null_Percentage and 100 Not_Null percentage
ROW 290: has 0 Null_Percentage and 100 Not_Null percentage
ROW 291: has 0 Null_Percentage and 100 Not_Null percentage
ROW 292: has 0 Null_Percentage and 100 Not_Null percentage
ROW 293: has 0 Null_Percentage and 100 Not_Null percentage
ROW 294: has 0 Null_Percentage and 100 Not_Null percentage
ROW 295: has 0 Null_Percentage and 100 Not_Null percentage
ROW 296: has 0 Null_Percentage and 100 Not_Null percentage
ROW 297: has 0 Null_Percentage and 100 Not_Null percentage
ROW 298: has 0 Null_Percentage and 100 Not_Null percentage
ROW 299: has 0 Null_Percentage and 100 Not_Null percentage
ROW 300: has 0 Null_Percentage and 100 Not_Null percentage
ROW 301: has 0 Null_Percentage and 100 Not_Null percentage
ROW 302: has 0 Null_Percentage and 100 Not_Null percentage
ROW 303: has 0 Null_Percentage and 100 Not_Null percentage
ROW 304: has 0 Null_Percentage and 100 Not_Null percentage
ROW 305: has 0 Null_Percentage and 100 Not_Null percentage
ROW 306: has 0 Null_Percentage and 100 Not_Null percentage
ROW 307: has 0 Null_Percentage and 100 Not_Null percentage
ROW 308: has 0 Null_Percentage and 100 Not_Null percentage
ROW 309: has 0 Null_Percentage and 100 Not_Null percentage
ROW 310: has 0 Null_Percentage and 100 Not_Null percentage
ROW 311: has 0 Null_Percentage and 100 Not_Null percentage
ROW 312: has 0 Null_Percentage and 100 Not_Null percentage
ROW 313: has 0 Null_Percentage and 100 Not_Null percentage
ROW 314: has 0 Null_Percentage and 100 Not_Null percentage
ROW 315: has 0 Null_Percentage and 100 Not_Null percentage
ROW 316: has 0 Null_Percentage and 100 Not_Null percentage
ROW 317: has 0 Null_Percentage and 100 Not_Null percentage
ROW 318: has 0 Null_Percentage and 100 Not_Null percentage
ROW 319: has 0 Null_Percentage and 100 Not_Null percentage
ROW 320: has 0 Null_Percentage and 100 Not_Null percentage
ROW 321: has 0 Null_Percentage and 100 Not_Null percentage
ROW 322: has 0 Null_Percentage and 100 Not_Null percentage
ROW 323: has 0 Null_Percentage and 100 Not_Null percentage
ROW 324: has 0 Null_Percentage and 100 Not_Null percentage
ROW 325: has 0 Null_Percentage and 100 Not_Null percentage
ROW 326: has 0 Null_Percentage and 100 Not_Null percentage
ROW 327: has 0 Null_Percentage and 100 Not_Null percentage
ROW 328: has 0 Null_Percentage and 100 Not_Null percentage
ROW 329: has 0 Null_Percentage and 100 Not_Null percentage
ROW 330: has 0 Null_Percentage and 100 Not_Null percentage
ROW 331: has 0 Null_Percentage and 100 Not_Null percentage
ROW 332: has 0 Null_Percentage and 100 Not_Null percentage
ROW 333: has 0 Null_Percentage and 100 Not_Null percentage
ROW 334: has 0 Null_Percentage and 100 Not_Null percentage
ROW 335: has 0 Null_Percentage and 100 Not_Null percentage
ROW 336: has 0 Null_Percentage and 100 Not_Null percentage
ROW 337: has 0 Null_Percentage and 100 Not_Null percentage
ROW 338: has 0 Null_Percentage and 100 Not_Null percentage
ROW 339: has 0 Null_Percentage and 100 Not_Null percentage
ROW 340: has 0 Null_Percentage and 100 Not_Null percentage
ROW 341: has 0 Null_Percentage and 100 Not_Null percentage
ROW 342: has 0 Null_Percentage and 100 Not_Null percentage
ROW 343: has 0 Null_Percentage and 100 Not_Null percentage
ROW 344: has 0 Null_Percentage and 100 Not_Null percentage
ROW 345: has 0 Null_Percentage and 100 Not_Null percentage
ROW 346: has 0 Null_Percentage and 100 Not_Null percentage
ROW 347: has 0 Null_Percentage and 100 Not_Null percentage
ROW 348: has 0 Null_Percentage and 100 Not_Null percentage
ROW 349: has 0 Null_Percentage and 100 Not_Null percentage
ROW 350: has 0 Null_Percentage and 100 Not_Null percentage
ROW 351: has 0 Null_Percentage and 100 Not_Null percentage
ROW 352: has 0 Null_Percentage and 100 Not_Null percentage
ROW 353: has 0 Null_Percentage and 100 Not_Null percentage
ROW 354: has 0 Null_Percentage and 100 Not_Null percentage
ROW 355: has 0 Null_Percentage and 100 Not_Null percentage
ROW 356: has 0 Null_Percentage and 100 Not_Null percentage
ROW 357: has 0 Null_Percentage and 100 Not_Null percentage
ROW 358: has 0 Null_Percentage and 100 Not_Null percentage
ROW 359: has 0 Null_Percentage and 100 Not_Null percentage
ROW 360: has 0 Null_Percentage and 100 Not_Null percentage
ROW 361: has 0 Null_Percentage and 100 Not_Null percentage
ROW 362: has 0 Null_Percentage and 100 Not_Null percentage
ROW 363: has 0 Null_Percentage and 100 Not_Null percentage
ROW 364: has 0 Null_Percentage and 100 Not_Null percentage
ROW 365: has 0 Null_Percentage and 100 Not_Null percentage
ROW 366: has 0 Null_Percentage and 100 Not_Null percentage
ROW 367: has 10 Null_Percentage and 89 Not_Null percentage
ROW 368: has 0 Null_Percentage and 100 Not_Null percentage
ROW 369: has 0 Null_Percentage and 100 Not_Null percentage
ROW 370: has 0 Null_Percentage and 100 Not_Null percentage
ROW 371: has 0 Null_Percentage and 100 Not_Null percentage
ROW 372: has 0 Null_Percentage and 100 Not_Null percentage
ROW 373: has 0 Null_Percentage and 100 Not_Null percentage
ROW 374: has 0 Null_Percentage and 100 Not_Null percentage
ROW 375: has 0 Null_Percentage and 100 Not_Null percentage
ROW 376: has 0 Null_Percentage and 100 Not_Null percentage
ROW 377: has 0 Null_Percentage and 100 Not_Null percentage
ROW 378: has 0 Null_Percentage and 100 Not_Null percentage
ROW 379: has 0 Null_Percentage and 100 Not_Null percentage
ROW 380: has 0 Null_Percentage and 100 Not_Null percentage
ROW 381: has 0 Null_Percentage and 100 Not_Null percentage
ROW 382: has 0 Null_Percentage and 100 Not_Null percentage
ROW 383: has 0 Null_Percentage and 100 Not_Null percentage
ROW 384: has 0 Null_Percentage and 100 Not_Null percentage
ROW 385: has 0 Null_Percentage and 100 Not_Null percentage
ROW 386: has 0 Null_Percentage and 100 Not_Null percentage
ROW 387: has 0 Null_Percentage and 100 Not_Null percentage
ROW 388: has 0 Null_Percentage and 100 Not_Null percentage
ROW 389: has 0 Null_Percentage and 100 Not_Null percentage
ROW 390: has 0 Null_Percentage and 100 Not_Null percentage
ROW 391: has 0 Null_Percentage and 100 Not_Null percentage
ROW 392: has 0 Null_Percentage and 100 Not_Null percentage
ROW 393: has 0 Null_Percentage and 100 Not_Null percentage
ROW 394: has 0 Null_Percentage and 100 Not_Null percentage
ROW 395: has 0 Null_Percentage and 100 Not_Null percentage
ROW 396: has 0 Null_Percentage and 100 Not_Null percentage
ROW 397: has 0 Null_Percentage and 100 Not_Null percentage
ROW 398: has 0 Null_Percentage and 100 Not_Null percentage
ROW 399: has 0 Null_Percentage and 100 Not_Null percentage
ROW 400: has 0 Null_Percentage and 100 Not_Null percentage
ROW 401: has 0 Null_Percentage and 100 Not_Null percentage
ROW 402: has 0 Null_Percentage and 100 Not_Null percentage
ROW 403: has 0 Null_Percentage and 100 Not_Null percentage
ROW 404: has 17 Null_Percentage and 82 Not_Null percentage
ROW 405: has 0 Null_Percentage and 100 Not_Null percentage
ROW 406: has 0 Null_Percentage and 100 Not_Null percentage
ROW 407: has 0 Null_Percentage and 100 Not_Null percentage
ROW 408: has 0 Null_Percentage and 100 Not_Null percentage
ROW 409: has 0 Null_Percentage and 100 Not_Null percentage
ROW 410: has 0 Null_Percentage and 100 Not_Null percentage
ROW 411: has 0 Null_Percentage and 100 Not_Null percentage
ROW 412: has 0 Null_Percentage and 100 Not_Null percentage
ROW 413: has 0 Null_Percentage and 100 Not_Null percentage
ROW 414: has 0 Null_Percentage and 100 Not_Null percentage
ROW 415: has 0 Null_Percentage and 100 Not_Null percentage
ROW 416: has 0 Null_Percentage and 100 Not_Null percentage
ROW 417: has 0 Null_Percentage and 100 Not_Null percentage
ROW 418: has 0 Null_Percentage and 100 Not_Null percentage
ROW 419: has 0 Null_Percentage and 100 Not_Null percentage
ROW 420: has 0 Null_Percentage and 100 Not_Null percentage
ROW 421: has 0 Null_Percentage and 100 Not_Null percentage
ROW 422: has 7 Null_Percentage and 92 Not_Null percentage
ROW 423: has 0 Null_Percentage and 100 Not_Null percentage
ROW 424: has 0 Null_Percentage and 100 Not_Null percentage
ROW 425: has 0 Null_Percentage and 100 Not_Null percentage
ROW 426: has 0 Null_Percentage and 100 Not_Null percentage
ROW 427: has 0 Null_Percentage and 100 Not_Null percentage
ROW 428: has 0 Null_Percentage and 100 Not_Null percentage
ROW 429: has 0 Null_Percentage and 100 Not_Null percentage
ROW 430: has 3 Null_Percentage and 96 Not_Null percentage
ROW 431: has 0 Null_Percentage and 100 Not_Null percentage
ROW 432: has 0 Null_Percentage and 100 Not_Null percentage
ROW 433: has 0 Null_Percentage and 100 Not_Null percentage
ROW 434: has 0 Null_Percentage and 100 Not_Null percentage
ROW 435: has 0 Null_Percentage and 100 Not_Null percentage
ROW 436: has 0 Null_Percentage and 100 Not_Null percentage
ROW 437: has 0 Null_Percentage and 100 Not_Null percentage
ROW 438: has 0 Null_Percentage and 100 Not_Null percentage
ROW 439: has 0 Null_Percentage and 100 Not_Null percentage
ROW 440: has 0 Null_Percentage and 100 Not_Null percentage
ROW 441: has 0 Null_Percentage and 100 Not_Null percentage
ROW 442: has 0 Null_Percentage and 100 Not_Null percentage
ROW 443: has 0 Null_Percentage and 100 Not_Null percentage
ROW 444: has 3 Null_Percentage and 96 Not_Null percentage
ROW 445: has 0 Null_Percentage and 100 Not_Null percentage
ROW 446: has 0 Null_Percentage and 100 Not_Null percentage
ROW 447: has 0 Null_Percentage and 100 Not_Null percentage
ROW 448: has 0 Null_Percentage and 100 Not_Null percentage
ROW 449: has 0 Null_Percentage and 100 Not_Null percentage
ROW 450: has 0 Null_Percentage and 100 Not_Null percentage
ROW 451: has 0 Null_Percentage and 100 Not_Null percentage
ROW 452: has 0 Null_Percentage and 100 Not_Null percentage
ROW 453: has 0 Null_Percentage and 100 Not_Null percentage
ROW 454: has 0 Null_Percentage and 100 Not_Null percentage
ROW 455: has 0 Null_Percentage and 100 Not_Null percentage
ROW 456: has 0 Null_Percentage and 100 Not_Null percentage
ROW 457: has 0 Null_Percentage and 100 Not_Null percentage
ROW 458: has 0 Null_Percentage and 100 Not_Null percentage
ROW 459: has 21 Null_Percentage and 78 Not_Null percentage
ROW 460: has 0 Null_Percentage and 100 Not_Null percentage
ROW 461: has 0 Null_Percentage and 100 Not_Null percentage
ROW 462: has 0 Null_Percentage and 100 Not_Null percentage
ROW 463: has 0 Null_Percentage and 100 Not_Null percentage
ROW 464: has 0 Null_Percentage and 100 Not_Null percentage
ROW 465: has 0 Null_Percentage and 100 Not_Null percentage
ROW 466: has 0 Null_Percentage and 100 Not_Null percentage
ROW 467: has 0 Null_Percentage and 100 Not_Null percentage
ROW 468: has 0 Null_Percentage and 100 Not_Null percentage
ROW 469: has 0 Null_Percentage and 100 Not_Null percentage
ROW 470: has 0 Null_Percentage and 100 Not_Null percentage
ROW 471: has 0 Null_Percentage and 100 Not_Null percentage
ROW 472: has 0 Null_Percentage and 100 Not_Null percentage
ROW 473: has 0 Null_Percentage and 100 Not_Null percentage
ROW 474: has 0 Null_Percentage and 100 Not_Null percentage
ROW 475: has 0 Null_Percentage and 100 Not_Null percentage
ROW 476: has 0 Null_Percentage and 100 Not_Null percentage
ROW 477: has 3 Null_Percentage and 96 Not_Null percentage
ROW 478: has 0 Null_Percentage and 100 Not_Null percentage
ROW 479: has 17 Null_Percentage and 82 Not_Null percentage
ROW 480: has 0 Null_Percentage and 100 Not_Null percentage
ROW 481: has 0 Null_Percentage and 100 Not_Null percentage
ROW 482: has 0 Null_Percentage and 100 Not_Null percentage
ROW 483: has 0 Null_Percentage and 100 Not_Null percentage
ROW 484: has 0 Null_Percentage and 100 Not_Null percentage
ROW 485: has 0 Null_Percentage and 100 Not_Null percentage
ROW 486: has 0 Null_Percentage and 100 Not_Null percentage
ROW 487: has 0 Null_Percentage and 100 Not_Null percentage
ROW 488: has 0 Null_Percentage and 100 Not_Null percentage
ROW 489: has 10 Null_Percentage and 89 Not_Null percentage
ROW 490: has 3 Null_Percentage and 96 Not_Null percentage
ROW 491: has 0 Null_Percentage and 100 Not_Null percentage
ROW 492: has 0 Null_Percentage and 100 Not_Null percentage
ROW 493: has 0 Null_Percentage and 100 Not_Null percentage
ROW 494: has 0 Null_Percentage and 100 Not_Null percentage
ROW 495: has 0 Null_Percentage and 100 Not_Null percentage
ROW 496: has 0 Null_Percentage and 100 Not_Null percentage
ROW 497: has 0 Null_Percentage and 100 Not_Null percentage
ROW 498: has 0 Null_Percentage and 100 Not_Null percentage
ROW 499: has 0 Null_Percentage and 100 Not_Null percentage
ROW 500: has 0 Null_Percentage and 100 Not_Null percentage
ROW 501: has 0 Null_Percentage and 100 Not_Null percentage
ROW 502: has 0 Null_Percentage and 100 Not_Null percentage
ROW 503: has 0 Null_Percentage and 100 Not_Null percentage
ROW 504: has 0 Null_Percentage and 100 Not_Null percentage
ROW 505: has 0 Null_Percentage and 100 Not_Null percentage
ROW 506: has 0 Null_Percentage and 100 Not_Null percentage
ROW 507: has 10 Null_Percentage and 89 Not_Null percentage
ROW 508: has 0 Null_Percentage and 100 Not_Null percentage
ROW 509: has 0 Null_Percentage and 100 Not_Null percentage
ROW 510: has 0 Null_Percentage and 100 Not_Null percentage
ROW 511: has 0 Null_Percentage and 100 Not_Null percentage
ROW 512: has 0 Null_Percentage and 100 Not_Null percentage
ROW 513: has 0 Null_Percentage and 100 Not_Null percentage
ROW 514: has 0 Null_Percentage and 100 Not_Null percentage
ROW 515: has 0 Null_Percentage and 100 Not_Null percentage
ROW 516: has 0 Null_Percentage and 100 Not_Null percentage
ROW 517: has 0 Null_Percentage and 100 Not_Null percentage
ROW 518: has 0 Null_Percentage and 100 Not_Null percentage
ROW 519: has 0 Null_Percentage and 100 Not_Null percentage
ROW 520: has 0 Null_Percentage and 100 Not_Null percentage
ROW 521: has 0 Null_Percentage and 100 Not_Null percentage
ROW 522: has 0 Null_Percentage and 100 Not_Null percentage
ROW 523: has 0 Null_Percentage and 100 Not_Null percentage
ROW 524: has 0 Null_Percentage and 100 Not_Null percentage
ROW 525: has 0 Null_Percentage and 100 Not_Null percentage
ROW 526: has 0 Null_Percentage and 100 Not_Null percentage
ROW 527: has 0 Null_Percentage and 100 Not_Null percentage
ROW 528: has 0 Null_Percentage and 100 Not_Null percentage
ROW 529: has 0 Null_Percentage and 100 Not_Null percentage
ROW 530: has 0 Null_Percentage and 100 Not_Null percentage
ROW 531: has 0 Null_Percentage and 100 Not_Null percentage
ROW 532: has 0 Null_Percentage and 100 Not_Null percentage
ROW 533: has 0 Null_Percentage and 100 Not_Null percentage
ROW 534: has 0 Null_Percentage and 100 Not_Null percentage
ROW 535: has 0 Null_Percentage and 100 Not_Null percentage
ROW 536: has 0 Null_Percentage and 100 Not_Null percentage
ROW 537: has 17 Null_Percentage and 82 Not_Null percentage
ROW 538: has 0 Null_Percentage and 100 Not_Null percentage
ROW 539: has 0 Null_Percentage and 100 Not_Null percentage
ROW 540: has 0 Null_Percentage and 100 Not_Null percentage
ROW 541: has 0 Null_Percentage and 100 Not_Null percentage
ROW 542: has 0 Null_Percentage and 100 Not_Null percentage
ROW 543: has 25 Null_Percentage and 75 Not_Null percentage
ROW 544: has 0 Null_Percentage and 100 Not_Null percentage
ROW 545: has 0 Null_Percentage and 100 Not_Null percentage
ROW 546: has 0 Null_Percentage and 100 Not_Null percentage
ROW 547: has 0 Null_Percentage and 100 Not_Null percentage
ROW 548: has 0 Null_Percentage and 100 Not_Null percentage
ROW 549: has 0 Null_Percentage and 100 Not_Null percentage
ROW 550: has 0 Null_Percentage and 100 Not_Null percentage
ROW 551: has 0 Null_Percentage and 100 Not_Null percentage
ROW 552: has 0 Null_Percentage and 100 Not_Null percentage
ROW 553: has 0 Null_Percentage and 100 Not_Null percentage
ROW 554: has 0 Null_Percentage and 100 Not_Null percentage
ROW 555: has 0 Null_Percentage and 100 Not_Null percentage
ROW 556: has 0 Null_Percentage and 100 Not_Null percentage
ROW 557: has 0 Null_Percentage and 100 Not_Null percentage
ROW 558: has 0 Null_Percentage and 100 Not_Null percentage
ROW 559: has 3 Null_Percentage and 96 Not_Null percentage
ROW 560: has 0 Null_Percentage and 100 Not_Null percentage
ROW 561: has 0 Null_Percentage and 100 Not_Null percentage
ROW 562: has 0 Null_Percentage and 100 Not_Null percentage
ROW 563: has 0 Null_Percentage and 100 Not_Null percentage
ROW 564: has 0 Null_Percentage and 100 Not_Null percentage
ROW 565: has 0 Null_Percentage and 100 Not_Null percentage
ROW 566: has 0 Null_Percentage and 100 Not_Null percentage
ROW 567: has 0 Null_Percentage and 100 Not_Null percentage
ROW 568: has 0 Null_Percentage and 100 Not_Null percentage
ROW 569: has 0 Null_Percentage and 100 Not_Null percentage
ROW 570: has 0 Null_Percentage and 100 Not_Null percentage
ROW 571: has 0 Null_Percentage and 100 Not_Null percentage
ROW 572: has 0 Null_Percentage and 100 Not_Null percentage
ROW 573: has 0 Null_Percentage and 100 Not_Null percentage
ROW 574: has 0 Null_Percentage and 100 Not_Null percentage
ROW 575: has 0 Null_Percentage and 100 Not_Null percentage
ROW 576: has 0 Null_Percentage and 100 Not_Null percentage
ROW 577: has 0 Null_Percentage and 100 Not_Null percentage
ROW 578: has 0 Null_Percentage and 100 Not_Null percentage
ROW 579: has 0 Null_Percentage and 100 Not_Null percentage
ROW 580: has 0 Null_Percentage and 100 Not_Null percentage
ROW 581: has 0 Null_Percentage and 100 Not_Null percentage
ROW 582: has 0 Null_Percentage and 100 Not_Null percentage
ROW 583: has 0 Null_Percentage and 100 Not_Null percentage
ROW 584: has 0 Null_Percentage and 100 Not_Null percentage
ROW 585: has 0 Null_Percentage and 100 Not_Null percentage
ROW 586: has 0 Null_Percentage and 100 Not_Null percentage
ROW 587: has 0 Null_Percentage and 100 Not_Null percentage
ROW 588: has 0 Null_Percentage and 100 Not_Null percentage
ROW 589: has 0 Null_Percentage and 100 Not_Null percentage
ROW 590: has 0 Null_Percentage and 100 Not_Null percentage
ROW 591: has 0 Null_Percentage and 100 Not_Null percentage
ROW 592: has 0 Null_Percentage and 100 Not_Null percentage
ROW 593: has 17 Null_Percentage and 82 Not_Null percentage
ROW 594: has 0 Null_Percentage and 100 Not_Null percentage
ROW 595: has 0 Null_Percentage and 100 Not_Null percentage
ROW 596: has 0 Null_Percentage and 100 Not_Null percentage
ROW 597: has 0 Null_Percentage and 100 Not_Null percentage
ROW 598: has 0 Null_Percentage and 100 Not_Null percentage
ROW 599: has 0 Null_Percentage and 100 Not_Null percentage
ROW 600: has 0 Null_Percentage and 100 Not_Null percentage
ROW 601: has 0 Null_Percentage and 100 Not_Null percentage
ROW 602: has 0 Null_Percentage and 100 Not_Null percentage
ROW 603: has 0 Null_Percentage and 100 Not_Null percentage
ROW 604: has 0 Null_Percentage and 100 Not_Null percentage
ROW 605: has 0 Null_Percentage and 100 Not_Null percentage
ROW 606: has 0 Null_Percentage and 100 Not_Null percentage
ROW 607: has 0 Null_Percentage and 100 Not_Null percentage
ROW 608: has 0 Null_Percentage and 100 Not_Null percentage
ROW 609: has 0 Null_Percentage and 100 Not_Null percentage
ROW 610: has 0 Null_Percentage and 100 Not_Null percentage
ROW 611: has 0 Null_Percentage and 100 Not_Null percentage
ROW 612: has 0 Null_Percentage and 100 Not_Null percentage
ROW 613: has 0 Null_Percentage and 100 Not_Null percentage
ROW 614: has 0 Null_Percentage and 100 Not_Null percentage
ROW 615: has 0 Null_Percentage and 100 Not_Null percentage
ROW 616: has 0 Null_Percentage and 100 Not_Null percentage
ROW 617: has 0 Null_Percentage and 100 Not_Null percentage
ROW 618: has 0 Null_Percentage and 100 Not_Null percentage
ROW 619: has 0 Null_Percentage and 100 Not_Null percentage
ROW 620: has 0 Null_Percentage and 100 Not_Null percentage
ROW 621: has 0 Null_Percentage and 100 Not_Null percentage
ROW 622: has 0 Null_Percentage and 100 Not_Null percentage
ROW 623: has 0 Null_Percentage and 100 Not_Null percentage
ROW 624: has 3 Null_Percentage and 96 Not_Null percentage
ROW 625: has 0 Null_Percentage and 100 Not_Null percentage
ROW 626: has 0 Null_Percentage and 100 Not_Null percentage
ROW 627: has 0 Null_Percentage and 100 Not_Null percentage
ROW 628: has 0 Null_Percentage and 100 Not_Null percentage
ROW 629: has 0 Null_Percentage and 100 Not_Null percentage
ROW 630: has 0 Null_Percentage and 100 Not_Null percentage
ROW 631: has 0 Null_Percentage and 100 Not_Null percentage
ROW 632: has 0 Null_Percentage and 100 Not_Null percentage
ROW 633: has 0 Null_Percentage and 100 Not_Null percentage
ROW 634: has 0 Null_Percentage and 100 Not_Null percentage
ROW 635: has 0 Null_Percentage and 100 Not_Null percentage
ROW 636: has 0 Null_Percentage and 100 Not_Null percentage
ROW 637: has 0 Null_Percentage and 100 Not_Null percentage
ROW 638: has 0 Null_Percentage and 100 Not_Null percentage
ROW 639: has 0 Null_Percentage and 100 Not_Null percentage
ROW 640: has 3 Null_Percentage and 96 Not_Null percentage
ROW 641: has 0 Null_Percentage and 100 Not_Null percentage
ROW 642: has 3 Null_Percentage and 96 Not_Null percentage
ROW 643: has 0 Null_Percentage and 100 Not_Null percentage
ROW 644: has 0 Null_Percentage and 100 Not_Null percentage
ROW 645: has 17 Null_Percentage and 82 Not_Null percentage
ROW 646: has 0 Null_Percentage and 100 Not_Null percentage
ROW 647: has 0 Null_Percentage and 100 Not_Null percentage
ROW 648: has 0 Null_Percentage and 100 Not_Null percentage
ROW 649: has 0 Null_Percentage and 100 Not_Null percentage
ROW 650: has 0 Null_Percentage and 100 Not_Null percentage
ROW 651: has 0 Null_Percentage and 100 Not_Null percentage
ROW 652: has 0 Null_Percentage and 100 Not_Null percentage
ROW 653: has 0 Null_Percentage and 100 Not_Null percentage
ROW 654: has 0 Null_Percentage and 100 Not_Null percentage
ROW 655: has 0 Null_Percentage and 100 Not_Null percentage
ROW 656: has 0 Null_Percentage and 100 Not_Null percentage
ROW 657: has 0 Null_Percentage and 100 Not_Null percentage
ROW 658: has 0 Null_Percentage and 100 Not_Null percentage
ROW 659: has 0 Null_Percentage and 100 Not_Null percentage
ROW 660: has 0 Null_Percentage and 100 Not_Null percentage
ROW 661: has 0 Null_Percentage and 100 Not_Null percentage
ROW 662: has 0 Null_Percentage and 100 Not_Null percentage
ROW 663: has 0 Null_Percentage and 100 Not_Null percentage
ROW 664: has 0 Null_Percentage and 100 Not_Null percentage
ROW 665: has 0 Null_Percentage and 100 Not_Null percentage
ROW 666: has 0 Null_Percentage and 100 Not_Null percentage
ROW 667: has 0 Null_Percentage and 100 Not_Null percentage
ROW 668: has 0 Null_Percentage and 100 Not_Null percentage
ROW 669: has 0 Null_Percentage and 100 Not_Null percentage
ROW 670: has 0 Null_Percentage and 100 Not_Null percentage
ROW 671: has 0 Null_Percentage and 100 Not_Null percentage
ROW 672: has 0 Null_Percentage and 100 Not_Null percentage
ROW 673: has 0 Null_Percentage and 100 Not_Null percentage
ROW 674: has 0 Null_Percentage and 100 Not_Null percentage
ROW 675: has 0 Null_Percentage and 100 Not_Null percentage
ROW 676: has 3 Null_Percentage and 96 Not_Null percentage
ROW 677: has 0 Null_Percentage and 100 Not_Null percentage
ROW 678: has 0 Null_Percentage and 100 Not_Null percentage
ROW 679: has 0 Null_Percentage and 100 Not_Null percentage
ROW 680: has 0 Null_Percentage and 100 Not_Null percentage
ROW 681: has 0 Null_Percentage and 100 Not_Null percentage
ROW 682: has 0 Null_Percentage and 100 Not_Null percentage
ROW 683: has 0 Null_Percentage and 100 Not_Null percentage
ROW 684: has 0 Null_Percentage and 100 Not_Null percentage
ROW 685: has 25 Null_Percentage and 75 Not_Null percentage
ROW 686: has 0 Null_Percentage and 100 Not_Null percentage
ROW 687: has 0 Null_Percentage and 100 Not_Null percentage
ROW 688: has 0 Null_Percentage and 100 Not_Null percentage
ROW 689: has 0 Null_Percentage and 100 Not_Null percentage
ROW 690: has 0 Null_Percentage and 100 Not_Null percentage
ROW 691: has 0 Null_Percentage and 100 Not_Null percentage
ROW 692: has 0 Null_Percentage and 100 Not_Null percentage
ROW 693: has 0 Null_Percentage and 100 Not_Null percentage
ROW 694: has 0 Null_Percentage and 100 Not_Null percentage
ROW 695: has 0 Null_Percentage and 100 Not_Null percentage
ROW 696: has 0 Null_Percentage and 100 Not_Null percentage
ROW 697: has 0 Null_Percentage and 100 Not_Null percentage
ROW 698: has 0 Null_Percentage and 100 Not_Null percentage
ROW 699: has 0 Null_Percentage and 100 Not_Null percentage
ROW 700: has 0 Null_Percentage and 100 Not_Null percentage
ROW 701: has 0 Null_Percentage and 100 Not_Null percentage
ROW 702: has 0 Null_Percentage and 100 Not_Null percentage
ROW 703: has 0 Null_Percentage and 100 Not_Null percentage
ROW 704: has 0 Null_Percentage and 100 Not_Null percentage
ROW 705: has 0 Null_Percentage and 100 Not_Null percentage
ROW 706: has 0 Null_Percentage and 100 Not_Null percentage
ROW 707: has 0 Null_Percentage and 100 Not_Null percentage
ROW 708: has 0 Null_Percentage and 100 Not_Null percentage
ROW 709: has 0 Null_Percentage and 100 Not_Null percentage
ROW 710: has 0 Null_Percentage and 100 Not_Null percentage
ROW 711: has 0 Null_Percentage and 100 Not_Null percentage
ROW 712: has 0 Null_Percentage and 100 Not_Null percentage
ROW 713: has 3 Null_Percentage and 96 Not_Null percentage
ROW 714: has 0 Null_Percentage and 100 Not_Null percentage
ROW 715: has 0 Null_Percentage and 100 Not_Null percentage
ROW 716: has 0 Null_Percentage and 100 Not_Null percentage
ROW 717: has 0 Null_Percentage and 100 Not_Null percentage
ROW 718: has 0 Null_Percentage and 100 Not_Null percentage
ROW 719: has 0 Null_Percentage and 100 Not_Null percentage
ROW 720: has 0 Null_Percentage and 100 Not_Null percentage
ROW 721: has 0 Null_Percentage and 100 Not_Null percentage
ROW 722: has 0 Null_Percentage and 100 Not_Null percentage
ROW 723: has 0 Null_Percentage and 100 Not_Null percentage
ROW 724: has 0 Null_Percentage and 100 Not_Null percentage
ROW 725: has 0 Null_Percentage and 100 Not_Null percentage
ROW 726: has 0 Null_Percentage and 100 Not_Null percentage
ROW 727: has 0 Null_Percentage and 100 Not_Null percentage
ROW 728: has 0 Null_Percentage and 100 Not_Null percentage
ROW 729: has 0 Null_Percentage and 100 Not_Null percentage
ROW 730: has 0 Null_Percentage and 100 Not_Null percentage
ROW 731: has 0 Null_Percentage and 100 Not_Null percentage
ROW 732: has 0 Null_Percentage and 100 Not_Null percentage
ROW 733: has 0 Null_Percentage and 100 Not_Null percentage
ROW 734: has 0 Null_Percentage and 100 Not_Null percentage
ROW 735: has 0 Null_Percentage and 100 Not_Null percentage
ROW 736: has 0 Null_Percentage and 100 Not_Null percentage
ROW 737: has 0 Null_Percentage and 100 Not_Null percentage
ROW 738: has 0 Null_Percentage and 100 Not_Null percentage
ROW 739: has 0 Null_Percentage and 100 Not_Null percentage
ROW 740: has 0 Null_Percentage and 100 Not_Null percentage
ROW 741: has 0 Null_Percentage and 100 Not_Null percentage
ROW 742: has 0 Null_Percentage and 100 Not_Null percentage
ROW 743: has 0 Null_Percentage and 100 Not_Null percentage
ROW 744: has 0 Null_Percentage and 100 Not_Null percentage
ROW 745: has 0 Null_Percentage and 100 Not_Null percentage
ROW 746: has 0 Null_Percentage and 100 Not_Null percentage
ROW 747: has 0 Null_Percentage and 100 Not_Null percentage
ROW 748: has 0 Null_Percentage and 100 Not_Null percentage
ROW 749: has 0 Null_Percentage and 100 Not_Null percentage
ROW 750: has 0 Null_Percentage and 100 Not_Null percentage
ROW 751: has 0 Null_Percentage and 100 Not_Null percentage
ROW 752: has 0 Null_Percentage and 100 Not_Null percentage
ROW 753: has 0 Null_Percentage and 100 Not_Null percentage
ROW 754: has 0 Null_Percentage and 100 Not_Null percentage
ROW 755: has 0 Null_Percentage and 100 Not_Null percentage
ROW 756: has 0 Null_Percentage and 100 Not_Null percentage
ROW 757: has 17 Null_Percentage and 82 Not_Null percentage
ROW 758: has 0 Null_Percentage and 100 Not_Null percentage
ROW 759: has 0 Null_Percentage and 100 Not_Null percentage
ROW 760: has 0 Null_Percentage and 100 Not_Null percentage
ROW 761: has 0 Null_Percentage and 100 Not_Null percentage
ROW 762: has 0 Null_Percentage and 100 Not_Null percentage
ROW 763: has 0 Null_Percentage and 100 Not_Null percentage
ROW 764: has 0 Null_Percentage and 100 Not_Null percentage
ROW 765: has 0 Null_Percentage and 100 Not_Null percentage
ROW 766: has 0 Null_Percentage and 100 Not_Null percentage
ROW 767: has 0 Null_Percentage and 100 Not_Null percentage
ROW 768: has 0 Null_Percentage and 100 Not_Null percentage
ROW 769: has 0 Null_Percentage and 100 Not_Null percentage
ROW 770: has 0 Null_Percentage and 100 Not_Null percentage
ROW 771: has 0 Null_Percentage and 100 Not_Null percentage
ROW 772: has 0 Null_Percentage and 100 Not_Null percentage
ROW 773: has 3 Null_Percentage and 96 Not_Null percentage
ROW 774: has 0 Null_Percentage and 100 Not_Null percentage
ROW 775: has 0 Null_Percentage and 100 Not_Null percentage
ROW 776: has 0 Null_Percentage and 100 Not_Null percentage
ROW 777: has 0 Null_Percentage and 100 Not_Null percentage
ROW 778: has 0 Null_Percentage and 100 Not_Null percentage
ROW 779: has 0 Null_Percentage and 100 Not_Null percentage
ROW 780: has 3 Null_Percentage and 96 Not_Null percentage
ROW 781: has 0 Null_Percentage and 100 Not_Null percentage
ROW 782: has 0 Null_Percentage and 100 Not_Null percentage
ROW 783: has 0 Null_Percentage and 100 Not_Null percentage
ROW 784: has 0 Null_Percentage and 100 Not_Null percentage
ROW 785: has 0 Null_Percentage and 100 Not_Null percentage
ROW 786: has 0 Null_Percentage and 100 Not_Null percentage
ROW 787: has 0 Null_Percentage and 100 Not_Null percentage
ROW 788: has 0 Null_Percentage and 100 Not_Null percentage
ROW 789: has 3 Null_Percentage and 96 Not_Null percentage
ROW 790: has 0 Null_Percentage and 100 Not_Null percentage
ROW 791: has 0 Null_Percentage and 100 Not_Null percentage
ROW 792: has 0 Null_Percentage and 100 Not_Null percentage
ROW 793: has 0 Null_Percentage and 100 Not_Null percentage
ROW 794: has 0 Null_Percentage and 100 Not_Null percentage
ROW 795: has 0 Null_Percentage and 100 Not_Null percentage
ROW 796: has 0 Null_Percentage and 100 Not_Null percentage
ROW 797: has 0 Null_Percentage and 100 Not_Null percentage
ROW 798: has 0 Null_Percentage and 100 Not_Null percentage
ROW 799: has 0 Null_Percentage and 100 Not_Null percentage
ROW 800: has 0 Null_Percentage and 100 Not_Null percentage
ROW 801: has 0 Null_Percentage and 100 Not_Null percentage
ROW 802: has 0 Null_Percentage and 100 Not_Null percentage
ROW 803: has 0 Null_Percentage and 100 Not_Null percentage
ROW 804: has 0 Null_Percentage and 100 Not_Null percentage
ROW 805: has 0 Null_Percentage and 100 Not_Null percentage
ROW 806: has 0 Null_Percentage and 100 Not_Null percentage
ROW 807: has 0 Null_Percentage and 100 Not_Null percentage
ROW 808: has 0 Null_Percentage and 100 Not_Null percentage
ROW 809: has 0 Null_Percentage and 100 Not_Null percentage
ROW 810: has 7 Null_Percentage and 92 Not_Null percentage
ROW 811: has 0 Null_Percentage and 100 Not_Null percentage
ROW 812: has 0 Null_Percentage and 100 Not_Null percentage
ROW 813: has 0 Null_Percentage and 100 Not_Null percentage
ROW 814: has 0 Null_Percentage and 100 Not_Null percentage
ROW 815: has 0 Null_Percentage and 100 Not_Null percentage
ROW 816: has 14 Null_Percentage and 85 Not_Null percentage
ROW 817: has 0 Null_Percentage and 100 Not_Null percentage
ROW 818: has 0 Null_Percentage and 100 Not_Null percentage
ROW 819: has 0 Null_Percentage and 100 Not_Null percentage
ROW 820: has 0 Null_Percentage and 100 Not_Null percentage
ROW 821: has 7 Null_Percentage and 92 Not_Null percentage
ROW 822: has 0 Null_Percentage and 100 Not_Null percentage
ROW 823: has 0 Null_Percentage and 100 Not_Null percentage
ROW 824: has 0 Null_Percentage and 100 Not_Null percentage
ROW 825: has 0 Null_Percentage and 100 Not_Null percentage
ROW 826: has 17 Null_Percentage and 82 Not_Null percentage
ROW 827: has 0 Null_Percentage and 100 Not_Null percentage
ROW 828: has 0 Null_Percentage and 100 Not_Null percentage
ROW 829: has 0 Null_Percentage and 100 Not_Null percentage
ROW 830: has 0 Null_Percentage and 100 Not_Null percentage
ROW 831: has 0 Null_Percentage and 100 Not_Null percentage
ROW 832: has 0 Null_Percentage and 100 Not_Null percentage
ROW 833: has 21 Null_Percentage and 78 Not_Null percentage
ROW 834: has 0 Null_Percentage and 100 Not_Null percentage
ROW 835: has 0 Null_Percentage and 100 Not_Null percentage
ROW 836: has 0 Null_Percentage and 100 Not_Null percentage
ROW 837: has 0 Null_Percentage and 100 Not_Null percentage
ROW 838: has 0 Null_Percentage and 100 Not_Null percentage
ROW 839: has 0 Null_Percentage and 100 Not_Null percentage
ROW 840: has 0 Null_Percentage and 100 Not_Null percentage
ROW 841: has 0 Null_Percentage and 100 Not_Null percentage
ROW 842: has 0 Null_Percentage and 100 Not_Null percentage
ROW 843: has 0 Null_Percentage and 100 Not_Null percentage
ROW 844: has 0 Null_Percentage and 100 Not_Null percentage
ROW 845: has 0 Null_Percentage and 100 Not_Null percentage
ROW 846: has 0 Null_Percentage and 100 Not_Null percentage
ROW 847: has 0 Null_Percentage and 100 Not_Null percentage
ROW 848: has 0 Null_Percentage and 100 Not_Null percentage
ROW 849: has 0 Null_Percentage and 100 Not_Null percentage
ROW 850: has 0 Null_Percentage and 100 Not_Null percentage
ROW 851: has 0 Null_Percentage and 100 Not_Null percentage
ROW 852: has 0 Null_Percentage and 100 Not_Null percentage
ROW 853: has 0 Null_Percentage and 100 Not_Null percentage
ROW 854: has 0 Null_Percentage and 100 Not_Null percentage
ROW 855: has 0 Null_Percentage and 100 Not_Null percentage
ROW 856: has 0 Null_Percentage and 100 Not_Null percentage
ROW 857: has 14 Null_Percentage and 85 Not_Null percentage
ROW 858: has 0 Null_Percentage and 100 Not_Null percentage
ROW 859: has 0 Null_Percentage and 100 Not_Null percentage
ROW 860: has 0 Null_Percentage and 100 Not_Null percentage
ROW 861: has 0 Null_Percentage and 100 Not_Null percentage
ROW 862: has 0 Null_Percentage and 100 Not_Null percentage
ROW 863: has 0 Null_Percentage and 100 Not_Null percentage
ROW 864: has 0 Null_Percentage and 100 Not_Null percentage
ROW 865: has 0 Null_Percentage and 100 Not_Null percentage
ROW 866: has 0 Null_Percentage and 100 Not_Null percentage
ROW 867: has 0 Null_Percentage and 100 Not_Null percentage
ROW 868: has 0 Null_Percentage and 100 Not_Null percentage
ROW 869: has 0 Null_Percentage and 100 Not_Null percentage
ROW 870: has 0 Null_Percentage and 100 Not_Null percentage
ROW 871: has 0 Null_Percentage and 100 Not_Null percentage
ROW 872: has 0 Null_Percentage and 100 Not_Null percentage
ROW 873: has 0 Null_Percentage and 100 Not_Null percentage
ROW 874: has 0 Null_Percentage and 100 Not_Null percentage
ROW 875: has 0 Null_Percentage and 100 Not_Null percentage
ROW 876: has 0 Null_Percentage and 100 Not_Null percentage
ROW 877: has 0 Null_Percentage and 100 Not_Null percentage
ROW 878: has 0 Null_Percentage and 100 Not_Null percentage
ROW 879: has 0 Null_Percentage and 100 Not_Null percentage
ROW 880: has 0 Null_Percentage and 100 Not_Null percentage
ROW 881: has 0 Null_Percentage and 100 Not_Null percentage
ROW 882: has 0 Null_Percentage and 100 Not_Null percentage
ROW 883: has 0 Null_Percentage and 100 Not_Null percentage
ROW 884: has 0 Null_Percentage and 100 Not_Null percentage
ROW 885: has 0 Null_Percentage and 100 Not_Null percentage
ROW 886: has 0 Null_Percentage and 100 Not_Null percentage
ROW 887: has 0 Null_Percentage and 100 Not_Null percentage
ROW 888: has 0 Null_Percentage and 100 Not_Null percentage
ROW 889: has 0 Null_Percentage and 100 Not_Null percentage
ROW 890: has 3 Null_Percentage and 96 Not_Null percentage
ROW 891: has 3 Null_Percentage and 96 Not_Null percentage
ROW 892: has 0 Null_Percentage and 100 Not_Null percentage
ROW 893: has 0 Null_Percentage and 100 Not_Null percentage
ROW 894: has 0 Null_Percentage and 100 Not_Null percentage
ROW 895: has 0 Null_Percentage and 100 Not_Null percentage
ROW 896: has 0 Null_Percentage and 100 Not_Null percentage
ROW 897: has 0 Null_Percentage and 100 Not_Null percentage
ROW 898: has 0 Null_Percentage and 100 Not_Null percentage
ROW 899: has 0 Null_Percentage and 100 Not_Null percentage
ROW 900: has 0 Null_Percentage and 100 Not_Null percentage
ROW 901: has 0 Null_Percentage and 100 Not_Null percentage
ROW 902: has 0 Null_Percentage and 100 Not_Null percentage
ROW 903: has 0 Null_Percentage and 100 Not_Null percentage
ROW 904: has 0 Null_Percentage and 100 Not_Null percentage
ROW 905: has 0 Null_Percentage and 100 Not_Null percentage
ROW 906: has 0 Null_Percentage and 100 Not_Null percentage
ROW 907: has 0 Null_Percentage and 100 Not_Null percentage
ROW 908: has 0 Null_Percentage and 100 Not_Null percentage
ROW 909: has 0 Null_Percentage and 100 Not_Null percentage
ROW 910: has 0 Null_Percentage and 100 Not_Null percentage
ROW 911: has 0 Null_Percentage and 100 Not_Null percentage
ROW 912: has 0 Null_Percentage and 100 Not_Null percentage
ROW 913: has 0 Null_Percentage and 100 Not_Null percentage
ROW 914: has 0 Null_Percentage and 100 Not_Null percentage
ROW 915: has 0 Null_Percentage and 100 Not_Null percentage
ROW 916: has 0 Null_Percentage and 100 Not_Null percentage
ROW 917: has 0 Null_Percentage and 100 Not_Null percentage
ROW 918: has 0 Null_Percentage and 100 Not_Null percentage
ROW 919: has 0 Null_Percentage and 100 Not_Null percentage
ROW 920: has 0 Null_Percentage and 100 Not_Null percentage
ROW 921: has 0 Null_Percentage and 100 Not_Null percentage
ROW 922: has 0 Null_Percentage and 100 Not_Null percentage
ROW 923: has 0 Null_Percentage and 100 Not_Null percentage
ROW 924: has 0 Null_Percentage and 100 Not_Null percentage
ROW 925: has 3 Null_Percentage and 96 Not_Null percentage
ROW 926: has 0 Null_Percentage and 100 Not_Null percentage
ROW 927: has 0 Null_Percentage and 100 Not_Null percentage
ROW 928: has 0 Null_Percentage and 100 Not_Null percentage
ROW 929: has 0 Null_Percentage and 100 Not_Null percentage
ROW 930: has 0 Null_Percentage and 100 Not_Null percentage
ROW 931: has 0 Null_Percentage and 100 Not_Null percentage
ROW 932: has 0 Null_Percentage and 100 Not_Null percentage
ROW 933: has 0 Null_Percentage and 100 Not_Null percentage
ROW 934: has 0 Null_Percentage and 100 Not_Null percentage
ROW 935: has 0 Null_Percentage and 100 Not_Null percentage
ROW 936: has 0 Null_Percentage and 100 Not_Null percentage
ROW 937: has 0 Null_Percentage and 100 Not_Null percentage
ROW 938: has 0 Null_Percentage and 100 Not_Null percentage
ROW 939: has 0 Null_Percentage and 100 Not_Null percentage
ROW 940: has 0 Null_Percentage and 100 Not_Null percentage
ROW 941: has 0 Null_Percentage and 100 Not_Null percentage
ROW 942: has 0 Null_Percentage and 100 Not_Null percentage
ROW 943: has 0 Null_Percentage and 100 Not_Null percentage
ROW 944: has 0 Null_Percentage and 100 Not_Null percentage
ROW 945: has 0 Null_Percentage and 100 Not_Null percentage
ROW 946: has 0 Null_Percentage and 100 Not_Null percentage
ROW 947: has 0 Null_Percentage and 100 Not_Null percentage
ROW 948: has 0 Null_Percentage and 100 Not_Null percentage
ROW 949: has 3 Null_Percentage and 96 Not_Null percentage
ROW 950: has 0 Null_Percentage and 100 Not_Null percentage
ROW 951: has 0 Null_Percentage and 100 Not_Null percentage
ROW 952: has 3 Null_Percentage and 96 Not_Null percentage
ROW 953: has 0 Null_Percentage and 100 Not_Null percentage
ROW 954: has 0 Null_Percentage and 100 Not_Null percentage
ROW 955: has 0 Null_Percentage and 100 Not_Null percentage
ROW 956: has 0 Null_Percentage and 100 Not_Null percentage
ROW 957: has 0 Null_Percentage and 100 Not_Null percentage
ROW 958: has 0 Null_Percentage and 100 Not_Null percentage
ROW 959: has 0 Null_Percentage and 100 Not_Null percentage
ROW 960: has 0 Null_Percentage and 100 Not_Null percentage
ROW 961: has 0 Null_Percentage and 100 Not_Null percentage
ROW 962: has 28 Null_Percentage and 71 Not_Null percentage
ROW 963: has 0 Null_Percentage and 100 Not_Null percentage
ROW 964: has 0 Null_Percentage and 100 Not_Null percentage
ROW 965: has 0 Null_Percentage and 100 Not_Null percentage
ROW 966: has 0 Null_Percentage and 100 Not_Null percentage
ROW 967: has 0 Null_Percentage and 100 Not_Null percentage
ROW 968: has 0 Null_Percentage and 100 Not_Null percentage
ROW 969: has 0 Null_Percentage and 100 Not_Null percentage
ROW 970: has 0 Null_Percentage and 100 Not_Null percentage
ROW 971: has 0 Null_Percentage and 100 Not_Null percentage
ROW 972: has 0 Null_Percentage and 100 Not_Null percentage
ROW 973: has 0 Null_Percentage and 100 Not_Null percentage
ROW 974: has 0 Null_Percentage and 100 Not_Null percentage
ROW 975: has 0 Null_Percentage and 100 Not_Null percentage
ROW 976: has 0 Null_Percentage and 100 Not_Null percentage
ROW 977: has 0 Null_Percentage and 100 Not_Null percentage
ROW 978: has 0 Null_Percentage and 100 Not_Null percentage
ROW 979: has 0 Null_Percentage and 100 Not_Null percentage
ROW 980: has 0 Null_Percentage and 100 Not_Null percentage
ROW 981: has 0 Null_Percentage and 100 Not_Null percentage
ROW 982: has 0 Null_Percentage and 100 Not_Null percentage
ROW 983: has 0 Null_Percentage and 100 Not_Null percentage
ROW 984: has 0 Null_Percentage and 100 Not_Null percentage
ROW 985: has 0 Null_Percentage and 100 Not_Null percentage
ROW 986: has 0 Null_Percentage and 100 Not_Null percentage
ROW 987: has 0 Null_Percentage and 100 Not_Null percentage
ROW 988: has 0 Null_Percentage and 100 Not_Null percentage
ROW 989: has 0 Null_Percentage and 100 Not_Null percentage
ROW 990: has 0 Null_Percentage and 100 Not_Null percentage
ROW 991: has 0 Null_Percentage and 100 Not_Null percentage
ROW 992: has 0 Null_Percentage and 100 Not_Null percentage
ROW 993: has 0 Null_Percentage and 100 Not_Null percentage
ROW 994: has 21 Null_Percentage and 78 Not_Null percentage
ROW 995: has 0 Null_Percentage and 100 Not_Null percentage
ROW 996: has 0 Null_Percentage and 100 Not_Null percentage
ROW 997: has 0 Null_Percentage and 100 Not_Null percentage
ROW 998: has 0 Null_Percentage and 100 Not_Null percentage
ROW 999: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1000: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1001: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1002: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1003: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1004: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1005: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1006: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1007: has 25 Null_Percentage and 75 Not_Null percentage
ROW 1008: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1009: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1010: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1011: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1012: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1013: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1014: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1015: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1016: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1017: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1018: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1019: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1020: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1021: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1022: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1023: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1024: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1025: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1026: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1027: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1028: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1029: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1030: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1031: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1032: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1033: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1034: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1035: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1036: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1037: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1038: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1039: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1040: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1041: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1042: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1043: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1044: has 7 Null_Percentage and 92 Not_Null percentage
ROW 1045: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1046: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1047: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1048: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1049: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1050: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1051: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1052: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1053: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1054: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1055: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1056: has 7 Null_Percentage and 92 Not_Null percentage
ROW 1057: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1058: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1059: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1060: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1061: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1062: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1063: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1064: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1065: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1066: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1067: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1068: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1069: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1070: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1071: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1072: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1073: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1074: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1075: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1076: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1077: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1078: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1079: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1080: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1081: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1082: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1083: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1084: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1085: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1086: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1087: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1088: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1089: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1090: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1091: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1092: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1093: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1094: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1095: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1096: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1097: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1098: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1099: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1100: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1101: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1102: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1103: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1104: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1105: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1106: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1107: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1108: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1109: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1110: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1111: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1112: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1113: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1114: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1115: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1116: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1117: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1118: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1119: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1120: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1121: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1122: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1123: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1124: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1125: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1126: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1127: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1128: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1129: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1130: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1131: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1132: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1133: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1134: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1135: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1136: has 7 Null_Percentage and 92 Not_Null percentage
ROW 1137: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1138: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1139: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1140: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1141: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1142: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1143: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1144: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1145: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1146: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1147: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1148: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1149: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1150: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1151: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1152: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1153: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1154: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1155: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1156: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1157: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1158: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1159: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1160: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1161: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1162: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1163: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1164: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1165: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1166: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1167: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1168: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1169: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1170: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1171: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1172: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1173: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1174: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1175: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1176: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1177: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1178: has 14 Null_Percentage and 85 Not_Null percentage
ROW 1179: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1180: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1181: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1182: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1183: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1184: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1185: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1186: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1187: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1188: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1189: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1190: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1191: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1192: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1193: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1194: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1195: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1196: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1197: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1198: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1199: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1200: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1201: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1202: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1203: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1204: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1205: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1206: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1207: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1208: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1209: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1210: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1211: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1212: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1213: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1214: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1215: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1216: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1217: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1218: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1219: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1220: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1221: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1222: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1223: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1224: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1225: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1226: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1227: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1228: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1229: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1230: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1231: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1232: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1233: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1234: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1235: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1236: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1237: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1238: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1239: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1240: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1241: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1242: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1243: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1244: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1245: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1246: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1247: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1248: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1249: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1250: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1251: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1252: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1253: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1254: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1255: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1256: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1257: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1258: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1259: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1260: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1261: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1262: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1263: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1264: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1265: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1266: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1267: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1268: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1269: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1270: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1271: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1272: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1273: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1274: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1275: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1276: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1277: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1278: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1279: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1280: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1281: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1282: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1283: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1284: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1285: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1286: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1287: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1288: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1289: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1290: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1291: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1292: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1293: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1294: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1295: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1296: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1297: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1298: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1299: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1300: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1301: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1302: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1303: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1304: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1305: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1306: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1307: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1308: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1309: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1310: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1311: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1312: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1313: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1314: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1315: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1316: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1317: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1318: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1319: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1320: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1321: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1322: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1323: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1324: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1325: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1326: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1327: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1328: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1329: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1330: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1331: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1332: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1333: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1334: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1335: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1336: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1337: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1338: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1339: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1340: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1341: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1342: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1343: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1344: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1345: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1346: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1347: has 14 Null_Percentage and 85 Not_Null percentage
ROW 1348: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1349: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1350: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1351: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1352: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1353: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1354: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1355: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1356: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1357: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1358: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1359: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1360: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1361: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1362: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1363: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1364: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1365: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1366: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1367: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1368: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1369: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1370: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1371: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1372: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1373: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1374: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1375: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1376: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1377: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1378: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1379: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1380: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1381: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1382: has 10 Null_Percentage and 89 Not_Null percentage
ROW 1383: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1384: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1385: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1386: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1387: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1388: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1389: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1390: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1391: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1392: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1393: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1394: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1395: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1396: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1397: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1398: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1399: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1400: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1401: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1402: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1403: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1404: has 21 Null_Percentage and 78 Not_Null percentage
ROW 1405: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1406: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1407: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1408: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1409: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1410: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1411: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1412: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1413: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1414: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1415: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1416: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1417: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1418: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1419: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1420: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1421: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1422: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1423: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1424: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1425: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1426: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1427: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1428: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1429: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1430: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1431: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1432: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1433: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1434: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1435: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1436: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1437: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1438: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1439: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1440: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1441: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1442: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1443: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1444: has 25 Null_Percentage and 75 Not_Null percentage
ROW 1445: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1446: has 7 Null_Percentage and 92 Not_Null percentage
ROW 1447: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1448: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1449: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1450: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1451: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1452: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1453: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1454: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1455: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1456: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1457: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1458: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1459: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1460: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1461: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1462: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1463: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1464: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1465: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1466: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1467: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1468: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1469: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1470: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1471: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1472: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1473: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1474: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1475: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1476: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1477: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1478: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1479: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1480: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1481: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1482: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1483: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1484: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1485: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1486: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1487: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1488: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1489: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1490: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1491: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1492: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1493: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1494: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1495: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1496: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1497: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1498: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1499: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1500: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1501: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1502: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1503: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1504: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1505: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1506: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1507: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1508: has 10 Null_Percentage and 89 Not_Null percentage
ROW 1509: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1510: has 21 Null_Percentage and 78 Not_Null percentage
ROW 1511: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1512: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1513: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1514: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1515: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1516: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1517: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1518: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1519: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1520: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1521: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1522: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1523: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1524: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1525: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1526: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1527: has 7 Null_Percentage and 92 Not_Null percentage
ROW 1528: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1529: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1530: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1531: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1532: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1533: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1534: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1535: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1536: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1537: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1538: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1539: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1540: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1541: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1542: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1543: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1544: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1545: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1546: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1547: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1548: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1549: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1550: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1551: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1552: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1553: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1554: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1555: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1556: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1557: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1558: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1559: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1560: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1561: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1562: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1563: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1564: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1565: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1566: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1567: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1568: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1569: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1570: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1571: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1572: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1573: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1574: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1575: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1576: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1577: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1578: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1579: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1580: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1581: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1582: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1583: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1584: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1585: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1586: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1587: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1588: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1589: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1590: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1591: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1592: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1593: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1594: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1595: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1596: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1597: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1598: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1599: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1600: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1601: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1602: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1603: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1604: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1605: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1606: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1607: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1608: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1609: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1610: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1611: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1612: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1613: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1614: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1615: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1616: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1617: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1618: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1619: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1620: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1621: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1622: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1623: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1624: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1625: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1626: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1627: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1628: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1629: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1630: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1631: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1632: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1633: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1634: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1635: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1636: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1637: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1638: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1639: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1640: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1641: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1642: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1643: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1644: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1645: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1646: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1647: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1648: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1649: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1650: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1651: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1652: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1653: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1654: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1655: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1656: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1657: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1658: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1659: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1660: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1661: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1662: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1663: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1664: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1665: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1666: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1667: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1668: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1669: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1670: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1671: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1672: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1673: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1674: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1675: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1676: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1677: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1678: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1679: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1680: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1681: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1682: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1683: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1684: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1685: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1686: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1687: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1688: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1689: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1690: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1691: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1692: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1693: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1694: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1695: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1696: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1697: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1698: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1699: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1700: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1701: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1702: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1703: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1704: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1705: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1706: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1707: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1708: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1709: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1710: has 21 Null_Percentage and 78 Not_Null percentage
ROW 1711: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1712: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1713: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1714: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1715: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1716: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1717: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1718: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1719: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1720: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1721: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1722: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1723: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1724: has 10 Null_Percentage and 89 Not_Null percentage
ROW 1725: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1726: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1727: has 7 Null_Percentage and 92 Not_Null percentage
ROW 1728: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1729: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1730: has 7 Null_Percentage and 92 Not_Null percentage
ROW 1731: has 10 Null_Percentage and 89 Not_Null percentage
ROW 1732: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1733: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1734: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1735: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1736: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1737: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1738: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1739: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1740: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1741: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1742: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1743: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1744: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1745: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1746: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1747: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1748: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1749: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1750: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1751: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1752: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1753: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1754: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1755: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1756: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1757: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1758: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1759: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1760: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1761: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1762: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1763: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1764: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1765: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1766: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1767: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1768: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1769: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1770: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1771: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1772: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1773: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1774: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1775: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1776: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1777: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1778: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1779: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1780: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1781: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1782: has 7 Null_Percentage and 92 Not_Null percentage
ROW 1783: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1784: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1785: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1786: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1787: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1788: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1789: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1790: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1791: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1792: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1793: has 7 Null_Percentage and 92 Not_Null percentage
ROW 1794: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1795: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1796: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1797: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1798: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1799: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1800: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1801: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1802: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1803: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1804: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1805: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1806: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1807: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1808: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1809: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1810: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1811: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1812: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1813: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1814: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1815: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1816: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1817: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1818: has 21 Null_Percentage and 78 Not_Null percentage
ROW 1819: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1820: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1821: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1822: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1823: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1824: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1825: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1826: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1827: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1828: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1829: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1830: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1831: has 7 Null_Percentage and 92 Not_Null percentage
ROW 1832: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1833: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1834: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1835: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1836: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1837: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1838: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1839: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1840: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1841: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1842: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1843: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1844: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1845: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1846: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1847: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1848: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1849: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1850: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1851: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1852: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1853: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1854: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1855: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1856: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1857: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1858: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1859: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1860: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1861: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1862: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1863: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1864: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1865: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1866: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1867: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1868: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1869: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1870: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1871: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1872: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1873: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1874: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1875: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1876: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1877: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1878: has 7 Null_Percentage and 92 Not_Null percentage
ROW 1879: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1880: has 10 Null_Percentage and 89 Not_Null percentage
ROW 1881: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1882: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1883: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1884: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1885: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1886: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1887: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1888: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1889: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1890: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1891: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1892: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1893: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1894: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1895: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1896: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1897: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1898: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1899: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1900: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1901: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1902: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1903: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1904: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1905: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1906: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1907: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1908: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1909: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1910: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1911: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1912: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1913: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1914: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1915: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1916: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1917: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1918: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1919: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1920: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1921: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1922: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1923: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1924: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1925: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1926: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1927: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1928: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1929: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1930: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1931: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1932: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1933: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1934: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1935: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1936: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1937: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1938: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1939: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1940: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1941: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1942: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1943: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1944: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1945: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1946: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1947: has 21 Null_Percentage and 78 Not_Null percentage
ROW 1948: has 7 Null_Percentage and 92 Not_Null percentage
ROW 1949: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1950: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1951: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1952: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1953: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1954: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1955: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1956: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1957: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1958: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1959: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1960: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1961: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1962: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1963: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1964: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1965: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1966: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1967: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1968: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1969: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1970: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1971: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1972: has 17 Null_Percentage and 82 Not_Null percentage
ROW 1973: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1974: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1975: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1976: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1977: has 7 Null_Percentage and 92 Not_Null percentage
ROW 1978: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1979: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1980: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1981: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1982: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1983: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1984: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1985: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1986: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1987: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1988: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1989: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1990: has 3 Null_Percentage and 96 Not_Null percentage
ROW 1991: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1992: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1993: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1994: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1995: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1996: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1997: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1998: has 0 Null_Percentage and 100 Not_Null percentage
ROW 1999: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2000: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2001: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2002: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2003: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2004: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2005: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2006: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2007: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2008: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2009: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2010: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2011: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2012: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2013: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2014: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2015: has 10 Null_Percentage and 89 Not_Null percentage
ROW 2016: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2017: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2018: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2019: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2020: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2021: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2022: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2023: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2024: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2025: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2026: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2027: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2028: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2029: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2030: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2031: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2032: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2033: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2034: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2035: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2036: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2037: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2038: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2039: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2040: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2041: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2042: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2043: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2044: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2045: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2046: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2047: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2048: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2049: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2050: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2051: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2052: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2053: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2054: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2055: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2056: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2057: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2058: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2059: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2060: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2061: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2062: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2063: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2064: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2065: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2066: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2067: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2068: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2069: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2070: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2071: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2072: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2073: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2074: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2075: has 25 Null_Percentage and 75 Not_Null percentage
ROW 2076: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2077: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2078: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2079: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2080: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2081: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2082: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2083: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2084: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2085: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2086: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2087: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2088: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2089: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2090: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2091: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2092: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2093: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2094: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2095: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2096: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2097: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2098: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2099: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2100: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2101: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2102: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2103: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2104: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2105: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2106: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2107: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2108: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2109: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2110: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2111: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2112: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2113: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2114: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2115: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2116: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2117: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2118: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2119: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2120: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2121: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2122: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2123: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2124: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2125: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2126: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2127: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2128: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2129: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2130: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2131: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2132: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2133: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2134: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2135: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2136: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2137: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2138: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2139: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2140: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2141: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2142: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2143: has 35 Null_Percentage and 64 Not_Null percentage
ROW 2144: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2145: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2146: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2147: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2148: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2149: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2150: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2151: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2152: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2153: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2154: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2155: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2156: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2157: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2158: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2159: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2160: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2161: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2162: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2163: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2164: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2165: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2166: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2167: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2168: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2169: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2170: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2171: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2172: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2173: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2174: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2175: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2176: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2177: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2178: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2179: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2180: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2181: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2182: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2183: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2184: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2185: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2186: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2187: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2188: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2189: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2190: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2191: has 21 Null_Percentage and 78 Not_Null percentage
ROW 2192: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2193: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2194: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2195: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2196: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2197: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2198: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2199: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2200: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2201: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2202: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2203: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2204: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2205: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2206: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2207: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2208: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2209: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2210: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2211: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2212: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2213: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2214: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2215: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2216: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2217: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2218: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2219: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2220: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2221: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2222: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2223: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2224: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2225: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2226: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2227: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2228: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2229: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2230: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2231: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2232: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2233: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2234: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2235: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2236: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2237: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2238: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2239: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2240: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2241: has 39 Null_Percentage and 60 Not_Null percentage
ROW 2242: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2243: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2244: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2245: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2246: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2247: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2248: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2249: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2250: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2251: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2252: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2253: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2254: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2255: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2256: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2257: has 25 Null_Percentage and 75 Not_Null percentage
ROW 2258: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2259: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2260: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2261: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2262: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2263: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2264: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2265: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2266: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2267: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2268: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2269: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2270: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2271: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2272: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2273: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2274: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2275: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2276: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2277: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2278: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2279: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2280: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2281: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2282: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2283: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2284: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2285: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2286: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2287: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2288: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2289: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2290: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2291: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2292: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2293: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2294: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2295: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2296: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2297: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2298: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2299: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2300: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2301: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2302: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2303: has 21 Null_Percentage and 78 Not_Null percentage
ROW 2304: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2305: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2306: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2307: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2308: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2309: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2310: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2311: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2312: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2313: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2314: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2315: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2316: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2317: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2318: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2319: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2320: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2321: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2322: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2323: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2324: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2325: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2326: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2327: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2328: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2329: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2330: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2331: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2332: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2333: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2334: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2335: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2336: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2337: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2338: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2339: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2340: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2341: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2342: has 35 Null_Percentage and 64 Not_Null percentage
ROW 2343: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2344: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2345: has 14 Null_Percentage and 85 Not_Null percentage
ROW 2346: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2347: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2348: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2349: has 10 Null_Percentage and 89 Not_Null percentage
ROW 2350: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2351: has 10 Null_Percentage and 89 Not_Null percentage
ROW 2352: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2353: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2354: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2355: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2356: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2357: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2358: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2359: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2360: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2361: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2362: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2363: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2364: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2365: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2366: has 14 Null_Percentage and 85 Not_Null percentage
ROW 2367: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2368: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2369: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2370: has 28 Null_Percentage and 71 Not_Null percentage
ROW 2371: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2372: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2373: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2374: has 10 Null_Percentage and 89 Not_Null percentage
ROW 2375: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2376: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2377: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2378: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2379: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2380: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2381: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2382: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2383: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2384: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2385: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2386: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2387: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2388: has 10 Null_Percentage and 89 Not_Null percentage
ROW 2389: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2390: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2391: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2392: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2393: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2394: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2395: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2396: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2397: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2398: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2399: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2400: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2401: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2402: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2403: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2404: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2405: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2406: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2407: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2408: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2409: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2410: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2411: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2412: has 17 Null_Percentage and 82 Not_Null percentage
ROW 2413: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2414: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2415: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2416: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2417: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2418: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2419: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2420: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2421: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2422: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2423: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2424: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2425: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2426: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2427: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2428: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2429: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2430: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2431: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2432: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2433: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2434: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2435: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2436: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2437: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2438: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2439: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2440: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2441: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2442: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2443: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2444: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2445: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2446: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2447: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2448: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2449: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2450: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2451: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2452: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2453: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2454: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2455: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2456: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2457: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2458: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2459: has 32 Null_Percentage and 67 Not_Null percentage
ROW 2460: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2461: has 17 Null_Percentage and 82 Not_Null percentage
ROW 2462: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2463: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2464: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2465: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2466: has 14 Null_Percentage and 85 Not_Null percentage
ROW 2467: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2468: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2469: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2470: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2471: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2472: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2473: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2474: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2475: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2476: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2477: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2478: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2479: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2480: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2481: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2482: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2483: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2484: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2485: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2486: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2487: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2488: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2489: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2490: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2491: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2492: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2493: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2494: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2495: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2496: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2497: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2498: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2499: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2500: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2501: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2502: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2503: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2504: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2505: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2506: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2507: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2508: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2509: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2510: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2511: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2512: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2513: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2514: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2515: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2516: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2517: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2518: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2519: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2520: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2521: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2522: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2523: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2524: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2525: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2526: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2527: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2528: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2529: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2530: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2531: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2532: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2533: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2534: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2535: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2536: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2537: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2538: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2539: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2540: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2541: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2542: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2543: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2544: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2545: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2546: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2547: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2548: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2549: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2550: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2551: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2552: has 25 Null_Percentage and 75 Not_Null percentage
ROW 2553: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2554: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2555: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2556: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2557: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2558: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2559: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2560: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2561: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2562: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2563: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2564: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2565: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2566: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2567: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2568: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2569: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2570: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2571: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2572: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2573: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2574: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2575: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2576: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2577: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2578: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2579: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2580: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2581: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2582: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2583: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2584: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2585: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2586: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2587: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2588: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2589: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2590: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2591: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2592: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2593: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2594: has 14 Null_Percentage and 85 Not_Null percentage
ROW 2595: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2596: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2597: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2598: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2599: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2600: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2601: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2602: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2603: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2604: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2605: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2606: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2607: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2608: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2609: has 17 Null_Percentage and 82 Not_Null percentage
ROW 2610: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2611: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2612: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2613: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2614: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2615: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2616: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2617: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2618: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2619: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2620: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2621: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2622: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2623: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2624: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2625: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2626: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2627: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2628: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2629: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2630: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2631: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2632: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2633: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2634: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2635: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2636: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2637: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2638: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2639: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2640: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2641: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2642: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2643: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2644: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2645: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2646: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2647: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2648: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2649: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2650: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2651: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2652: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2653: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2654: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2655: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2656: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2657: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2658: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2659: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2660: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2661: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2662: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2663: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2664: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2665: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2666: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2667: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2668: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2669: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2670: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2671: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2672: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2673: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2674: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2675: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2676: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2677: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2678: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2679: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2680: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2681: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2682: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2683: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2684: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2685: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2686: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2687: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2688: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2689: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2690: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2691: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2692: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2693: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2694: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2695: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2696: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2697: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2698: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2699: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2700: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2701: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2702: has 21 Null_Percentage and 78 Not_Null percentage
ROW 2703: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2704: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2705: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2706: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2707: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2708: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2709: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2710: has 10 Null_Percentage and 89 Not_Null percentage
ROW 2711: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2712: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2713: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2714: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2715: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2716: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2717: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2718: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2719: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2720: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2721: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2722: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2723: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2724: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2725: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2726: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2727: has 21 Null_Percentage and 78 Not_Null percentage
ROW 2728: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2729: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2730: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2731: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2732: has 10 Null_Percentage and 89 Not_Null percentage
ROW 2733: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2734: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2735: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2736: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2737: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2738: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2739: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2740: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2741: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2742: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2743: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2744: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2745: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2746: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2747: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2748: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2749: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2750: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2751: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2752: has 14 Null_Percentage and 85 Not_Null percentage
ROW 2753: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2754: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2755: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2756: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2757: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2758: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2759: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2760: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2761: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2762: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2763: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2764: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2765: has 25 Null_Percentage and 75 Not_Null percentage
ROW 2766: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2767: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2768: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2769: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2770: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2771: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2772: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2773: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2774: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2775: has 25 Null_Percentage and 75 Not_Null percentage
ROW 2776: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2777: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2778: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2779: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2780: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2781: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2782: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2783: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2784: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2785: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2786: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2787: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2788: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2789: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2790: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2791: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2792: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2793: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2794: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2795: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2796: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2797: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2798: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2799: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2800: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2801: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2802: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2803: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2804: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2805: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2806: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2807: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2808: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2809: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2810: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2811: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2812: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2813: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2814: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2815: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2816: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2817: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2818: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2819: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2820: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2821: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2822: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2823: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2824: has 14 Null_Percentage and 85 Not_Null percentage
ROW 2825: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2826: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2827: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2828: has 28 Null_Percentage and 71 Not_Null percentage
ROW 2829: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2830: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2831: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2832: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2833: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2834: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2835: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2836: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2837: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2838: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2839: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2840: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2841: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2842: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2843: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2844: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2845: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2846: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2847: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2848: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2849: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2850: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2851: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2852: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2853: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2854: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2855: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2856: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2857: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2858: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2859: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2860: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2861: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2862: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2863: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2864: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2865: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2866: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2867: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2868: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2869: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2870: has 28 Null_Percentage and 71 Not_Null percentage
ROW 2871: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2872: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2873: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2874: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2875: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2876: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2877: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2878: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2879: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2880: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2881: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2882: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2883: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2884: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2885: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2886: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2887: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2888: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2889: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2890: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2891: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2892: has 10 Null_Percentage and 89 Not_Null percentage
ROW 2893: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2894: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2895: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2896: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2897: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2898: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2899: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2900: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2901: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2902: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2903: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2904: has 7 Null_Percentage and 92 Not_Null percentage
ROW 2905: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2906: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2907: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2908: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2909: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2910: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2911: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2912: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2913: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2914: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2915: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2916: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2917: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2918: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2919: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2920: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2921: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2922: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2923: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2924: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2925: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2926: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2927: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2928: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2929: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2930: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2931: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2932: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2933: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2934: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2935: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2936: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2937: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2938: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2939: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2940: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2941: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2942: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2943: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2944: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2945: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2946: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2947: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2948: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2949: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2950: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2951: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2952: has 17 Null_Percentage and 82 Not_Null percentage
ROW 2953: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2954: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2955: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2956: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2957: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2958: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2959: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2960: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2961: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2962: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2963: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2964: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2965: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2966: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2967: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2968: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2969: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2970: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2971: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2972: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2973: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2974: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2975: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2976: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2977: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2978: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2979: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2980: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2981: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2982: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2983: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2984: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2985: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2986: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2987: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2988: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2989: has 3 Null_Percentage and 96 Not_Null percentage
ROW 2990: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2991: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2992: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2993: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2994: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2995: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2996: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2997: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2998: has 0 Null_Percentage and 100 Not_Null percentage
ROW 2999: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3000: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3001: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3002: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3003: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3004: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3005: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3006: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3007: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3008: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3009: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3010: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3011: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3012: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3013: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3014: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3015: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3016: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3017: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3018: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3019: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3020: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3021: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3022: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3023: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3024: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3025: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3026: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3027: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3028: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3029: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3030: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3031: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3032: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3033: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3034: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3035: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3036: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3037: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3038: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3039: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3040: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3041: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3042: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3043: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3044: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3045: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3046: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3047: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3048: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3049: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3050: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3051: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3052: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3053: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3054: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3055: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3056: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3057: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3058: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3059: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3060: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3061: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3062: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3063: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3064: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3065: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3066: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3067: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3068: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3069: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3070: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3071: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3072: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3073: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3074: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3075: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3076: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3077: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3078: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3079: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3080: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3081: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3082: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3083: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3084: has 25 Null_Percentage and 75 Not_Null percentage
ROW 3085: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3086: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3087: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3088: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3089: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3090: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3091: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3092: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3093: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3094: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3095: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3096: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3097: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3098: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3099: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3100: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3101: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3102: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3103: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3104: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3105: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3106: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3107: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3108: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3109: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3110: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3111: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3112: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3113: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3114: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3115: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3116: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3117: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3118: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3119: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3120: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3121: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3122: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3123: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3124: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3125: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3126: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3127: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3128: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3129: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3130: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3131: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3132: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3133: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3134: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3135: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3136: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3137: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3138: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3139: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3140: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3141: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3142: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3143: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3144: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3145: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3146: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3147: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3148: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3149: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3150: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3151: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3152: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3153: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3154: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3155: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3156: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3157: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3158: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3159: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3160: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3161: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3162: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3163: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3164: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3165: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3166: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3167: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3168: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3169: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3170: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3171: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3172: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3173: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3174: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3175: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3176: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3177: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3178: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3179: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3180: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3181: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3182: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3183: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3184: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3185: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3186: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3187: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3188: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3189: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3190: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3191: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3192: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3193: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3194: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3195: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3196: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3197: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3198: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3199: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3200: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3201: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3202: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3203: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3204: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3205: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3206: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3207: has 14 Null_Percentage and 85 Not_Null percentage
ROW 3208: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3209: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3210: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3211: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3212: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3213: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3214: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3215: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3216: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3217: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3218: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3219: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3220: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3221: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3222: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3223: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3224: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3225: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3226: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3227: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3228: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3229: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3230: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3231: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3232: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3233: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3234: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3235: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3236: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3237: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3238: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3239: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3240: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3241: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3242: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3243: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3244: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3245: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3246: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3247: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3248: has 14 Null_Percentage and 85 Not_Null percentage
ROW 3249: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3250: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3251: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3252: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3253: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3254: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3255: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3256: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3257: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3258: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3259: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3260: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3261: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3262: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3263: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3264: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3265: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3266: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3267: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3268: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3269: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3270: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3271: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3272: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3273: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3274: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3275: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3276: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3277: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3278: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3279: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3280: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3281: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3282: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3283: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3284: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3285: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3286: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3287: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3288: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3289: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3290: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3291: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3292: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3293: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3294: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3295: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3296: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3297: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3298: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3299: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3300: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3301: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3302: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3303: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3304: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3305: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3306: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3307: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3308: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3309: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3310: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3311: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3312: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3313: has 14 Null_Percentage and 85 Not_Null percentage
ROW 3314: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3315: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3316: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3317: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3318: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3319: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3320: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3321: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3322: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3323: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3324: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3325: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3326: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3327: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3328: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3329: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3330: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3331: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3332: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3333: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3334: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3335: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3336: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3337: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3338: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3339: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3340: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3341: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3342: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3343: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3344: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3345: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3346: has 14 Null_Percentage and 85 Not_Null percentage
ROW 3347: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3348: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3349: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3350: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3351: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3352: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3353: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3354: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3355: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3356: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3357: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3358: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3359: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3360: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3361: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3362: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3363: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3364: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3365: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3366: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3367: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3368: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3369: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3370: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3371: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3372: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3373: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3374: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3375: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3376: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3377: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3378: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3379: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3380: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3381: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3382: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3383: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3384: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3385: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3386: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3387: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3388: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3389: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3390: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3391: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3392: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3393: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3394: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3395: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3396: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3397: has 21 Null_Percentage and 78 Not_Null percentage
ROW 3398: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3399: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3400: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3401: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3402: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3403: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3404: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3405: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3406: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3407: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3408: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3409: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3410: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3411: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3412: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3413: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3414: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3415: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3416: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3417: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3418: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3419: has 25 Null_Percentage and 75 Not_Null percentage
ROW 3420: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3421: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3422: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3423: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3424: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3425: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3426: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3427: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3428: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3429: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3430: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3431: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3432: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3433: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3434: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3435: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3436: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3437: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3438: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3439: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3440: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3441: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3442: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3443: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3444: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3445: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3446: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3447: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3448: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3449: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3450: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3451: has 14 Null_Percentage and 85 Not_Null percentage
ROW 3452: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3453: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3454: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3455: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3456: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3457: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3458: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3459: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3460: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3461: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3462: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3463: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3464: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3465: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3466: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3467: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3468: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3469: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3470: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3471: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3472: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3473: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3474: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3475: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3476: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3477: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3478: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3479: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3480: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3481: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3482: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3483: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3484: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3485: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3486: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3487: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3488: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3489: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3490: has 14 Null_Percentage and 85 Not_Null percentage
ROW 3491: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3492: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3493: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3494: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3495: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3496: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3497: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3498: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3499: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3500: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3501: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3502: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3503: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3504: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3505: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3506: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3507: has 21 Null_Percentage and 78 Not_Null percentage
ROW 3508: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3509: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3510: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3511: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3512: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3513: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3514: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3515: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3516: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3517: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3518: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3519: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3520: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3521: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3522: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3523: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3524: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3525: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3526: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3527: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3528: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3529: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3530: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3531: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3532: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3533: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3534: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3535: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3536: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3537: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3538: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3539: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3540: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3541: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3542: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3543: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3544: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3545: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3546: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3547: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3548: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3549: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3550: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3551: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3552: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3553: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3554: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3555: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3556: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3557: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3558: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3559: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3560: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3561: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3562: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3563: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3564: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3565: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3566: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3567: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3568: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3569: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3570: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3571: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3572: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3573: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3574: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3575: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3576: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3577: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3578: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3579: has 21 Null_Percentage and 78 Not_Null percentage
ROW 3580: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3581: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3582: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3583: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3584: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3585: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3586: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3587: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3588: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3589: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3590: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3591: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3592: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3593: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3594: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3595: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3596: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3597: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3598: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3599: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3600: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3601: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3602: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3603: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3604: has 21 Null_Percentage and 78 Not_Null percentage
ROW 3605: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3606: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3607: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3608: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3609: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3610: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3611: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3612: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3613: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3614: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3615: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3616: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3617: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3618: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3619: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3620: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3621: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3622: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3623: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3624: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3625: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3626: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3627: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3628: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3629: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3630: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3631: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3632: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3633: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3634: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3635: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3636: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3637: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3638: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3639: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3640: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3641: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3642: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3643: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3644: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3645: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3646: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3647: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3648: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3649: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3650: has 21 Null_Percentage and 78 Not_Null percentage
ROW 3651: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3652: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3653: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3654: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3655: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3656: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3657: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3658: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3659: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3660: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3661: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3662: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3663: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3664: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3665: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3666: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3667: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3668: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3669: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3670: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3671: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3672: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3673: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3674: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3675: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3676: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3677: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3678: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3679: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3680: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3681: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3682: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3683: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3684: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3685: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3686: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3687: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3688: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3689: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3690: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3691: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3692: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3693: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3694: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3695: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3696: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3697: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3698: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3699: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3700: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3701: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3702: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3703: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3704: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3705: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3706: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3707: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3708: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3709: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3710: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3711: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3712: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3713: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3714: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3715: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3716: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3717: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3718: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3719: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3720: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3721: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3722: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3723: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3724: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3725: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3726: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3727: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3728: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3729: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3730: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3731: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3732: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3733: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3734: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3735: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3736: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3737: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3738: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3739: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3740: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3741: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3742: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3743: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3744: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3745: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3746: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3747: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3748: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3749: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3750: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3751: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3752: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3753: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3754: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3755: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3756: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3757: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3758: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3759: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3760: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3761: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3762: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3763: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3764: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3765: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3766: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3767: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3768: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3769: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3770: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3771: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3772: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3773: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3774: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3775: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3776: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3777: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3778: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3779: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3780: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3781: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3782: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3783: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3784: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3785: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3786: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3787: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3788: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3789: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3790: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3791: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3792: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3793: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3794: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3795: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3796: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3797: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3798: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3799: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3800: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3801: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3802: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3803: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3804: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3805: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3806: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3807: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3808: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3809: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3810: has 14 Null_Percentage and 85 Not_Null percentage
ROW 3811: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3812: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3813: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3814: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3815: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3816: has 21 Null_Percentage and 78 Not_Null percentage
ROW 3817: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3818: has 14 Null_Percentage and 85 Not_Null percentage
ROW 3819: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3820: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3821: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3822: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3823: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3824: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3825: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3826: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3827: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3828: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3829: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3830: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3831: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3832: has 14 Null_Percentage and 85 Not_Null percentage
ROW 3833: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3834: has 21 Null_Percentage and 78 Not_Null percentage
ROW 3835: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3836: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3837: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3838: has 14 Null_Percentage and 85 Not_Null percentage
ROW 3839: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3840: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3841: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3842: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3843: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3844: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3845: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3846: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3847: has 25 Null_Percentage and 75 Not_Null percentage
ROW 3848: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3849: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3850: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3851: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3852: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3853: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3854: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3855: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3856: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3857: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3858: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3859: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3860: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3861: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3862: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3863: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3864: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3865: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3866: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3867: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3868: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3869: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3870: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3871: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3872: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3873: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3874: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3875: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3876: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3877: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3878: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3879: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3880: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3881: has 21 Null_Percentage and 78 Not_Null percentage
ROW 3882: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3883: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3884: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3885: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3886: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3887: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3888: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3889: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3890: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3891: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3892: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3893: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3894: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3895: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3896: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3897: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3898: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3899: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3900: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3901: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3902: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3903: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3904: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3905: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3906: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3907: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3908: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3909: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3910: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3911: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3912: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3913: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3914: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3915: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3916: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3917: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3918: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3919: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3920: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3921: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3922: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3923: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3924: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3925: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3926: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3927: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3928: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3929: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3930: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3931: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3932: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3933: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3934: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3935: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3936: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3937: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3938: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3939: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3940: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3941: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3942: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3943: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3944: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3945: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3946: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3947: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3948: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3949: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3950: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3951: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3952: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3953: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3954: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3955: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3956: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3957: has 10 Null_Percentage and 89 Not_Null percentage
ROW 3958: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3959: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3960: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3961: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3962: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3963: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3964: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3965: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3966: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3967: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3968: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3969: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3970: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3971: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3972: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3973: has 7 Null_Percentage and 92 Not_Null percentage
ROW 3974: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3975: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3976: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3977: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3978: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3979: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3980: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3981: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3982: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3983: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3984: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3985: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3986: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3987: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3988: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3989: has 17 Null_Percentage and 82 Not_Null percentage
ROW 3990: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3991: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3992: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3993: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3994: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3995: has 3 Null_Percentage and 96 Not_Null percentage
ROW 3996: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3997: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3998: has 0 Null_Percentage and 100 Not_Null percentage
ROW 3999: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4000: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4001: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4002: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4003: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4004: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4005: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4006: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4007: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4008: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4009: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4010: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4011: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4012: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4013: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4014: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4015: has 25 Null_Percentage and 75 Not_Null percentage
ROW 4016: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4017: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4018: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4019: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4020: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4021: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4022: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4023: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4024: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4025: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4026: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4027: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4028: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4029: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4030: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4031: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4032: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4033: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4034: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4035: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4036: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4037: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4038: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4039: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4040: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4041: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4042: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4043: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4044: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4045: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4046: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4047: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4048: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4049: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4050: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4051: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4052: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4053: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4054: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4055: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4056: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4057: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4058: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4059: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4060: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4061: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4062: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4063: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4064: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4065: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4066: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4067: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4068: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4069: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4070: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4071: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4072: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4073: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4074: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4075: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4076: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4077: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4078: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4079: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4080: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4081: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4082: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4083: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4084: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4085: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4086: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4087: has 25 Null_Percentage and 75 Not_Null percentage
ROW 4088: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4089: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4090: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4091: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4092: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4093: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4094: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4095: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4096: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4097: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4098: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4099: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4100: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4101: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4102: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4103: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4104: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4105: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4106: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4107: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4108: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4109: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4110: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4111: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4112: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4113: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4114: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4115: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4116: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4117: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4118: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4119: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4120: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4121: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4122: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4123: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4124: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4125: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4126: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4127: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4128: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4129: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4130: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4131: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4132: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4133: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4134: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4135: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4136: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4137: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4138: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4139: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4140: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4141: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4142: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4143: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4144: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4145: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4146: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4147: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4148: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4149: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4150: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4151: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4152: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4153: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4154: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4155: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4156: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4157: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4158: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4159: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4160: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4161: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4162: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4163: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4164: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4165: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4166: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4167: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4168: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4169: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4170: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4171: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4172: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4173: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4174: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4175: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4176: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4177: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4178: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4179: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4180: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4181: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4182: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4183: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4184: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4185: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4186: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4187: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4188: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4189: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4190: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4191: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4192: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4193: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4194: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4195: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4196: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4197: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4198: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4199: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4200: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4201: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4202: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4203: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4204: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4205: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4206: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4207: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4208: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4209: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4210: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4211: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4212: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4213: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4214: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4215: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4216: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4217: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4218: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4219: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4220: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4221: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4222: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4223: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4224: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4225: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4226: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4227: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4228: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4229: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4230: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4231: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4232: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4233: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4234: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4235: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4236: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4237: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4238: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4239: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4240: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4241: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4242: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4243: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4244: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4245: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4246: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4247: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4248: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4249: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4250: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4251: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4252: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4253: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4254: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4255: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4256: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4257: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4258: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4259: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4260: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4261: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4262: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4263: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4264: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4265: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4266: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4267: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4268: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4269: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4270: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4271: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4272: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4273: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4274: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4275: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4276: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4277: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4278: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4279: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4280: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4281: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4282: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4283: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4284: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4285: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4286: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4287: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4288: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4289: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4290: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4291: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4292: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4293: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4294: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4295: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4296: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4297: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4298: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4299: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4300: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4301: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4302: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4303: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4304: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4305: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4306: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4307: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4308: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4309: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4310: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4311: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4312: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4313: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4314: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4315: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4316: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4317: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4318: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4319: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4320: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4321: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4322: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4323: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4324: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4325: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4326: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4327: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4328: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4329: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4330: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4331: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4332: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4333: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4334: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4335: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4336: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4337: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4338: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4339: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4340: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4341: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4342: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4343: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4344: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4345: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4346: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4347: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4348: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4349: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4350: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4351: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4352: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4353: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4354: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4355: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4356: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4357: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4358: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4359: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4360: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4361: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4362: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4363: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4364: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4365: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4366: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4367: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4368: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4369: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4370: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4371: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4372: has 25 Null_Percentage and 75 Not_Null percentage
ROW 4373: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4374: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4375: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4376: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4377: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4378: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4379: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4380: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4381: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4382: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4383: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4384: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4385: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4386: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4387: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4388: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4389: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4390: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4391: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4392: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4393: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4394: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4395: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4396: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4397: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4398: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4399: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4400: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4401: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4402: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4403: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4404: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4405: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4406: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4407: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4408: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4409: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4410: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4411: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4412: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4413: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4414: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4415: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4416: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4417: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4418: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4419: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4420: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4421: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4422: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4423: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4424: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4425: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4426: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4427: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4428: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4429: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4430: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4431: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4432: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4433: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4434: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4435: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4436: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4437: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4438: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4439: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4440: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4441: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4442: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4443: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4444: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4445: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4446: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4447: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4448: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4449: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4450: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4451: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4452: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4453: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4454: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4455: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4456: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4457: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4458: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4459: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4460: has 28 Null_Percentage and 71 Not_Null percentage
ROW 4461: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4462: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4463: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4464: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4465: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4466: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4467: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4468: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4469: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4470: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4471: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4472: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4473: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4474: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4475: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4476: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4477: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4478: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4479: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4480: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4481: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4482: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4483: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4484: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4485: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4486: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4487: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4488: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4489: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4490: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4491: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4492: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4493: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4494: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4495: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4496: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4497: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4498: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4499: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4500: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4501: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4502: has 25 Null_Percentage and 75 Not_Null percentage
ROW 4503: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4504: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4505: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4506: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4507: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4508: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4509: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4510: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4511: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4512: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4513: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4514: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4515: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4516: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4517: has 25 Null_Percentage and 75 Not_Null percentage
ROW 4518: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4519: has 28 Null_Percentage and 71 Not_Null percentage
ROW 4520: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4521: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4522: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4523: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4524: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4525: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4526: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4527: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4528: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4529: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4530: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4531: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4532: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4533: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4534: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4535: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4536: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4537: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4538: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4539: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4540: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4541: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4542: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4543: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4544: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4545: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4546: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4547: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4548: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4549: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4550: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4551: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4552: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4553: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4554: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4555: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4556: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4557: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4558: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4559: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4560: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4561: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4562: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4563: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4564: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4565: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4566: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4567: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4568: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4569: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4570: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4571: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4572: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4573: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4574: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4575: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4576: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4577: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4578: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4579: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4580: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4581: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4582: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4583: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4584: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4585: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4586: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4587: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4588: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4589: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4590: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4591: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4592: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4593: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4594: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4595: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4596: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4597: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4598: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4599: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4600: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4601: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4602: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4603: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4604: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4605: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4606: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4607: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4608: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4609: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4610: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4611: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4612: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4613: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4614: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4615: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4616: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4617: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4618: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4619: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4620: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4621: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4622: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4623: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4624: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4625: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4626: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4627: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4628: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4629: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4630: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4631: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4632: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4633: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4634: has 28 Null_Percentage and 71 Not_Null percentage
ROW 4635: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4636: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4637: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4638: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4639: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4640: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4641: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4642: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4643: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4644: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4645: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4646: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4647: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4648: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4649: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4650: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4651: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4652: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4653: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4654: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4655: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4656: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4657: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4658: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4659: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4660: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4661: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4662: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4663: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4664: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4665: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4666: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4667: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4668: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4669: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4670: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4671: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4672: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4673: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4674: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4675: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4676: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4677: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4678: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4679: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4680: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4681: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4682: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4683: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4684: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4685: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4686: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4687: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4688: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4689: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4690: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4691: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4692: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4693: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4694: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4695: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4696: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4697: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4698: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4699: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4700: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4701: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4702: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4703: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4704: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4705: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4706: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4707: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4708: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4709: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4710: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4711: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4712: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4713: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4714: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4715: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4716: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4717: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4718: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4719: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4720: has 28 Null_Percentage and 71 Not_Null percentage
ROW 4721: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4722: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4723: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4724: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4725: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4726: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4727: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4728: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4729: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4730: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4731: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4732: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4733: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4734: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4735: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4736: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4737: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4738: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4739: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4740: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4741: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4742: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4743: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4744: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4745: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4746: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4747: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4748: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4749: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4750: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4751: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4752: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4753: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4754: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4755: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4756: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4757: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4758: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4759: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4760: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4761: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4762: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4763: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4764: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4765: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4766: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4767: has 25 Null_Percentage and 75 Not_Null percentage
ROW 4768: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4769: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4770: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4771: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4772: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4773: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4774: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4775: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4776: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4777: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4778: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4779: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4780: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4781: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4782: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4783: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4784: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4785: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4786: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4787: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4788: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4789: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4790: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4791: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4792: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4793: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4794: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4795: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4796: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4797: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4798: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4799: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4800: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4801: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4802: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4803: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4804: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4805: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4806: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4807: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4808: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4809: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4810: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4811: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4812: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4813: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4814: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4815: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4816: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4817: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4818: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4819: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4820: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4821: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4822: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4823: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4824: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4825: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4826: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4827: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4828: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4829: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4830: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4831: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4832: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4833: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4834: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4835: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4836: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4837: has 25 Null_Percentage and 75 Not_Null percentage
ROW 4838: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4839: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4840: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4841: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4842: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4843: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4844: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4845: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4846: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4847: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4848: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4849: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4850: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4851: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4852: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4853: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4854: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4855: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4856: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4857: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4858: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4859: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4860: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4861: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4862: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4863: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4864: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4865: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4866: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4867: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4868: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4869: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4870: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4871: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4872: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4873: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4874: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4875: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4876: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4877: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4878: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4879: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4880: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4881: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4882: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4883: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4884: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4885: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4886: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4887: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4888: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4889: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4890: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4891: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4892: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4893: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4894: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4895: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4896: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4897: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4898: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4899: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4900: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4901: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4902: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4903: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4904: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4905: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4906: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4907: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4908: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4909: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4910: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4911: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4912: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4913: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4914: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4915: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4916: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4917: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4918: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4919: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4920: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4921: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4922: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4923: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4924: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4925: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4926: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4927: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4928: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4929: has 17 Null_Percentage and 82 Not_Null percentage
ROW 4930: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4931: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4932: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4933: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4934: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4935: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4936: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4937: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4938: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4939: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4940: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4941: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4942: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4943: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4944: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4945: has 39 Null_Percentage and 60 Not_Null percentage
ROW 4946: has 28 Null_Percentage and 71 Not_Null percentage
ROW 4947: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4948: has 28 Null_Percentage and 71 Not_Null percentage
ROW 4949: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4950: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4951: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4952: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4953: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4954: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4955: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4956: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4957: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4958: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4959: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4960: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4961: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4962: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4963: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4964: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4965: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4966: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4967: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4968: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4969: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4970: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4971: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4972: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4973: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4974: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4975: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4976: has 14 Null_Percentage and 85 Not_Null percentage
ROW 4977: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4978: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4979: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4980: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4981: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4982: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4983: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4984: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4985: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4986: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4987: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4988: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4989: has 21 Null_Percentage and 78 Not_Null percentage
ROW 4990: has 28 Null_Percentage and 71 Not_Null percentage
ROW 4991: has 7 Null_Percentage and 92 Not_Null percentage
ROW 4992: has 25 Null_Percentage and 75 Not_Null percentage
ROW 4993: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4994: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4995: has 3 Null_Percentage and 96 Not_Null percentage
ROW 4996: has 10 Null_Percentage and 89 Not_Null percentage
ROW 4997: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4998: has 0 Null_Percentage and 100 Not_Null percentage
ROW 4999: has 14 Null_Percentage and 85 Not_Null percentage
ROW 5000: has 3 Null_Percentage and 96 Not_Null percentage
ROW 5001: has 3 Null_Percentage and 96 Not_Null percentage
ROW 5002: has 10 Null_Percentage and 89 Not_Null percentage
ROW 5003: has 7 Null_Percentage and 92 Not_Null percentage
ROW 5004: has 3 Null_Percentage and 96 Not_Null percentage
ROW 5005: has 7 Null_Percentage and 92 Not_Null percentage
ROW 5006: has 10 Null_Percentage and 89 Not_Null percentage
ROW 5007: has 7 Null_Percentage and 92 Not_Null percentage
ROW 5008: has 0 Null_Percentage and 100 Not_Null percentage
ROW 5009: has 7 Null_Percentage and 92 Not_Null percentage
ROW 5010: has 10 Null_Percentage and 89 Not_Null percentage
ROW 5011: has 0 Null_Percentage and 100 Not_Null percentage
ROW 5012: has 0 Null_Percentage and 100 Not_Null percentage
ROW 5013: has 7 Null_Percentage and 92 Not_Null percentage
ROW 5014: has 7 Null_Percentage and 92 Not_Null percentage
ROW 5015: has 0 Null_Percentage and 100 Not_Null percentage
ROW 5016: has 17 Null_Percentage and 82 Not_Null percentage
ROW 5017: has 7 Null_Percentage and 92 Not_Null percentage
ROW 5018: has 7 Null_Percentage and 92 Not_Null percentage
ROW 5019: has 7 Null_Percentage and 92 Not_Null percentage
ROW 5020: has 17 Null_Percentage and 82 Not_Null percentage
ROW 5021: has 3 Null_Percentage and 96 Not_Null percentage
ROW 5022: has 14 Null_Percentage and 85 Not_Null percentage
ROW 5023: has 7 Null_Percentage and 92 Not_Null percentage
ROW 5024: has 3 Null_Percentage and 96 Not_Null percentage
ROW 5025: has 0 Null_Percentage and 100 Not_Null percentage
ROW 5026: has 0 Null_Percentage and 100 Not_Null percentage
ROW 5027: has 0 Null_Percentage and 100 Not_Null percentage
ROW 5028: has 10 Null_Percentage and 89 Not_Null percentage
ROW 5029: has 3 Null_Percentage and 96 Not_Null percentage
ROW 5030: has 17 Null_Percentage and 82 Not_Null percentage
ROW 5031: has 10 Null_Percentage and 89 Not_Null percentage
ROW 5032: has 14 Null_Percentage and 85 Not_Null percentage
ROW 5033: has 0 Null_Percentage and 100 Not_Null percentage
ROW 5034: has 3 Null_Percentage and 96 Not_Null percentage
ROW 5035: has 0 Null_Percentage and 100 Not_Null percentage
ROW 5036: has 10 Null_Percentage and 89 Not_Null percentage
ROW 5037: has 3 Null_Percentage and 96 Not_Null percentage
ROW 5038: has 14 Null_Percentage and 85 Not_Null percentage
ROW 5039: has 17 Null_Percentage and 82 Not_Null percentage
ROW 5040: has 14 Null_Percentage and 85 Not_Null percentage
ROW 5041: has 7 Null_Percentage and 92 Not_Null percentage
ROW 5042: has 0 Null_Percentage and 100 Not_Null percentage
  • ### Subtask 2.2: Drop unecessary columns

For this assignment, you will mostly be analyzing the movies with respect to the ratings, gross collection, popularity of movies, etc. So many of the columns in this dataframe are not required. So it is advised to drop the following columns.

  • color
  • director_facebook_likes
  • actor_1_facebook_likes
  • actor_2_facebook_likes
  • actor_3_facebook_likes
  • actor_2_name
  • cast_total_facebook_likes
  • actor_3_name
  • duration
  • facenumber_in_poster
  • content_rating
  • country
  • movie_imdb_link
  • aspect_ratio
  • plot_keywords
In [23]:
# Write your code for dropping the columns here. It is advised to keep inspecting the dataframe after each set of operations 
A=movies.drop(columns=['color','director_facebook_likes','actor_1_facebook_likes','actor_2_facebook_likes',
'actor_3_facebook_likes',
'actor_2_name',
'cast_total_facebook_likes',
'actor_3_name',
'duration',
'facenumber_in_poster',
'content_rating',
'country',
'movie_imdb_link',
'aspect_ratio',
'plot_keywords'])
A
Out[23]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes
0 James Cameron 723.0 760505847.0 Action|Adventure|Fantasy|Sci-Fi CCH Pounder Avatar 886204 3054.0 English 237000000.0 2009.0 7.9 33000
1 Gore Verbinski 302.0 309404152.0 Action|Adventure|Fantasy Johnny Depp Pirates of the Caribbean: At World's End 471220 1238.0 English 300000000.0 2007.0 7.1 0
2 Sam Mendes 602.0 200074175.0 Action|Adventure|Thriller Christoph Waltz Spectre 275868 994.0 English 245000000.0 2015.0 6.8 85000
3 Christopher Nolan 813.0 448130642.0 Action|Thriller Tom Hardy The Dark Knight Rises 1144337 2701.0 English 250000000.0 2012.0 8.5 164000
4 Doug Walker NaN NaN Documentary Doug Walker Star Wars: Episode VII - The Force Awakens  ... 8 NaN NaN NaN NaN 7.1 0
... ... ... ... ... ... ... ... ... ... ... ... ... ...
5038 Scott Smith 1.0 NaN Comedy|Drama Eric Mabius Signed Sealed Delivered 629 6.0 English NaN 2013.0 7.7 84
5039 NaN 43.0 NaN Crime|Drama|Mystery|Thriller Natalie Zea The Following 73839 359.0 English NaN NaN 7.5 32000
5040 Benjamin Roberds 13.0 NaN Drama|Horror|Thriller Eva Boehnke A Plague So Pleasant 38 3.0 English 1400.0 2013.0 6.3 16
5041 Daniel Hsia 14.0 10443.0 Comedy|Drama|Romance Alan Ruck Shanghai Calling 1255 9.0 English NaN 2012.0 6.3 660
5042 Jon Gunn 43.0 85222.0 Documentary John August My Date with Drew 4285 84.0 English 1100.0 2004.0 6.6 456

5043 rows × 13 columns

In [24]:
A.shape
Out[24]:
(5043, 13)
  • ### Subtask 2.3: Drop unecessary rows using columns with high Null percentages

Now, on inspection you might notice that some columns have large percentage (greater than 5%) of Null values. Drop all the rows which have Null values for such columns.

In [25]:
# Write your code to return all the null entry in gross column
B=A[A['gross'].isnull()==1]
B
#Dropped allthe rows having Null value for column gross
Out[25]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes
4 Doug Walker NaN NaN Documentary Doug Walker Star Wars: Episode VII - The Force Awakens  ... 8 NaN NaN NaN NaN 7.1 0
84 Roland Joffé 10.0 NaN Action|Adventure|Romance|Sci-Fi Tamsin Egerton The Lovers 2138 15.0 English NaN 2015.0 4.5 677
98 Hideaki Anno 1.0 NaN Action|Adventure|Drama|Horror|Sci-Fi Mark Chinnery Godzilla Resurgence 374 13.0 Japanese NaN 2016.0 8.2 0
177 NaN 21.0 NaN Action|Crime|Drama|Mystery|Thriller Don Johnson Miami Vice 16769 74.0 English 1500000.0 NaN 7.5 0
199 Matt Birch 1.0 NaN Action|Fantasy Rupert Grint Harry Potter and the Deathly Hallows: Part II 381 2.0 English NaN 2011.0 7.5 40
... ... ... ... ... ... ... ... ... ... ... ... ... ...
5032 Ash Baron-Cohen 10.0 NaN Crime|Drama Peter Greene Bang 438 14.0 English NaN 1995.0 6.4 20
5036 Anthony Vallone NaN NaN Crime|Drama Richard Jewell The Mongol King 36 1.0 English 3250.0 2005.0 7.8 4
5038 Scott Smith 1.0 NaN Comedy|Drama Eric Mabius Signed Sealed Delivered 629 6.0 English NaN 2013.0 7.7 84
5039 NaN 43.0 NaN Crime|Drama|Mystery|Thriller Natalie Zea The Following 73839 359.0 English NaN NaN 7.5 32000
5040 Benjamin Roberds 13.0 NaN Drama|Horror|Thriller Eva Boehnke A Plague So Pleasant 38 3.0 English 1400.0 2013.0 6.3 16

884 rows × 13 columns

In [26]:
# Write your code to return all the non-null entry of column gross
B=A[A['gross'].isnull()==0]
B
#Dropped allthe rows having Null value for column gross
Out[26]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes
0 James Cameron 723.0 760505847.0 Action|Adventure|Fantasy|Sci-Fi CCH Pounder Avatar 886204 3054.0 English 237000000.0 2009.0 7.9 33000
1 Gore Verbinski 302.0 309404152.0 Action|Adventure|Fantasy Johnny Depp Pirates of the Caribbean: At World's End 471220 1238.0 English 300000000.0 2007.0 7.1 0
2 Sam Mendes 602.0 200074175.0 Action|Adventure|Thriller Christoph Waltz Spectre 275868 994.0 English 245000000.0 2015.0 6.8 85000
3 Christopher Nolan 813.0 448130642.0 Action|Thriller Tom Hardy The Dark Knight Rises 1144337 2701.0 English 250000000.0 2012.0 8.5 164000
5 Andrew Stanton 462.0 73058679.0 Action|Adventure|Sci-Fi Daryl Sabara John Carter 212204 738.0 English 263700000.0 2012.0 6.6 24000
... ... ... ... ... ... ... ... ... ... ... ... ... ...
5034 Neill Dela Llana 35.0 70071.0 Thriller Ian Gamazon Cavite 589 35.0 English 7000.0 2005.0 6.3 74
5035 Robert Rodriguez 56.0 2040920.0 Action|Crime|Drama|Romance|Thriller Carlos Gallardo El Mariachi 52055 130.0 Spanish 7000.0 1992.0 6.9 0
5037 Edward Burns 14.0 4584.0 Comedy|Drama Kerry Bishé Newlyweds 1338 14.0 English 9000.0 2011.0 6.4 413
5041 Daniel Hsia 14.0 10443.0 Comedy|Drama|Romance Alan Ruck Shanghai Calling 1255 9.0 English NaN 2012.0 6.3 660
5042 Jon Gunn 43.0 85222.0 Documentary John August My Date with Drew 4285 84.0 English 1100.0 2004.0 6.6 456

4159 rows × 13 columns

In [27]:
print(B['gross'].isnull().value_counts()) #all the null values are removed.
print(B.shape)
False    4159
Name: gross, dtype: int64
(4159, 13)
In [28]:
column=['gross','content_rating','budget','aspect_ratio']
C=movies[movies['gross'].isnull()==0]
C=C[C['content_rating'].isnull()==0]
C=C[C['budget'].isnull()==0]
C=C[C['aspect_ratio'].isnull()==0]
C
Out[28]:
color director_name num_critic_for_reviews duration director_facebook_likes actor_3_facebook_likes actor_2_name actor_1_facebook_likes gross genres ... num_user_for_reviews language country content_rating budget title_year actor_2_facebook_likes imdb_score aspect_ratio movie_facebook_likes
0 Color James Cameron 723.0 178.0 0.0 855.0 Joel David Moore 1000.0 760505847.0 Action|Adventure|Fantasy|Sci-Fi ... 3054.0 English USA PG-13 237000000.0 2009.0 936.0 7.9 1.78 33000
1 Color Gore Verbinski 302.0 169.0 563.0 1000.0 Orlando Bloom 40000.0 309404152.0 Action|Adventure|Fantasy ... 1238.0 English USA PG-13 300000000.0 2007.0 5000.0 7.1 2.35 0
2 Color Sam Mendes 602.0 148.0 0.0 161.0 Rory Kinnear 11000.0 200074175.0 Action|Adventure|Thriller ... 994.0 English UK PG-13 245000000.0 2015.0 393.0 6.8 2.35 85000
3 Color Christopher Nolan 813.0 164.0 22000.0 23000.0 Christian Bale 27000.0 448130642.0 Action|Thriller ... 2701.0 English USA PG-13 250000000.0 2012.0 23000.0 8.5 2.35 164000
5 Color Andrew Stanton 462.0 132.0 475.0 530.0 Samantha Morton 640.0 73058679.0 Action|Adventure|Sci-Fi ... 738.0 English USA PG-13 263700000.0 2012.0 632.0 6.6 2.35 24000
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
5026 Color Olivier Assayas 81.0 110.0 107.0 45.0 Béatrice Dalle 576.0 136007.0 Drama|Music|Romance ... 39.0 French France R 4500.0 2004.0 133.0 6.9 2.35 171
5027 Color Jafar Panahi 64.0 90.0 397.0 0.0 Nargess Mamizadeh 5.0 673780.0 Drama ... 26.0 Persian Iran Not Rated 10000.0 2000.0 0.0 7.5 1.85 697
5033 Color Shane Carruth 143.0 77.0 291.0 8.0 David Sullivan 291.0 424760.0 Drama|Sci-Fi|Thriller ... 371.0 English USA PG-13 7000.0 2004.0 45.0 7.0 1.85 19000
5035 Color Robert Rodriguez 56.0 81.0 0.0 6.0 Peter Marquardt 121.0 2040920.0 Action|Crime|Drama|Romance|Thriller ... 130.0 Spanish USA R 7000.0 1992.0 20.0 6.9 1.37 0
5042 Color Jon Gunn 43.0 90.0 16.0 16.0 Brian Herzlinger 86.0 85222.0 Documentary ... 84.0 English USA PG 1100.0 2004.0 23.0 6.6 1.85 456

3784 rows × 28 columns

In [29]:
C.shape
Out[29]:
(3784, 28)

Fully Cleaned data:

In [30]:
column=['gross','content_rating','budget','aspect_ratio']
B=A[A['gross'].isnull()==0]
B=B[B['budget'].isnull()==0]
B.head()
Out[30]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes
0 James Cameron 723.0 760505847.0 Action|Adventure|Fantasy|Sci-Fi CCH Pounder Avatar 886204 3054.0 English 237000000.0 2009.0 7.9 33000
1 Gore Verbinski 302.0 309404152.0 Action|Adventure|Fantasy Johnny Depp Pirates of the Caribbean: At World's End 471220 1238.0 English 300000000.0 2007.0 7.1 0
2 Sam Mendes 602.0 200074175.0 Action|Adventure|Thriller Christoph Waltz Spectre 275868 994.0 English 245000000.0 2015.0 6.8 85000
3 Christopher Nolan 813.0 448130642.0 Action|Thriller Tom Hardy The Dark Knight Rises 1144337 2701.0 English 250000000.0 2012.0 8.5 164000
5 Andrew Stanton 462.0 73058679.0 Action|Adventure|Sci-Fi Daryl Sabara John Carter 212204 738.0 English 263700000.0 2012.0 6.6 24000
In [31]:
B.shape
Out[31]:
(3891, 13)
In [32]:
B['director_name'].isnull().value_counts()
Out[32]:
False    3891
Name: director_name, dtype: int64
  • ### Subtask 2.4: Fill NaN values

You might notice that the language column has some NaN values. Here, on inspection, you will see that it is safe to replace all the missing values with 'English'.

In [33]:
B[B['language'].isnull()]
Out[33]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes
3086 Christopher Cain 43.0 1066555.0 Drama|History|Romance|Western Jon Gries September Dawn 2618 111.0 NaN 11000000.0 2007.0 5.8 411
4110 Michael Landon Jr. 5.0 252726.0 Drama|Family|Western William Morgan Sheppard Love's Abiding Joy 1289 18.0 NaN 3000000.0 2006.0 7.2 76
4958 Harry F. Millarde 1.0 3000000.0 Crime|Drama Stephen Carr Over the Hill to the Poorhouse 5 1.0 NaN 100000.0 1920.0 4.8 0
In [34]:
print(B.shape)
print(B['language'].isnull().value_counts())
(3891, 13)
False    3888
True        3
Name: language, dtype: int64

Filling up the Language 'Nan' value with 'English'

In [35]:
# Write your code for filling the NaN values in the 'language' column here
B['language'].fillna('English',inplace=True)
B['language'].isnull().value_counts()
Out[35]:
False    3891
Name: language, dtype: int64
  • ### Subtask 2.5: Check the number of retained rows

You might notice that two of the columns viz. num_critic_for_reviews and actor_1_name have small percentages of NaN values left. You can let these columns as it is for now. Check the number and percentage of the rows retained after completing all the tasks above.

Contained all clean data:

In [36]:
# Write your code for checking number of retained rows here
# Write your code for column-wise null percentages here
D=B.shape[0]
for i in B.columns:
    G=list(B[i].isnull().value_counts())
    if len(G)==1:
        F=0
    else:
        F=G[1]
    null_per=(F/D)*100
    not_null_per=((D-F)/D)*100 
    print('Column: {}     Null_Percentage: {}      True_value_Percentage: {}'.format(i,null_per,not_null_per))
Column: director_name     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: num_critic_for_reviews     Null_Percentage: 0.02570033410434336      True_value_Percentage: 99.97429966589566
Column: gross     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: genres     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: actor_1_name     Null_Percentage: 0.07710100231303006      True_value_Percentage: 99.92289899768697
Column: movie_title     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: num_voted_users     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: num_user_for_reviews     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: language     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: budget     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: title_year     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: imdb_score     Null_Percentage: 0.0      True_value_Percentage: 100.0
Column: movie_facebook_likes     Null_Percentage: 0.0      True_value_Percentage: 100.0
In [37]:
int(B.shape[0]/movies.shape[0]*100)
#movies is original dataframe and B is the cleaned dataframe
Out[37]:
77

Checkpoint 1: You might have noticed that we still have around 77% of the rows!

Task 3: Data Analysis

  • ### Subtask 3.1: Change the unit of columns

Convert the unit of the budget and gross columns from $ to million $.

In [38]:
# Write your code for unit conversion for gross
B['gross']=B['gross']/1000000
B.head()
Out[38]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes
0 James Cameron 723.0 760.505847 Action|Adventure|Fantasy|Sci-Fi CCH Pounder Avatar 886204 3054.0 English 237000000.0 2009.0 7.9 33000
1 Gore Verbinski 302.0 309.404152 Action|Adventure|Fantasy Johnny Depp Pirates of the Caribbean: At World's End 471220 1238.0 English 300000000.0 2007.0 7.1 0
2 Sam Mendes 602.0 200.074175 Action|Adventure|Thriller Christoph Waltz Spectre 275868 994.0 English 245000000.0 2015.0 6.8 85000
3 Christopher Nolan 813.0 448.130642 Action|Thriller Tom Hardy The Dark Knight Rises 1144337 2701.0 English 250000000.0 2012.0 8.5 164000
5 Andrew Stanton 462.0 73.058679 Action|Adventure|Sci-Fi Daryl Sabara John Carter 212204 738.0 English 263700000.0 2012.0 6.6 24000
In [39]:
B[['budget']].head()
Out[39]:
budget
0 237000000.0
1 300000000.0
2 245000000.0
3 250000000.0
5 263700000.0
In [40]:
# Write your code for unit conversion for budget here
B['budget']=B['budget']/1000000
B.head()
Out[40]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes
0 James Cameron 723.0 760.505847 Action|Adventure|Fantasy|Sci-Fi CCH Pounder Avatar 886204 3054.0 English 237.0 2009.0 7.9 33000
1 Gore Verbinski 302.0 309.404152 Action|Adventure|Fantasy Johnny Depp Pirates of the Caribbean: At World's End 471220 1238.0 English 300.0 2007.0 7.1 0
2 Sam Mendes 602.0 200.074175 Action|Adventure|Thriller Christoph Waltz Spectre 275868 994.0 English 245.0 2015.0 6.8 85000
3 Christopher Nolan 813.0 448.130642 Action|Thriller Tom Hardy The Dark Knight Rises 1144337 2701.0 English 250.0 2012.0 8.5 164000
5 Andrew Stanton 462.0 73.058679 Action|Adventure|Sci-Fi Daryl Sabara John Carter 212204 738.0 English 263.7 2012.0 6.6 24000
In [41]:
B['budget']=B['budget'].astype('int')
B.head()
Out[41]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes
0 James Cameron 723.0 760.505847 Action|Adventure|Fantasy|Sci-Fi CCH Pounder Avatar 886204 3054.0 English 237 2009.0 7.9 33000
1 Gore Verbinski 302.0 309.404152 Action|Adventure|Fantasy Johnny Depp Pirates of the Caribbean: At World's End 471220 1238.0 English 300 2007.0 7.1 0
2 Sam Mendes 602.0 200.074175 Action|Adventure|Thriller Christoph Waltz Spectre 275868 994.0 English 245 2015.0 6.8 85000
3 Christopher Nolan 813.0 448.130642 Action|Thriller Tom Hardy The Dark Knight Rises 1144337 2701.0 English 250 2012.0 8.5 164000
5 Andrew Stanton 462.0 73.058679 Action|Adventure|Sci-Fi Daryl Sabara John Carter 212204 738.0 English 263 2012.0 6.6 24000
In [42]:
B['gross']=B['gross'].astype('int')
B.head()
Out[42]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes
0 James Cameron 723.0 760 Action|Adventure|Fantasy|Sci-Fi CCH Pounder Avatar 886204 3054.0 English 237 2009.0 7.9 33000
1 Gore Verbinski 302.0 309 Action|Adventure|Fantasy Johnny Depp Pirates of the Caribbean: At World's End 471220 1238.0 English 300 2007.0 7.1 0
2 Sam Mendes 602.0 200 Action|Adventure|Thriller Christoph Waltz Spectre 275868 994.0 English 245 2015.0 6.8 85000
3 Christopher Nolan 813.0 448 Action|Thriller Tom Hardy The Dark Knight Rises 1144337 2701.0 English 250 2012.0 8.5 164000
5 Andrew Stanton 462.0 73 Action|Adventure|Sci-Fi Daryl Sabara John Carter 212204 738.0 English 263 2012.0 6.6 24000
  • ### Subtask 3.2: Find the movies with highest profit

    1. Create a new column called profit which contains the difference of the two columns: gross and budget.
    2. Sort the dataframe using the profit column as reference.
    3. Plot profit (y-axis) vs budget (x- axis) and observe the outliers using the appropriate chart type.
    4. Extract the top ten profiting movies in descending order and store them in a new dataframe - top10
In [43]:
# Write your code for creating the profit column here
B['Profit']=(B['gross']-B['budget'])
B.head()
Out[43]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit
0 James Cameron 723.0 760 Action|Adventure|Fantasy|Sci-Fi CCH Pounder Avatar 886204 3054.0 English 237 2009.0 7.9 33000 523
1 Gore Verbinski 302.0 309 Action|Adventure|Fantasy Johnny Depp Pirates of the Caribbean: At World's End 471220 1238.0 English 300 2007.0 7.1 0 9
2 Sam Mendes 602.0 200 Action|Adventure|Thriller Christoph Waltz Spectre 275868 994.0 English 245 2015.0 6.8 85000 -45
3 Christopher Nolan 813.0 448 Action|Thriller Tom Hardy The Dark Knight Rises 1144337 2701.0 English 250 2012.0 8.5 164000 198
5 Andrew Stanton 462.0 73 Action|Adventure|Sci-Fi Daryl Sabara John Carter 212204 738.0 English 263 2012.0 6.6 24000 -190
In [44]:
# Write your code for sorting on basis of profit earned.
B=B.sort_values(by=['Profit'],ascending=False)
B.head()
Out[44]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit
0 James Cameron 723.0 760 Action|Adventure|Fantasy|Sci-Fi CCH Pounder Avatar 886204 3054.0 English 237 2009.0 7.9 33000 523
29 Colin Trevorrow 644.0 652 Action|Adventure|Sci-Fi|Thriller Bryce Dallas Howard Jurassic World 418214 1290.0 English 150 2015.0 7.0 150000 502
26 James Cameron 315.0 658 Drama|Romance Leonardo DiCaprio Titanic 793059 2528.0 English 200 1997.0 7.7 26000 458
3024 George Lucas 282.0 460 Action|Adventure|Fantasy|Sci-Fi Harrison Ford Star Wars: Episode IV - A New Hope 911097 1470.0 English 11 1977.0 8.7 33000 449
3080 Steven Spielberg 215.0 434 Family|Sci-Fi Henry Thomas E.T. the Extra-Terrestrial 281842 515.0 English 10 1982.0 7.9 34000 424
In [46]:
#Top 10 movie of all time
top10 = B.head(10)
top10=top10.reset_index()
top10.drop(['index'],axis=1,inplace=True)
top10
Out[46]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit
0 James Cameron 723.0 760 Action|Adventure|Fantasy|Sci-Fi CCH Pounder Avatar 886204 3054.0 English 237 2009.0 7.9 33000 523
1 Colin Trevorrow 644.0 652 Action|Adventure|Sci-Fi|Thriller Bryce Dallas Howard Jurassic World 418214 1290.0 English 150 2015.0 7.0 150000 502
2 James Cameron 315.0 658 Drama|Romance Leonardo DiCaprio Titanic 793059 2528.0 English 200 1997.0 7.7 26000 458
3 George Lucas 282.0 460 Action|Adventure|Fantasy|Sci-Fi Harrison Ford Star Wars: Episode IV - A New Hope 911097 1470.0 English 11 1977.0 8.7 33000 449
4 Steven Spielberg 215.0 434 Family|Sci-Fi Henry Thomas E.T. the Extra-Terrestrial 281842 515.0 English 10 1982.0 7.9 34000 424
5 Joss Whedon 703.0 623 Action|Adventure|Sci-Fi Chris Hemsworth The Avengers 995415 1722.0 English 220 2012.0 8.1 123000 403
6 Joss Whedon 703.0 623 Action|Adventure|Sci-Fi Chris Hemsworth The Avengers 995415 1722.0 English 220 2012.0 8.1 123000 403
7 Roger Allers 186.0 422 Adventure|Animation|Drama|Family|Musical Matthew Broderick The Lion King 644348 656.0 English 45 1994.0 8.5 17000 377
8 George Lucas 320.0 474 Action|Adventure|Fantasy|Sci-Fi Natalie Portman Star Wars: Episode I - The Phantom Menace 534658 3597.0 English 115 1999.0 6.5 13000 359
9 Christopher Nolan 645.0 533 Action|Crime|Drama|Thriller Christian Bale The Dark Knight 1676169 4667.0 English 185 2008.0 9.0 37000 348
In [47]:
# Write code for profit vs budget plot here
import matplotlib
import matplotlib.pyplot as plt
f = plt.figure()
f.set_figwidth(15)
f.set_figheight(5)
ax=plt.gca()
top10.plot(kind='line',x='movie_title',y='Profit',ax=ax,color='red')
top10.plot(kind='line',x='movie_title',y='budget',ax=ax)
plt.show()
In [48]:
# Write code for profit vs budget plot here
import matplotlib
import matplotlib.pyplot as plt
f = plt.figure()
f.set_figwidth(15)
f.set_figheight(5)
ax=plt.gca()
top10.plot(kind='scatter',x='budget',y='Profit',color='red',ax=ax)
plt.xlabel('BUDGET')
plt.ylabel('PROFIT')
plt.show()
In [49]:
# Write code for profit vs budget plot here
import matplotlib
import matplotlib.pyplot as plt
f = plt.figure()
f.set_figwidth(15)
f.set_figheight(5)
ax=plt.gca()
top10.plot(kind='bar',x='budget',y='Profit',ax=ax)
plt.xlabel('BUDGET')
plt.ylabel('PROFIT')
plt.show()
  • ### Subtask 3.3: Drop duplicate values

After you found out the top 10 profiting movies, you might have noticed a duplicate value. So, it seems like the dataframe has duplicate values as well. Drop the duplicate values from the dataframe and repeat Subtask 3.2. Note that the same movie_title can be there in different languages.

In [50]:
# Write your code for dropping duplicate values here
top10
Out[50]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit
0 James Cameron 723.0 760 Action|Adventure|Fantasy|Sci-Fi CCH Pounder Avatar 886204 3054.0 English 237 2009.0 7.9 33000 523
1 Colin Trevorrow 644.0 652 Action|Adventure|Sci-Fi|Thriller Bryce Dallas Howard Jurassic World 418214 1290.0 English 150 2015.0 7.0 150000 502
2 James Cameron 315.0 658 Drama|Romance Leonardo DiCaprio Titanic 793059 2528.0 English 200 1997.0 7.7 26000 458
3 George Lucas 282.0 460 Action|Adventure|Fantasy|Sci-Fi Harrison Ford Star Wars: Episode IV - A New Hope 911097 1470.0 English 11 1977.0 8.7 33000 449
4 Steven Spielberg 215.0 434 Family|Sci-Fi Henry Thomas E.T. the Extra-Terrestrial 281842 515.0 English 10 1982.0 7.9 34000 424
5 Joss Whedon 703.0 623 Action|Adventure|Sci-Fi Chris Hemsworth The Avengers 995415 1722.0 English 220 2012.0 8.1 123000 403
6 Joss Whedon 703.0 623 Action|Adventure|Sci-Fi Chris Hemsworth The Avengers 995415 1722.0 English 220 2012.0 8.1 123000 403
7 Roger Allers 186.0 422 Adventure|Animation|Drama|Family|Musical Matthew Broderick The Lion King 644348 656.0 English 45 1994.0 8.5 17000 377
8 George Lucas 320.0 474 Action|Adventure|Fantasy|Sci-Fi Natalie Portman Star Wars: Episode I - The Phantom Menace 534658 3597.0 English 115 1999.0 6.5 13000 359
9 Christopher Nolan 645.0 533 Action|Crime|Drama|Thriller Christian Bale The Dark Knight 1676169 4667.0 English 185 2008.0 9.0 37000 348
In [51]:
D=B.drop_duplicates(subset='movie_title',keep='first') #it will take the first entry of same time as unique and rest as duplicate
D.sort_values(by='Profit',ascending=False,inplace=True)
D.head()
Out[51]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit
0 James Cameron 723.0 760 Action|Adventure|Fantasy|Sci-Fi CCH Pounder Avatar 886204 3054.0 English 237 2009.0 7.9 33000 523
29 Colin Trevorrow 644.0 652 Action|Adventure|Sci-Fi|Thriller Bryce Dallas Howard Jurassic World 418214 1290.0 English 150 2015.0 7.0 150000 502
26 James Cameron 315.0 658 Drama|Romance Leonardo DiCaprio Titanic 793059 2528.0 English 200 1997.0 7.7 26000 458
3024 George Lucas 282.0 460 Action|Adventure|Fantasy|Sci-Fi Harrison Ford Star Wars: Episode IV - A New Hope 911097 1470.0 English 11 1977.0 8.7 33000 449
3080 Steven Spielberg 215.0 434 Family|Sci-Fi Henry Thomas E.T. the Extra-Terrestrial 281842 515.0 English 10 1982.0 7.9 34000 424

Deleting the duplicate movie name

In [52]:
# Write code for repeating subtask 2 here
top10=D.head(10)
top10
Out[52]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit
0 James Cameron 723.0 760 Action|Adventure|Fantasy|Sci-Fi CCH Pounder Avatar 886204 3054.0 English 237 2009.0 7.9 33000 523
29 Colin Trevorrow 644.0 652 Action|Adventure|Sci-Fi|Thriller Bryce Dallas Howard Jurassic World 418214 1290.0 English 150 2015.0 7.0 150000 502
26 James Cameron 315.0 658 Drama|Romance Leonardo DiCaprio Titanic 793059 2528.0 English 200 1997.0 7.7 26000 458
3024 George Lucas 282.0 460 Action|Adventure|Fantasy|Sci-Fi Harrison Ford Star Wars: Episode IV - A New Hope 911097 1470.0 English 11 1977.0 8.7 33000 449
3080 Steven Spielberg 215.0 434 Family|Sci-Fi Henry Thomas E.T. the Extra-Terrestrial 281842 515.0 English 10 1982.0 7.9 34000 424
794 Joss Whedon 703.0 623 Action|Adventure|Sci-Fi Chris Hemsworth The Avengers 995415 1722.0 English 220 2012.0 8.1 123000 403
509 Roger Allers 186.0 422 Adventure|Animation|Drama|Family|Musical Matthew Broderick The Lion King 644348 656.0 English 45 1994.0 8.5 17000 377
240 George Lucas 320.0 474 Action|Adventure|Fantasy|Sci-Fi Natalie Portman Star Wars: Episode I - The Phantom Menace 534658 3597.0 English 115 1999.0 6.5 13000 359
66 Christopher Nolan 645.0 533 Action|Crime|Drama|Thriller Christian Bale The Dark Knight 1676169 4667.0 English 185 2008.0 9.0 37000 348
439 Gary Ross 673.0 407 Adventure|Drama|Sci-Fi|Thriller Jennifer Lawrence The Hunger Games 701607 1959.0 English 78 2012.0 7.3 140000 329
In [53]:
# Write code for profit vs budget plot here
import matplotlib
import matplotlib.pyplot as plt
f = plt.figure()
f.set_figwidth(15)
f.set_figheight(5)
ax=plt.gca()
top10.plot(kind='bar',x='budget',y='Profit',ax=ax)
plt.xlabel('BUDGET')
plt.ylabel('PROFIT')
plt.show()

Checkpoint 2: You might spot two movies directed by James Cameron in the list.

  • ### Subtask 3.4: Find IMDb Top 250

    1. Create a new dataframe IMDb_Top_250 and store the top 250 movies with the highest IMDb Rating (corresponding to the column: imdb_score). Also make sure that for all of these movies, the num_voted_users is greater than 25,000. Also add a Rank column containing the values 1 to 250 indicating the ranks of the corresponding films.
    2. Extract all the movies in the IMDb_Top_250 dataframe which are not in the English language and store them in a new dataframe named Top_Foreign_Lang_Film.
In [55]:
# Write your code for extracting the top 250 movies as per the IMDb score here. Make sure that you store it in a new dataframe 
# and name that dataframe as 'IMDb_Top_250'
IMDB_Top_250=D.sort_values(by=['imdb_score'],ascending=False).where(D['num_voted_users']>25000)
IMDB_Top_250=IMDB_Top_250.reset_index()
IMDB_Top_250.drop('index',axis=1,inplace=True)
IMDB_Top_250.rename(columns={' ':'Rank'},inplace=True)
IMDB_Top_250.head()
Out[55]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit
0 Frank Darabont 199.0 28.0 Crime|Drama Morgan Freeman The Shawshank Redemption 1689764.0 4144.0 English 25.0 1994.0 9.3 108000.0 3.0
1 Francis Ford Coppola 208.0 134.0 Crime|Drama Al Pacino The Godfather 1155770.0 2238.0 English 6.0 1972.0 9.2 43000.0 128.0
2 Christopher Nolan 645.0 533.0 Action|Crime|Drama|Thriller Christian Bale The Dark Knight 1676169.0 4667.0 English 185.0 2008.0 9.0 37000.0 348.0
3 Francis Ford Coppola 149.0 57.0 Crime|Drama Robert De Niro The Godfather: Part II 790926.0 650.0 English 13.0 1974.0 9.0 14000.0 44.0
4 Peter Jackson 328.0 377.0 Action|Adventure|Drama|Fantasy Orlando Bloom The Lord of the Rings: The Return of the King 1215718.0 3189.0 English 94.0 2003.0 8.9 16000.0 283.0
In [56]:
IMDB_Top_250.index
Out[56]:
RangeIndex(start=0, stop=3789, step=1)
In [57]:
IMDB_Top_250['Rank']=IMDB_Top_250.index+1
In [58]:
IMDB_Top_250.head()
Out[58]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit Rank
0 Frank Darabont 199.0 28.0 Crime|Drama Morgan Freeman The Shawshank Redemption 1689764.0 4144.0 English 25.0 1994.0 9.3 108000.0 3.0 1
1 Francis Ford Coppola 208.0 134.0 Crime|Drama Al Pacino The Godfather 1155770.0 2238.0 English 6.0 1972.0 9.2 43000.0 128.0 2
2 Christopher Nolan 645.0 533.0 Action|Crime|Drama|Thriller Christian Bale The Dark Knight 1676169.0 4667.0 English 185.0 2008.0 9.0 37000.0 348.0 3
3 Francis Ford Coppola 149.0 57.0 Crime|Drama Robert De Niro The Godfather: Part II 790926.0 650.0 English 13.0 1974.0 9.0 14000.0 44.0 4
4 Peter Jackson 328.0 377.0 Action|Adventure|Drama|Fantasy Orlando Bloom The Lord of the Rings: The Return of the King 1215718.0 3189.0 English 94.0 2003.0 8.9 16000.0 283.0 5
In [59]:
IMDB_Top_250.shape
Out[59]:
(3789, 15)
In [60]:
# Write your code to extract top foreign language films from 'IMDb_Top_250' here
Top_Foreign_Lang_Film = IMDB_Top_250[IMDB_Top_250['language']!='English'].dropna()
Top_Foreign_Lang_Film.head(15)
Out[60]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit Rank
6 Sergio Leone 181.0 6.0 Western Clint Eastwood The Good, the Bad and the Ugly 503509.0 780.0 Italian 1.0 1966.0 8.9 20000.0 5.0 7
13 Akira Kurosawa 153.0 0.0 Action|Adventure|Drama Takashi Shimura Seven Samurai 229012.0 596.0 Japanese 2.0 1954.0 8.7 11000.0 -2.0 14
16 Fernando Meirelles 214.0 7.0 Crime|Drama Alice Braga City of God 533200.0 749.0 Portuguese 3.0 2002.0 8.7 28000.0 4.0 17
22 Hayao Miyazaki 246.0 10.0 Adventure|Animation|Family|Fantasy Bunta Sugawara Spirited Away 417971.0 902.0 Japanese 19.0 2001.0 8.6 28000.0 -9.0 23
33 Majid Majidi 46.0 0.0 Drama|Family Bahare Seddiqi Children of Heaven 27882.0 130.0 Persian 0.0 1997.0 8.5 0.0 0.0 34
41 Florian Henckel von Donnersmarck 215.0 11.0 Drama|Thriller Sebastian Koch The Lives of Others 259379.0 407.0 German 2.0 2006.0 8.5 39000.0 9.0 42
47 S.S. Rajamouli 44.0 6.0 Action|Adventure|Drama|Fantasy|War Tamannaah Bhatia Baahubali: The Beginning 62756.0 410.0 Telugu 18.0 2015.0 8.4 21000.0 -12.0 48
51 Asghar Farhadi 354.0 7.0 Drama|Mystery Shahab Hosseini A Separation 151812.0 264.0 Persian 0.0 2011.0 8.4 48000.0 7.0 52
56 Chan-wook Park 305.0 2.0 Drama|Mystery|Thriller Min-sik Choi Oldboy 356181.0 809.0 Korean 3.0 2003.0 8.4 43000.0 -1.0 57
58 Jean-Pierre Jeunet 242.0 33.0 Comedy|Romance Mathieu Kassovitz Amélie 534262.0 1314.0 French 77.0 2001.0 8.4 39000.0 -44.0 59
60 Wolfgang Petersen 96.0 11.0 Adventure|Drama|Thriller|War Jürgen Prochnow Das Boot 168203.0 426.0 German 14.0 1981.0 8.4 11000.0 -3.0 61
61 Hayao Miyazaki 174.0 2.0 Adventure|Animation|Fantasy Minnie Driver Princess Mononoke 221552.0 570.0 Japanese 2400.0 1997.0 8.4 11000.0 -2398.0 62
68 Oliver Hirschbiegel 192.0 5.0 Biography|Drama|History|War Thomas Kretschmann Downfall 248354.0 564.0 German 13.0 2004.0 8.3 14000.0 -8.0 69
69 Thomas Vinterberg 349.0 0.0 Drama Thomas Bo Larsen The Hunt 170155.0 249.0 Danish 3.0 2012.0 8.3 60000.0 -3.0 70
70 Fritz Lang 260.0 0.0 Drama|Sci-Fi Brigitte Helm Metropolis 111841.0 413.0 German 6.0 1927.0 8.3 12000.0 -6.0 71

Checkpoint 3: Can you spot Veer-Zaara in the dataframe?

  • ### Subtask 3.5: Find the best directors

    1. Group the dataframe using the director_name column.
    2. Find out the top 10 directors for whom the mean of imdb_score is the highest and store them in a new dataframe top10director. Incase of a tie in IMDb score between two directors, sort them alphabetically.
In [61]:
# Write your code for extracting the top 10 directors here
top10director=IMDB_Top_250.groupby('director_name').mean()
top10director=top10director.sort_values(by='imdb_score',ascending=False)
top10director.head(10)
# top10directors=top10director['director_name']
# top10directors
Out[61]:
num_critic_for_reviews gross num_voted_users num_user_for_reviews budget title_year imdb_score movie_facebook_likes Profit Rank
director_name
Akira Kurosawa 153.00 0.000000 2.290120e+05 596.000000 2.000000 1954.000000 8.700000 11000.000000 -2.000000 14.000
Tony Kaye 162.00 6.000000 7.824370e+05 1420.000000 7.000000 1998.000000 8.600000 35000.000000 -1.000000 25.000
Charles Chaplin 120.00 0.000000 1.430860e+05 211.000000 1.000000 1936.000000 8.600000 0.000000 -1.000000 21.000
Majid Majidi 46.00 0.000000 2.788200e+04 130.000000 0.000000 1997.000000 8.500000 0.000000 0.000000 34.000
Damien Chazelle 535.00 13.000000 3.991380e+05 731.000000 3.000000 2014.000000 8.500000 129000.000000 10.000000 37.000
Alfred Hitchcock 290.00 32.000000 4.224320e+05 1040.000000 0.000000 1960.000000 8.500000 18000.000000 32.000000 30.000
Sergio Leone 138.00 4.666667 2.906917e+05 503.333333 10.333333 1971.333333 8.433333 10666.666667 -5.666667 80.000
Christopher Nolan 511.25 226.250000 1.013285e+06 2424.875000 125.625000 2007.125000 8.425000 103625.000000 100.625000 143.125
Asghar Farhadi 354.00 7.000000 1.518120e+05 264.000000 0.000000 2011.000000 8.400000 48000.000000 7.000000 52.000
S.S. Rajamouli 44.00 6.000000 6.275600e+04 410.000000 18.000000 2015.000000 8.400000 21000.000000 -12.000000 48.000

Checkpoint 4: No surprises that Damien Chazelle (director of Whiplash and La La Land) is in this list.

  • ### Subtask 3.6: Find popular genres

You might have noticed the genres column in the dataframe with all the genres of the movies seperated by a pipe (|). Out of all the movie genres, the first two are most significant for any film.

  1. Extract the first two genres from the genres column and store them in two new columns: genre_1 and genre_2. Some of the movies might have only one genre. In such cases, extract the single genre into both the columns, i.e. for such movies the genre_2 will be the same as genre_1.
  2. Group the dataframe using genre_1 as the primary column and genre_2 as the secondary column.
  3. Find out the 5 most popular combo of genres by finding the mean of the gross values using the gross column and store them in a new dataframe named PopGenre.
In [74]:
# Write your code for extracting the first two genres of each movie here
F=IMDB_Top_250[IMDB_Top_250.isnull()==0].dropna()
F
Out[74]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit Rank
0 Frank Darabont 199.0 28.0 Crime|Drama Morgan Freeman The Shawshank Redemption 1689764.0 4144.0 English 25.0 1994.0 9.3 108000.0 3.0 1
1 Francis Ford Coppola 208.0 134.0 Crime|Drama Al Pacino The Godfather 1155770.0 2238.0 English 6.0 1972.0 9.2 43000.0 128.0 2
2 Christopher Nolan 645.0 533.0 Action|Crime|Drama|Thriller Christian Bale The Dark Knight 1676169.0 4667.0 English 185.0 2008.0 9.0 37000.0 348.0 3
3 Francis Ford Coppola 149.0 57.0 Crime|Drama Robert De Niro The Godfather: Part II 790926.0 650.0 English 13.0 1974.0 9.0 14000.0 44.0 4
4 Peter Jackson 328.0 377.0 Action|Adventure|Drama|Fantasy Orlando Bloom The Lord of the Rings: The Return of the King 1215718.0 3189.0 English 94.0 2003.0 8.9 16000.0 283.0 5
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
3780 Jason Friedberg 112.0 39.0 Adventure|Comedy David Carradine Epic Movie 89687.0 666.0 English 20.0 2007.0 2.3 0.0 19.0 3781
3781 Lawrence Guterman 78.0 17.0 Comedy|Family|Fantasy Jamie Kennedy Son of the Mask 40751.0 239.0 English 84.0 2005.0 2.2 881.0 -67.0 3782
3786 Bob Clark 32.0 9.0 Comedy|Family|Sci-Fi Scott Baio Superbabies: Baby Geniuses 2 25371.0 129.0 English 20.0 2004.0 1.9 0.0 -11.0 3787
3787 Jason Friedberg 111.0 14.0 Comedy Carmen Electra Disaster Movie 74945.0 359.0 English 25.0 2008.0 1.9 0.0 -11.0 3788
3788 Jon M. Chu 84.0 73.0 Documentary|Music Usher Raymond Justin Bieber: Never Say Never 74351.0 233.0 English 13.0 2011.0 1.6 62000.0 60.0 3789

2542 rows × 15 columns

In [77]:
F[['genres']].head(5)
Out[77]:
genres
0 Crime|Drama
1 Crime|Drama
2 Action|Crime|Drama|Thriller
3 Crime|Drama
4 Action|Adventure|Drama|Fantasy
In [97]:
import re
genre_1=[]
genre_2=[]
for i in F['genres']:
    G=re.findall('[a-zA-Z]+',i)
    if len(G)>=2:
        genre_1.append(G[0])
        genre_2.append(G[1])
    else:
        genre_1.append(G[0])
        genre_2.append(G[0])
print(len(genre_1))
print(len(genre_2))
2542
2542
In [98]:
genre_1
Out[98]:
['Crime',
 'Crime',
 'Action',
 'Crime',
 'Action',
 'Biography',
 'Western',
 'Crime',
 'Drama',
 'Action',
 'Action',
 'Action',
 'Comedy',
 'Action',
 'Action',
 'Action',
 'Crime',
 'Drama',
 'Action',
 'Biography',
 'Comedy',
 'Crime',
 'Adventure',
 'Crime',
 'Crime',
 'Adventure',
 'Action',
 'Crime',
 'Crime',
 'Horror',
 'Action',
 'Biography',
 'Horror',
 'Drama',
 'Action',
 'Drama',
 'Drama',
 'Adventure',
 'Drama',
 'Action',
 'Drama',
 'Drama',
 'Crime',
 'Action',
 'Mystery',
 'Adventure',
 'Action',
 'Action',
 'Drama',
 'Biography',
 'Drama',
 'Adventure',
 'Drama',
 'Crime',
 'Adventure',
 'Drama',
 'Crime',
 'Comedy',
 'Action',
 'Adventure',
 'Adventure',
 'Drama',
 'Adventure',
 'Comedy',
 'Crime',
 'Action',
 'Biography',
 'Drama',
 'Drama',
 'Comedy',
 'Comedy',
 'Crime',
 'Adventure',
 'Biography',
 'Biography',
 'Adventure',
 'Adventure',
 'Action',
 'Drama',
 'Drama',
 'Adventure',
 'Adventure',
 'Adventure',
 'Drama',
 'Action',
 'Sci',
 'Drama',
 'Drama',
 'Adventure',
 'Adventure',
 'Action',
 'Adventure',
 'Crime',
 'Action',
 'Biography',
 'Horror',
 'Comedy',
 'Drama',
 'Drama',
 'Biography',
 'Drama',
 'Drama',
 'Comedy',
 'Drama',
 'Biography',
 'Adventure',
 'Adventure',
 'Biography',
 'Drama',
 'Adventure',
 'Drama',
 'Action',
 'Action',
 'Adventure',
 'Drama',
 'Biography',
 'Drama',
 'Drama',
 'Adventure',
 'Drama',
 'Crime',
 'Crime',
 'Action',
 'Comedy',
 'Crime',
 'Adventure',
 'Adventure',
 'Action',
 'Mystery',
 'Adventure',
 'Crime',
 'Adventure',
 'Biography',
 'Action',
 'Drama',
 'Drama',
 'Action',
 'Drama',
 'Action',
 'Action',
 'Action',
 'Comedy',
 'Action',
 'Biography',
 'Drama',
 'Comedy',
 'Drama',
 'Adventure',
 'Biography',
 'Action',
 'Drama',
 'Action',
 'Horror',
 'Action',
 'Drama',
 'Comedy',
 'Biography',
 'Action',
 'Adventure',
 'Comedy',
 'Action',
 'Biography',
 'Adventure',
 'Drama',
 'Adventure',
 'Animation',
 'Adventure',
 'Action',
 'Action',
 'Drama',
 'Drama',
 'Animation',
 'Drama',
 'Drama',
 'Drama',
 'Adventure',
 'Biography',
 'Drama',
 'Crime',
 'Action',
 'Comedy',
 'Adventure',
 'Drama',
 'Documentary',
 'Crime',
 'Comedy',
 'Drama',
 'Biography',
 'Drama',
 'Drama',
 'Animation',
 'Drama',
 'Biography',
 'Action',
 'Crime',
 'Action',
 'Action',
 'Drama',
 'Adventure',
 'Drama',
 'Action',
 'Biography',
 'Biography',
 'Comedy',
 'Crime',
 'Biography',
 'Drama',
 'Drama',
 'Biography',
 'Action',
 'Action',
 'Drama',
 'Crime',
 'Drama',
 'Drama',
 'Fantasy',
 'Drama',
 'Adventure',
 'Action',
 'Crime',
 'Action',
 'Horror',
 'Biography',
 'Drama',
 'Crime',
 'Comedy',
 'Drama',
 'Action',
 'Drama',
 'Adventure',
 'Adventure',
 'Drama',
 'Drama',
 'Action',
 'Adventure',
 'Action',
 'Drama',
 'Biography',
 'Drama',
 'Biography',
 'Adventure',
 'Action',
 'Biography',
 'Crime',
 'Action',
 'Family',
 'Action',
 'Action',
 'Drama',
 'Drama',
 'Drama',
 'Adventure',
 'Biography',
 'Adventure',
 'Drama',
 'Adventure',
 'Biography',
 'Action',
 'Comedy',
 'Action',
 'Adventure',
 'Drama',
 'Crime',
 'Animation',
 'Drama',
 'Comedy',
 'Biography',
 'Crime',
 'Biography',
 'Comedy',
 'Animation',
 'Crime',
 'Adventure',
 'Adventure',
 'Crime',
 'Drama',
 'Comedy',
 'Action',
 'Drama',
 'Drama',
 'Action',
 'Action',
 'Biography',
 'Horror',
 'Drama',
 'Adventure',
 'Action',
 'Drama',
 'Adventure',
 'Crime',
 'Adventure',
 'Drama',
 'Adventure',
 'Action',
 'Drama',
 'Action',
 'Action',
 'Comedy',
 'Comedy',
 'Drama',
 'Drama',
 'Adventure',
 'Action',
 'Biography',
 'Comedy',
 'Crime',
 'Animation',
 'Crime',
 'Adventure',
 'Biography',
 'Action',
 'Comedy',
 'Action',
 'Action',
 'Biography',
 'Comedy',
 'Drama',
 'Drama',
 'Comedy',
 'Drama',
 'Drama',
 'Comedy',
 'Comedy',
 'Crime',
 'Crime',
 'Drama',
 'Adventure',
 'Biography',
 'Comedy',
 'Comedy',
 'Comedy',
 'Crime',
 'Comedy',
 'Adventure',
 'Biography',
 'Drama',
 'Horror',
 'Action',
 'Adventure',
 'Comedy',
 'Drama',
 'Action',
 'Drama',
 'Comedy',
 'Action',
 'Drama',
 'Adventure',
 'Action',
 'Crime',
 'Drama',
 'Drama',
 'Drama',
 'Adventure',
 'Drama',
 'Drama',
 'Comedy',
 'Drama',
 'Biography',
 'Animation',
 'Comedy',
 'Biography',
 'Biography',
 'Drama',
 'Drama',
 'Action',
 'Action',
 'Crime',
 'Comedy',
 'Drama',
 'Crime',
 'Crime',
 'Comedy',
 'Action',
 'Sci',
 'Drama',
 'Drama',
 'Crime',
 'Comedy',
 'Action',
 'Biography',
 'Drama',
 'Adventure',
 'Biography',
 'Crime',
 'Comedy',
 'Drama',
 'Crime',
 'Action',
 'Drama',
 'Action',
 'Adventure',
 'Drama',
 'Animation',
 'Biography',
 'Animation',
 'Drama',
 'Adventure',
 'Comedy',
 'Biography',
 'Drama',
 'Comedy',
 'Comedy',
 'Drama',
 'Drama',
 'Crime',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Comedy',
 'Drama',
 'Comedy',
 'Action',
 'Drama',
 'Crime',
 'Crime',
 'Drama',
 'Action',
 'Biography',
 'Drama',
 'Fantasy',
 'Drama',
 'Biography',
 'Action',
 'Action',
 'Drama',
 'Action',
 'Action',
 'Drama',
 'Adventure',
 'Action',
 'Action',
 'Action',
 'Drama',
 'Action',
 'Biography',
 'Biography',
 'Drama',
 'Adventure',
 'Action',
 'Documentary',
 'Drama',
 'Drama',
 'Biography',
 'Action',
 'Crime',
 'Drama',
 'Adventure',
 'Comedy',
 'Comedy',
 'Comedy',
 'Crime',
 'Drama',
 'Biography',
 'Drama',
 'Drama',
 'Comedy',
 'Adventure',
 'Comedy',
 'Adventure',
 'Action',
 'Adventure',
 'Drama',
 'Crime',
 'Action',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Crime',
 'Drama',
 'Adventure',
 'Action',
 'Action',
 'Action',
 'Biography',
 'Action',
 'Crime',
 'Crime',
 'Comedy',
 'Biography',
 'Crime',
 'Biography',
 'Action',
 'Comedy',
 'Comedy',
 'Action',
 'Action',
 'Mystery',
 'Crime',
 'Action',
 'Comedy',
 'Drama',
 'Drama',
 'Comedy',
 'Action',
 'Drama',
 'Drama',
 'Drama',
 'Comedy',
 'Comedy',
 'Comedy',
 'Drama',
 'Action',
 'Drama',
 'Fantasy',
 'Crime',
 'Comedy',
 'Crime',
 'Drama',
 'Action',
 'Drama',
 'Crime',
 'Documentary',
 'Biography',
 'Comedy',
 'Biography',
 'Animation',
 'Adventure',
 'Comedy',
 'Animation',
 'Adventure',
 'Horror',
 'Drama',
 'Horror',
 'Crime',
 'Action',
 'Drama',
 'Drama',
 'Biography',
 'Biography',
 'Comedy',
 'Crime',
 'Crime',
 'Action',
 'Crime',
 'Crime',
 'Horror',
 'Drama',
 'Animation',
 'Drama',
 'Drama',
 'Adventure',
 'Biography',
 'Drama',
 'Drama',
 'Biography',
 'Comedy',
 'Drama',
 'Adventure',
 'Biography',
 'Adventure',
 'Biography',
 'Biography',
 'Biography',
 'Crime',
 'Drama',
 'Drama',
 'Biography',
 'Action',
 'Adventure',
 'Action',
 'Adventure',
 'Drama',
 'Adventure',
 'Action',
 'Comedy',
 'Adventure',
 'Comedy',
 'Drama',
 'Action',
 'Crime',
 'Adventure',
 'Biography',
 'Action',
 'Biography',
 'Comedy',
 'Action',
 'Adventure',
 'Comedy',
 'Drama',
 'Action',
 'Crime',
 'Crime',
 'Drama',
 'Biography',
 'Comedy',
 'Comedy',
 'Fantasy',
 'Crime',
 'Drama',
 'Comedy',
 'Comedy',
 'Action',
 'Crime',
 'Comedy',
 'Crime',
 'Comedy',
 'Crime',
 'Drama',
 'Action',
 'Drama',
 'Adventure',
 'Crime',
 'Crime',
 'Drama',
 'Action',
 'Crime',
 'Comedy',
 'Drama',
 'Drama',
 'Action',
 'Drama',
 'Drama',
 'Comedy',
 'Drama',
 'Adventure',
 'Biography',
 'Crime',
 'Biography',
 'Action',
 'Crime',
 'Biography',
 'Crime',
 'Biography',
 'Action',
 'Drama',
 'Adventure',
 'Comedy',
 'Comedy',
 'Action',
 'Comedy',
 'Drama',
 'Adventure',
 'Animation',
 'Drama',
 'Drama',
 'Comedy',
 'Action',
 'Crime',
 'Comedy',
 'Action',
 'Action',
 'Drama',
 'Adventure',
 'Crime',
 'Biography',
 'Action',
 'Adventure',
 'Action',
 'Horror',
 'Action',
 'Adventure',
 'Documentary',
 'Drama',
 'Biography',
 'Drama',
 'Drama',
 'Drama',
 'Action',
 'Crime',
 'Crime',
 'Adventure',
 'Action',
 'Drama',
 'Biography',
 'Comedy',
 'Action',
 'Drama',
 'Action',
 'Adventure',
 'Crime',
 'Adventure',
 'Drama',
 'Comedy',
 'Action',
 'Drama',
 'Biography',
 'Comedy',
 'Biography',
 'Mystery',
 'Comedy',
 'Crime',
 'Action',
 'Mystery',
 'Crime',
 'Comedy',
 'Drama',
 'Comedy',
 'Adventure',
 'Crime',
 'Crime',
 'Comedy',
 'Crime',
 'Biography',
 'Comedy',
 'Drama',
 'Adventure',
 'Drama',
 'Comedy',
 'Adventure',
 'Action',
 'Crime',
 'Comedy',
 'Comedy',
 'Action',
 'Biography',
 'Adventure',
 'Drama',
 'Comedy',
 'Comedy',
 'Comedy',
 'Adventure',
 'Action',
 'Crime',
 'Drama',
 'Drama',
 'Comedy',
 'Action',
 'Animation',
 'Drama',
 'Drama',
 'Crime',
 'Adventure',
 'Drama',
 'Action',
 'Action',
 'Comedy',
 'Adventure',
 'Drama',
 'Drama',
 'Comedy',
 'Adventure',
 'Adventure',
 'Adventure',
 'Action',
 'Action',
 'Action',
 'Animation',
 'Drama',
 'Action',
 'Western',
 'Adventure',
 'Comedy',
 'Action',
 'Crime',
 'Drama',
 'Drama',
 'Comedy',
 'Action',
 'Adventure',
 'Action',
 'Crime',
 'Comedy',
 'Drama',
 'Biography',
 'Comedy',
 'Drama',
 'Comedy',
 'Action',
 'Comedy',
 'Action',
 'Horror',
 'Comedy',
 'Horror',
 'Drama',
 'Mystery',
 'Action',
 'Drama',
 'Drama',
 'Biography',
 'Action',
 'Adventure',
 'Adventure',
 'Adventure',
 'Drama',
 'Crime',
 'Action',
 'Crime',
 'Comedy',
 'Drama',
 'Action',
 'Drama',
 'Crime',
 'Biography',
 'Drama',
 'Comedy',
 'Crime',
 'Action',
 'Action',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Action',
 'Action',
 'Comedy',
 'Drama',
 'Drama',
 'Adventure',
 'Comedy',
 'Biography',
 'Action',
 'Adventure',
 'Action',
 'Action',
 'Drama',
 'Comedy',
 'Biography',
 'Drama',
 'Animation',
 'Adventure',
 'Action',
 'Comedy',
 'Crime',
 'Comedy',
 'Action',
 'Drama',
 'Adventure',
 'Comedy',
 'Musical',
 'Action',
 'Drama',
 'Action',
 'Adventure',
 'Biography',
 'Biography',
 'Adventure',
 'Adventure',
 'Drama',
 'Biography',
 'Horror',
 'Comedy',
 'Comedy',
 'Action',
 'Action',
 'Comedy',
 'Comedy',
 'Action',
 'Comedy',
 'Adventure',
 'Adventure',
 'Comedy',
 'Adventure',
 'Action',
 'Action',
 'Drama',
 'Biography',
 'Action',
 'Drama',
 'Drama',
 'Biography',
 'Action',
 'Drama',
 'Comedy',
 'Drama',
 'Crime',
 'Adventure',
 'Comedy',
 'Comedy',
 'Fantasy',
 'Drama',
 'Adventure',
 'Biography',
 'Crime',
 'Biography',
 'Drama',
 'Drama',
 'Biography',
 'Comedy',
 'Drama',
 'Action',
 'Action',
 'Adventure',
 'Sci',
 'Animation',
 'Biography',
 'Drama',
 'Action',
 'Drama',
 'Comedy',
 'Comedy',
 'Action',
 'Adventure',
 'Action',
 'Crime',
 'Mystery',
 'Biography',
 'Comedy',
 'Biography',
 'Adventure',
 'Comedy',
 'Action',
 'Adventure',
 'Comedy',
 'Comedy',
 'Comedy',
 'Action',
 'Biography',
 'Comedy',
 'Drama',
 'Animation',
 'Drama',
 'Drama',
 'Drama',
 'Crime',
 'Action',
 'Comedy',
 'Drama',
 'Action',
 'Drama',
 'Adventure',
 'Comedy',
 'Drama',
 'Horror',
 'Mystery',
 'Action',
 'Action',
 'Drama',
 'Action',
 'Drama',
 'Action',
 'Drama',
 'Adventure',
 'Adventure',
 'Animation',
 'Action',
 'Drama',
 'Biography',
 'Comedy',
 'Romance',
 'Crime',
 'Animation',
 'Adventure',
 'Comedy',
 'Drama',
 'Action',
 'Biography',
 'Biography',
 'Action',
 'Comedy',
 'Comedy',
 'Drama',
 'Action',
 'Comedy',
 'Action',
 'Action',
 'Comedy',
 'Comedy',
 'Action',
 'Action',
 'Action',
 'Drama',
 'Crime',
 'Drama',
 'Adventure',
 'Action',
 'Action',
 'Drama',
 'Action',
 'Biography',
 'Action',
 'Horror',
 'Biography',
 'Drama',
 'Biography',
 'Drama',
 'Crime',
 'Adventure',
 'Action',
 'Fantasy',
 'Drama',
 'Crime',
 'Fantasy',
 'Action',
 'Action',
 'Crime',
 'Adventure',
 'Action',
 'Crime',
 'Comedy',
 'Action',
 'Adventure',
 'Action',
 'Drama',
 'Comedy',
 'Biography',
 'Biography',
 'Comedy',
 'Action',
 'Biography',
 'Drama',
 'Action',
 'Comedy',
 'Drama',
 'Adventure',
 'Comedy',
 'Drama',
 'Drama',
 'Comedy',
 ...]
In [99]:
genre_2
Out[99]:
['Drama',
 'Drama',
 'Crime',
 'Drama',
 'Adventure',
 'Drama',
 'Western',
 'Drama',
 'Drama',
 'Adventure',
 'Adventure',
 'Adventure',
 'Drama',
 'Adventure',
 'Sci',
 'Adventure',
 'Drama',
 'Drama',
 'Adventure',
 'Crime',
 'Drama',
 'Drama',
 'Animation',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Mystery',
 'Thriller',
 'Drama',
 'Sci',
 'Family',
 'Sci',
 'Western',
 'Music',
 'Animation',
 'Mystery',
 'Adventure',
 'War',
 'Thriller',
 'Drama',
 'Drama',
 'Thriller',
 'Comedy',
 'Adventure',
 'Adventure',
 'Drama',
 'Drama',
 'Mystery',
 'Animation',
 'Drama',
 'Drama',
 'Biography',
 'Mystery',
 'Drama',
 'Romance',
 'Adventure',
 'Drama',
 'Animation',
 'Fantasy',
 'Animation',
 'Crime',
 'Drama',
 'Adventure',
 'Drama',
 'Drama',
 'Sci',
 'Crime',
 'Music',
 'Drama',
 'Animation',
 'Drama',
 'Drama',
 'Animation',
 'Comedy',
 'Adventure',
 'Drama',
 'Western',
 'Drama',
 'Animation',
 'Mystery',
 'Drama',
 'Adventure',
 'Fi',
 'Fantasy',
 'Mystery',
 'Animation',
 'Animation',
 'Drama',
 'Biography',
 'Drama',
 'Thriller',
 'Drama',
 'Mystery',
 'Crime',
 'Drama',
 'Mystery',
 'Comedy',
 'Sport',
 'History',
 'Crime',
 'Drama',
 'Crime',
 'Animation',
 'Drama',
 'Crime',
 'Thriller',
 'Family',
 'Romance',
 'Crime',
 'Adventure',
 'Drama',
 'Drama',
 'Drama',
 'History',
 'Sport',
 'Family',
 'Drama',
 'Drama',
 'Drama',
 'Mystery',
 'Fantasy',
 'Thriller',
 'Sci',
 'Drama',
 'Sci',
 'Thriller',
 'Drama',
 'Drama',
 'Comedy',
 'Drama',
 'Adventure',
 'Drama',
 'Mystery',
 'Adventure',
 'Sport',
 'Biography',
 'Action',
 'Drama',
 'Romance',
 'Adventure',
 'Drama',
 'War',
 'Drama',
 'Sci',
 'Animation',
 'Crime',
 'Animation',
 'Romance',
 'Adventure',
 'Horror',
 'Crime',
 'Family',
 'Comedy',
 'Drama',
 'Adventure',
 'Animation',
 'Horror',
 'Sci',
 'Drama',
 'Drama',
 'Romance',
 'Drama',
 'Biography',
 'Drama',
 'Adventure',
 'Drama',
 'Romance',
 'Drama',
 'Comedy',
 'Romance',
 'Romance',
 'Sci',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Adventure',
 'Crime',
 'Drama',
 'Drama',
 'Drama',
 'Documentary',
 'Drama',
 'History',
 'Drama',
 'Mystery',
 'Thriller',
 'Biography',
 'Drama',
 'Drama',
 'Adventure',
 'Drama',
 'Adventure',
 'Crime',
 'Romance',
 'Drama',
 'Drama',
 'Adventure',
 'Drama',
 'Crime',
 'Drama',
 'Drama',
 'Drama',
 'Family',
 'Drama',
 'Drama',
 'Comedy',
 'Comedy',
 'History',
 'Drama',
 'Drama',
 'Romance',
 'Romance',
 'Music',
 'Fantasy',
 'Adventure',
 'Drama',
 'Mystery',
 'Thriller',
 'Drama',
 'Romance',
 'Drama',
 'Drama',
 'Sport',
 'Adventure',
 'Mystery',
 'Comedy',
 'Animation',
 'Romance',
 'Music',
 'Adventure',
 'Drama',
 'Drama',
 'History',
 'Drama',
 'Musical',
 'Crime',
 'Animation',
 'Adventure',
 'Comedy',
 'Drama',
 'Adventure',
 'Sci',
 'Thriller',
 'Adventure',
 'Drama',
 'Sci',
 'Romance',
 'Fantasy',
 'Drama',
 'Animation',
 'Mystery',
 'Comedy',
 'Drama',
 'Comedy',
 'Drama',
 'Adventure',
 'Comedy',
 'Mystery',
 'Drama',
 'Family',
 'War',
 'Fantasy',
 'Crime',
 'Drama',
 'Drama',
 'Comedy',
 'Comedy',
 'Drama',
 'Animation',
 'Animation',
 'Drama',
 'Drama',
 'Comedy',
 'Adventure',
 'Sci',
 'Fantasy',
 'Horror',
 'Adventure',
 'Comedy',
 'Mystery',
 'Drama',
 'Drama',
 'Adventure',
 'Drama',
 'Animation',
 'Drama',
 'Drama',
 'Thriller',
 'Family',
 'Adventure',
 'Drama',
 'Adventure',
 'Biography',
 'Drama',
 'Drama',
 'Romance',
 'Drama',
 'Crime',
 'Adventure',
 'Crime',
 'Comedy',
 'Drama',
 'Comedy',
 'Drama',
 'Comedy',
 'Crime',
 'Mystery',
 'Drama',
 'Adventure',
 'Adventure',
 'Drama',
 'Comedy',
 'Romance',
 'Fantasy',
 'Drama',
 'Romance',
 'Romance',
 'Western',
 'Family',
 'Thriller',
 'Drama',
 'Mystery',
 'Comedy',
 'Drama',
 'Fantasy',
 'Drama',
 'Musical',
 'Drama',
 'Drama',
 'Animation',
 'Drama',
 'Romance',
 'Mystery',
 'Crime',
 'Family',
 'Comedy',
 'Mystery',
 'Drama',
 'Romance',
 'Drama',
 'Drama',
 'Drama',
 'Comedy',
 'Adventure',
 'Drama',
 'Drama',
 'Mystery',
 'Drama',
 'Comedy',
 'Drama',
 'Romance',
 'Drama',
 'Thriller',
 'Drama',
 'Family',
 'Drama',
 'Drama',
 'Drama',
 'Romance',
 'Music',
 'Adventure',
 'Comedy',
 'Drama',
 'Drama',
 'Romance',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Fi',
 'History',
 'Drama',
 'Drama',
 'Documentary',
 'Mystery',
 'Drama',
 'Music',
 'Comedy',
 'Drama',
 'Mystery',
 'Drama',
 'Drama',
 'Drama',
 'Adventure',
 'Sport',
 'Drama',
 'Drama',
 'Sci',
 'Family',
 'Drama',
 'Comedy',
 'Romance',
 'Drama',
 'Drama',
 'Drama',
 'Romance',
 'Drama',
 'Drama',
 'Romance',
 'War',
 'Drama',
 'History',
 'Romance',
 'History',
 'Drama',
 'Drama',
 'Romance',
 'Drama',
 'Drama',
 'War',
 'Drama',
 'Drama',
 'Fantasy',
 'Horror',
 'Drama',
 'Musical',
 'Horror',
 'Musical',
 'Drama',
 'Adventure',
 'Adventure',
 'Thriller',
 'Adventure',
 'Crime',
 'Romance',
 'Animation',
 'Adventure',
 'Crime',
 'Adventure',
 'History',
 'Adventure',
 'Drama',
 'Drama',
 'Music',
 'Drama',
 'Drama',
 'Documentary',
 'History',
 'Romance',
 'Crime',
 'Adventure',
 'Drama',
 'Drama',
 'Animation',
 'Drama',
 'Fantasy',
 'Drama',
 'Drama',
 'Romance',
 'Crime',
 'Thriller',
 'Family',
 'Comedy',
 'Family',
 'Comedy',
 'Sci',
 'Adventure',
 'Biography',
 'History',
 'Drama',
 'Adventure',
 'Horror',
 'History',
 'Mystery',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Adventure',
 'Comedy',
 'Adventure',
 'Crime',
 'Comedy',
 'Drama',
 'Drama',
 'Crime',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Adventure',
 'Biography',
 'Sci',
 'Drama',
 'Adventure',
 'Drama',
 'Sport',
 'Romance',
 'Comedy',
 'Adventure',
 'Thriller',
 'Romance',
 'Romance',
 'Crime',
 'Crime',
 'Crime',
 'Music',
 'Adventure',
 'Drama',
 'Horror',
 'Drama',
 'Family',
 'Drama',
 'Romance',
 'Sci',
 'Romance',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Comedy',
 'Family',
 'Fantasy',
 'Family',
 'Animation',
 'Thriller',
 'Drama',
 'Mystery',
 'Thriller',
 'Adventure',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Horror',
 'Sci',
 'Comedy',
 'Mystery',
 'Mystery',
 'Comedy',
 'Comedy',
 'Mystery',
 'Mystery',
 'Crime',
 'Drama',
 'Family',
 'Crime',
 'Comedy',
 'Drama',
 'Drama',
 'Crime',
 'Drama',
 'Drama',
 'Mystery',
 'Romance',
 'Drama',
 'Drama',
 'Fantasy',
 'Adventure',
 'Family',
 'Drama',
 'Family',
 'Comedy',
 'Drama',
 'Animation',
 'Drama',
 'Thriller',
 'Crime',
 'Drama',
 'Family',
 'Drama',
 'Adventure',
 'Crime',
 'Drama',
 'Adventure',
 'Comedy',
 'Drama',
 'Musical',
 'Crime',
 'Drama',
 'Drama',
 'Romance',
 'Drama',
 'Sport',
 'Comedy',
 'Horror',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Horror',
 'Drama',
 'Drama',
 'Drama',
 'Comedy',
 'Drama',
 'Romance',
 'Adventure',
 'Romance',
 'Comedy',
 'Drama',
 'Drama',
 'Mystery',
 'Biography',
 'Drama',
 'Drama',
 'History',
 'Fantasy',
 'Adventure',
 'History',
 'Romance',
 'Drama',
 'Mystery',
 'Comedy',
 'Drama',
 'Drama',
 'Comedy',
 'Adventure',
 'Drama',
 'Crime',
 'Drama',
 'Drama',
 'Comedy',
 'Music',
 'Comedy',
 'Drama',
 'Drama',
 'Adventure',
 'Drama',
 'Drama',
 'Biography',
 'Drama',
 'Romance',
 'Music',
 'Comedy',
 'Adventure',
 'Drama',
 'Drama',
 'Drama',
 'Adventure',
 'Romance',
 'Comedy',
 'Drama',
 'Drama',
 'Adventure',
 'Comedy',
 'Adventure',
 'Sci',
 'Adventure',
 'Animation',
 'Music',
 'Drama',
 'Drama',
 'History',
 'Drama',
 'Sci',
 'Adventure',
 'Drama',
 'Drama',
 'Drama',
 'Adventure',
 'Mystery',
 'Crime',
 'Crime',
 'Comedy',
 'Drama',
 'Animation',
 'Sci',
 'Drama',
 'Animation',
 'Music',
 'Drama',
 'Crime',
 'Drama',
 'Drama',
 'Comedy',
 'Drama',
 'Thriller',
 'Drama',
 'Drama',
 'Adventure',
 'Sci',
 'Drama',
 'Drama',
 'Fantasy',
 'Drama',
 'Comedy',
 'Fantasy',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Comedy',
 'Drama',
 'Comedy',
 'Romance',
 'Documentary',
 'Animation',
 'Crime',
 'Drama',
 'Fantasy',
 'Drama',
 'Adventure',
 'Comedy',
 'Comedy',
 'Romance',
 'Drama',
 'Crime',
 'Crime',
 'Drama',
 'Adventure',
 'Drama',
 'History',
 'Thriller',
 'Drama',
 'Comedy',
 'Family',
 'Music',
 'Romance',
 'Drama',
 'Drama',
 'Mystery',
 'Adventure',
 'Crime',
 'Drama',
 'Biography',
 'Drama',
 'Drama',
 'Drama',
 'Animation',
 'Biography',
 'Animation',
 'Adventure',
 'Biography',
 'Drama',
 'Comedy',
 'Family',
 'Adventure',
 'Western',
 'Animation',
 'Drama',
 'Crime',
 'Mystery',
 'Romance',
 'Romance',
 'Drama',
 'Crime',
 'Comedy',
 'Adventure',
 'Thriller',
 'Drama',
 'Fantasy',
 'Drama',
 'Drama',
 'Horror',
 'Sport',
 'Adventure',
 'Fantasy',
 'Crime',
 'Mystery',
 'Comedy',
 'Horror',
 'War',
 'Thriller',
 'Adventure',
 'Horror',
 'Drama',
 'Drama',
 'Crime',
 'Horror',
 'Animation',
 'Drama',
 'Sport',
 'Drama',
 'Crime',
 'Drama',
 'Drama',
 'Romance',
 'Crime',
 'Drama',
 'Drama',
 'Drama',
 'Mystery',
 'Romance',
 'Drama',
 'Crime',
 'Sci',
 'Drama',
 'Fantasy',
 'Romance',
 'Drama',
 'Comedy',
 'Adventure',
 'Drama',
 'Mystery',
 'Drama',
 'Adventure',
 'Drama',
 'Comedy',
 'Adventure',
 'Animation',
 'Crime',
 'Adventure',
 'Romance',
 'Music',
 'Drama',
 'Fantasy',
 'Comedy',
 'Animation',
 'Comedy',
 'Drama',
 'Drama',
 'Drama',
 'Adventure',
 'Sport',
 'Drama',
 'Drama',
 'Romance',
 'Sci',
 'Romance',
 'Drama',
 'Animation',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'History',
 'Drama',
 'Mystery',
 'Comedy',
 'Crime',
 'Adventure',
 'Crime',
 'Drama',
 'Drama',
 'Comedy',
 'Crime',
 'Animation',
 'Animation',
 'Romance',
 'Animation',
 'Adventure',
 'Adventure',
 'History',
 'Drama',
 'Adventure',
 'Romance',
 'Drama',
 'Drama',
 'Sci',
 'Romance',
 'Drama',
 'Sport',
 'Horror',
 'Drama',
 'Drama',
 'Horror',
 'Horror',
 'Drama',
 'Biography',
 'Comedy',
 'Drama',
 'Drama',
 'Mystery',
 'Fantasy',
 'Drama',
 'Romance',
 'Romance',
 'Drama',
 'Adventure',
 'Animation',
 'Fi',
 'Drama',
 'Drama',
 'Mystery',
 'Drama',
 'Drama',
 'Drama',
 'Drama',
 'Comedy',
 'Comedy',
 'Adventure',
 'Drama',
 'Sci',
 'Drama',
 'Drama',
 'Drama',
 'Comedy',
 'Drama',
 'Thriller',
 'Comedy',
 'Music',
 'Crime',
 'Crime',
 'Adventure',
 'Drama',
 'Drama',
 'Drama',
 'Comedy',
 'Romance',
 'Drama',
 'Thriller',
 'Drama',
 'Comedy',
 'Drama',
 'Romance',
 'Mystery',
 'Sci',
 'Biography',
 'Drama',
 'Drama',
 'Sci',
 'Thriller',
 'Horror',
 'Drama',
 'War',
 'Adventure',
 'Sci',
 'Drama',
 'Romance',
 'Animation',
 'Comedy',
 'Family',
 'Adventure',
 'Mystery',
 'Drama',
 'Drama',
 'Sci',
 'Drama',
 'Comedy',
 'Biography',
 'Crime',
 'Fantasy',
 'Crime',
 'Drama',
 'Comedy',
 'Adventure',
 'Crime',
 'Drama',
 'History',
 'Comedy',
 'Romance',
 'Crime',
 'Drama',
 'Romance',
 'Romance',
 'Adventure',
 'Thriller',
 'Drama',
 'History',
 'Thriller',
 'Romance',
 'Animation',
 'Sci',
 'Action',
 'Romance',
 'Adventure',
 'Drama',
 'Comedy',
 'Mystery',
 'Drama',
 'Drama',
 'Drama',
 'Musical',
 'Drama',
 'Animation',
 'Adventure',
 'Horror',
 'Horror',
 'Drama',
 'Horror',
 'Adventure',
 'Drama',
 'Drama',
 'Biography',
 'Crime',
 'Drama',
 'Drama',
 'Adventure',
 'Animation',
 'Crime',
 'Family',
 'Drama',
 'Crime',
 'Crime',
 'Fantasy',
 'Comedy',
 'Crime',
 'Fantasy',
 'Adventure',
 'Comedy',
 'Music',
 'Animation',
 'Drama',
 'Sci',
 'Music',
 'Drama',
 ...]
In [111]:
F['genre_1']=genre_1
F['genre_2']=genre_2
F
Out[111]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit Rank genre_1 genre_2
0 Frank Darabont 199.0 28.0 Crime|Drama Morgan Freeman The Shawshank Redemption 1689764.0 4144.0 English 25.0 1994.0 9.3 108000.0 3.0 1 Crime Drama
1 Francis Ford Coppola 208.0 134.0 Crime|Drama Al Pacino The Godfather 1155770.0 2238.0 English 6.0 1972.0 9.2 43000.0 128.0 2 Crime Drama
2 Christopher Nolan 645.0 533.0 Action|Crime|Drama|Thriller Christian Bale The Dark Knight 1676169.0 4667.0 English 185.0 2008.0 9.0 37000.0 348.0 3 Action Crime
3 Francis Ford Coppola 149.0 57.0 Crime|Drama Robert De Niro The Godfather: Part II 790926.0 650.0 English 13.0 1974.0 9.0 14000.0 44.0 4 Crime Drama
4 Peter Jackson 328.0 377.0 Action|Adventure|Drama|Fantasy Orlando Bloom The Lord of the Rings: The Return of the King 1215718.0 3189.0 English 94.0 2003.0 8.9 16000.0 283.0 5 Action Adventure
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
3780 Jason Friedberg 112.0 39.0 Adventure|Comedy David Carradine Epic Movie 89687.0 666.0 English 20.0 2007.0 2.3 0.0 19.0 3781 Adventure Comedy
3781 Lawrence Guterman 78.0 17.0 Comedy|Family|Fantasy Jamie Kennedy Son of the Mask 40751.0 239.0 English 84.0 2005.0 2.2 881.0 -67.0 3782 Comedy Family
3786 Bob Clark 32.0 9.0 Comedy|Family|Sci-Fi Scott Baio Superbabies: Baby Geniuses 2 25371.0 129.0 English 20.0 2004.0 1.9 0.0 -11.0 3787 Comedy Family
3787 Jason Friedberg 111.0 14.0 Comedy Carmen Electra Disaster Movie 74945.0 359.0 English 25.0 2008.0 1.9 0.0 -11.0 3788 Comedy Comedy
3788 Jon M. Chu 84.0 73.0 Documentary|Music Usher Raymond Justin Bieber: Never Say Never 74351.0 233.0 English 13.0 2011.0 1.6 62000.0 60.0 3789 Documentary Music

2542 rows × 17 columns

In [129]:
movies_by_segment = F.groupby(['genre_1','genre_2']).count()
movies_by_segment.head()
Out[129]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit Rank
genre_1 genre_2
Action Action 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4
Adventure 346 346 346 346 346 346 346 346 346 346 346 346 346 346 346
Animation 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7
Biography 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Comedy 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93

Checkpoint 5: Well, as it turns out. Family + Sci-Fi is the most popular combo of genres out there!

  • ### Subtask 3.7: Find the critic-favorite and audience-favorite actors

    1. Create three new dataframes namely, Meryl_Streep, Leo_Caprio, and Brad_Pitt which contain the movies in which the actors: 'Meryl Streep', 'Leonardo DiCaprio', and 'Brad Pitt' are the lead actors. Use only the actor_1_name column for extraction. Also, make sure that you use the names 'Meryl Streep', 'Leonardo DiCaprio', and 'Brad Pitt' for the said extraction.
    2. Append the rows of all these dataframes and store them in a new dataframe named Combined.
    3. Group the combined dataframe using the actor_1_name column.
    4. Find the mean of the num_critic_for_reviews and num_users_for_review and identify the actors which have the highest mean.
    5. Observe the change in number of voted users over decades using a bar chart. Create a column called decade which represents the decade to which every movie belongs to. For example, the title_year year 1923, 1925 should be stored as 1920s. Sort the dataframe based on the column decade, group it by decade and find the sum of users voted in each decade. Store this in a new data frame called df_by_decade.
In [137]:
# Write your code for creating three new dataframes here
# Include all movies in which Meryl Streep is the lead
Meryl_Streep = F.where(F['actor_1_name']=='Meryl Streep').dropna()
Meryl_Streep
Out[137]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit Rank genre_1 genre_2
467 Stephen Daldry 174.0 41.0 Drama|Romance Meryl Streep The Hours 102123.0 660.0 English 25.0 2002.0 7.6 0.0 16.0 468.0 Drama Romance
997 Sydney Pollack 66.0 87.0 Biography|Drama|Romance Meryl Streep Out of Africa 52339.0 200.0 English 31.0 1985.0 7.2 0.0 56.0 998.0 Biography Drama
1158 Nora Ephron 252.0 94.0 Biography|Drama|Romance Meryl Streep Julie & Julia 79264.0 277.0 English 40.0 2009.0 7.0 13000.0 54.0 1159.0 Biography Drama
1534 David Frankel 208.0 124.0 Comedy|Drama|Romance Meryl Streep The Devil Wears Prada 286178.0 631.0 English 35.0 2006.0 6.8 0.0 89.0 1535.0 Comedy Drama
1858 Nancy Meyers 187.0 112.0 Comedy|Drama|Romance Meryl Streep It's Complicated 69860.0 214.0 English 85.0 2009.0 6.6 0.0 27.0 1859.0 Comedy Drama
2192 Phyllida Lloyd 331.0 29.0 Biography|Drama|History Meryl Streep The Iron Lady 82327.0 350.0 English 13.0 2011.0 6.4 18000.0 16.0 2193.0 Biography Drama
2241 Curtis Hanson 42.0 46.0 Action|Adventure|Crime|Thriller Meryl Streep The River Wild 32544.0 69.0 English 45.0 1994.0 6.3 0.0 1.0 2242.0 Action Adventure
2267 David Frankel 234.0 63.0 Comedy|Drama|Romance Meryl Streep Hope Springs 34258.0 178.0 English 30.0 2012.0 6.3 0.0 33.0 2268.0 Comedy Drama
2470 Robert Redford 227.0 14.0 Drama|Thriller|War Meryl Streep Lions for Lambs 41170.0 298.0 English 35.0 2007.0 6.2 0.0 -21.0 2471.0 Drama Thriller
In [139]:
# Include all movies in which Leo_Caprio is the lead
Leo_Caprio = F.where(F['actor_1_name']=='Leonardo DiCaprio').dropna()
Leo_Caprio
Out[139]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit Rank genre_1 genre_2
9 Christopher Nolan 642.0 292.0 Action|Adventure|Sci-Fi|Thriller Leonardo DiCaprio Inception 1468200.0 2803.0 English 160.0 2010.0 8.8 175000.0 132.0 10.0 Action Adventure
28 Martin Scorsese 352.0 132.0 Crime|Drama|Thriller Leonardo DiCaprio The Departed 873649.0 2054.0 English 90.0 2006.0 8.5 29000.0 42.0 29.0 Crime Drama
35 Quentin Tarantino 765.0 162.0 Drama|Western Leonardo DiCaprio Django Unchained 955174.0 1193.0 English 100.0 2012.0 8.5 199000.0 62.0 36.0 Drama Western
103 Martin Scorsese 606.0 116.0 Biography|Comedy|Crime|Drama Leonardo DiCaprio The Wolf of Wall Street 780588.0 1138.0 English 100.0 2013.0 8.2 138000.0 16.0 104.0 Biography Comedy
136 Martin Scorsese 490.0 127.0 Mystery|Thriller Leonardo DiCaprio Shutter Island 786092.0 964.0 English 80.0 2010.0 8.1 53000.0 47.0 137.0 Mystery Thriller
137 Alejandro G. Iñárritu 556.0 183.0 Adventure|Drama|Thriller|Western Leonardo DiCaprio The Revenant 406020.0 1188.0 English 135.0 2015.0 8.1 190000.0 48.0 138.0 Adventure Drama
175 Edward Zwick 166.0 57.0 Adventure|Drama|Thriller Leonardo DiCaprio Blood Diamond 400292.0 657.0 English 100.0 2006.0 8.0 14000.0 -43.0 176.0 Adventure Drama
212 Steven Spielberg 194.0 164.0 Biography|Crime|Drama Leonardo DiCaprio Catch Me If You Can 525801.0 667.0 English 52.0 2002.0 8.0 15000.0 112.0 213.0 Biography Crime
432 James Cameron 315.0 658.0 Drama|Romance Leonardo DiCaprio Titanic 793059.0 2528.0 English 200.0 1997.0 7.7 26000.0 458.0 433.0 Drama Romance
566 Martin Scorsese 233.0 77.0 Crime|Drama Leonardo DiCaprio Gangs of New York 314033.0 1166.0 English 100.0 2002.0 7.5 0.0 -23.0 567.0 Crime Drama
616 Martin Scorsese 267.0 102.0 Biography|Drama Leonardo DiCaprio The Aviator 264318.0 799.0 English 110.0 2004.0 7.5 0.0 -8.0 617.0 Biography Drama
822 Baz Luhrmann 490.0 144.0 Drama|Romance Leonardo DiCaprio The Great Gatsby 362933.0 753.0 English 105.0 2013.0 7.3 115000.0 39.0 823.0 Drama Romance
857 Sam Mendes 323.0 22.0 Drama|Romance Leonardo DiCaprio Revolutionary Road 152591.0 414.0 English 35.0 2008.0 7.3 0.0 -13.0 858.0 Drama Romance
1090 Ridley Scott 238.0 39.0 Action|Drama|Thriller Leonardo DiCaprio Body of Lies 174248.0 263.0 English 70.0 2008.0 7.1 0.0 -31.0 1091.0 Action Drama
1570 Baz Luhrmann 106.0 46.0 Drama|Romance Leonardo DiCaprio Romeo + Juliet 167750.0 506.0 English 14.0 1996.0 6.8 10000.0 32.0 1571.0 Drama Romance
1789 Danny Boyle 118.0 39.0 Adventure|Drama|Thriller Leonardo DiCaprio The Beach 176169.0 548.0 English 50.0 2000.0 6.6 0.0 -11.0 1790.0 Adventure Drama
1908 Clint Eastwood 392.0 37.0 Biography|Crime|Drama Leonardo DiCaprio J. Edgar 102728.0 279.0 English 35.0 2011.0 6.6 16000.0 2.0 1909.0 Biography Crime
2071 Sam Raimi 63.0 18.0 Action|Thriller|Western Leonardo DiCaprio The Quick and the Dead 69197.0 216.0 English 32.0 1995.0 6.4 0.0 -14.0 2072.0 Action Thriller
2189 Randall Wallace 83.0 56.0 Action|Adventure Leonardo DiCaprio The Man in the Iron Mask 125219.0 244.0 English 35.0 1998.0 6.4 0.0 21.0 2190.0 Action Adventure
In [140]:
# Include all movies in which Brad_Pitt is the lead
Brad_Pitt = F.where(F['actor_1_name']=='Brad Pitt').dropna()
Brad_Pitt
Out[140]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit Rank genre_1 genre_2
8 David Fincher 315.0 37.0 Drama Brad Pitt Fight Club 1347461.0 2968.0 English 63.0 1999.0 8.8 48000.0 -26.0 9.0 Drama Drama
206 Tony Scott 122.0 12.0 Action|Crime|Drama|Romance|Thriller Brad Pitt True Romance 163492.0 460.0 English 13.0 1993.0 8.0 15000.0 -1.0 207.0 Action Crime
292 David Fincher 362.0 127.0 Drama|Fantasy|Romance Brad Pitt The Curious Case of Benjamin Button 459346.0 822.0 English 150.0 2008.0 7.8 23000.0 -23.0 293.0 Drama Fantasy
341 Steven Soderbergh 186.0 183.0 Crime|Thriller Brad Pitt Ocean's Eleven 402645.0 845.0 English 85.0 2001.0 7.8 0.0 98.0 342.0 Crime Thriller
449 David Ayer 406.0 85.0 Action|Drama|War Brad Pitt Fury 303185.0 701.0 English 68.0 2014.0 7.6 82000.0 17.0 450.0 Action Drama
454 Neil Jordan 120.0 105.0 Drama|Fantasy|Horror Brad Pitt Interview with the Vampire: The Vampire Chroni... 239752.0 406.0 English 60.0 1994.0 7.6 11000.0 45.0 455.0 Drama Fantasy
588 Alejandro G. Iñárritu 285.0 34.0 Drama Brad Pitt Babel 243799.0 908.0 English 25.0 2006.0 7.5 0.0 9.0 589.0 Drama Drama
617 Andrew Dominik 273.0 3.0 Biography|Crime|Drama|History|Western Brad Pitt The Assassination of Jesse James by the Coward... 136104.0 415.0 English 30.0 2007.0 7.5 0.0 -27.0 618.0 Biography Crime
925 Wolfgang Petersen 220.0 133.0 Adventure Brad Pitt Troy 381672.0 1694.0 English 175.0 2004.0 7.2 0.0 -42.0 926.0 Adventure Adventure
1175 Jean-Jacques Annaud 76.0 37.0 Adventure|Biography|Drama|History|War Brad Pitt Seven Years in Tibet 96385.0 119.0 English 70.0 1997.0 7.0 0.0 -33.0 1176.0 Adventure Biography
1278 Tony Scott 142.0 0.0 Action|Crime|Thriller Brad Pitt Spy Game 121259.0 361.0 English 92.0 2001.0 7.0 0.0 -92.0 1279.0 Action Crime
1644 Terrence Malick 584.0 13.0 Drama|Fantasy Brad Pitt The Tree of Life 136367.0 975.0 English 32.0 2011.0 6.7 39000.0 -19.0 1645.0 Drama Fantasy
1679 Patrick Gilmore 98.0 26.0 Adventure|Animation|Comedy|Drama|Family|Fantas... Brad Pitt Sinbad: Legend of the Seven Seas 36144.0 91.0 English 60.0 2003.0 6.7 880.0 -34.0 1680.0 Adventure Animation
2059 Doug Liman 233.0 186.0 Action|Comedy|Crime|Romance|Thriller Brad Pitt Mr. & Mrs. Smith 348861.0 798.0 English 120.0 2005.0 6.5 0.0 66.0 2060.0 Action Comedy
2168 Steven Soderbergh 198.0 125.0 Crime|Thriller Brad Pitt Ocean's Twelve 284852.0 627.0 English 110.0 2004.0 6.4 0.0 15.0 2169.0 Crime Thriller
2435 Andrew Dominik 414.0 14.0 Crime|Thriller Brad Pitt Killing Them Softly 111625.0 369.0 English 15.0 2012.0 6.2 20000.0 -1.0 2436.0 Crime Thriller
In [145]:
# Write your code for combining the three dataframes here
All_Three=pd.concat([Meryl_Streep,Leo_Caprio,Brad_Pitt])
All_Three.sort_values(by='actor_1_name',inplace=True)
All_Three
Out[145]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit Rank genre_1 genre_2
2435 Andrew Dominik 414.0 14.0 Crime|Thriller Brad Pitt Killing Them Softly 111625.0 369.0 English 15.0 2012.0 6.2 20000.0 -1.0 2436.0 Crime Thriller
8 David Fincher 315.0 37.0 Drama Brad Pitt Fight Club 1347461.0 2968.0 English 63.0 1999.0 8.8 48000.0 -26.0 9.0 Drama Drama
206 Tony Scott 122.0 12.0 Action|Crime|Drama|Romance|Thriller Brad Pitt True Romance 163492.0 460.0 English 13.0 1993.0 8.0 15000.0 -1.0 207.0 Action Crime
292 David Fincher 362.0 127.0 Drama|Fantasy|Romance Brad Pitt The Curious Case of Benjamin Button 459346.0 822.0 English 150.0 2008.0 7.8 23000.0 -23.0 293.0 Drama Fantasy
341 Steven Soderbergh 186.0 183.0 Crime|Thriller Brad Pitt Ocean's Eleven 402645.0 845.0 English 85.0 2001.0 7.8 0.0 98.0 342.0 Crime Thriller
454 Neil Jordan 120.0 105.0 Drama|Fantasy|Horror Brad Pitt Interview with the Vampire: The Vampire Chroni... 239752.0 406.0 English 60.0 1994.0 7.6 11000.0 45.0 455.0 Drama Fantasy
588 Alejandro G. Iñárritu 285.0 34.0 Drama Brad Pitt Babel 243799.0 908.0 English 25.0 2006.0 7.5 0.0 9.0 589.0 Drama Drama
449 David Ayer 406.0 85.0 Action|Drama|War Brad Pitt Fury 303185.0 701.0 English 68.0 2014.0 7.6 82000.0 17.0 450.0 Action Drama
925 Wolfgang Petersen 220.0 133.0 Adventure Brad Pitt Troy 381672.0 1694.0 English 175.0 2004.0 7.2 0.0 -42.0 926.0 Adventure Adventure
1175 Jean-Jacques Annaud 76.0 37.0 Adventure|Biography|Drama|History|War Brad Pitt Seven Years in Tibet 96385.0 119.0 English 70.0 1997.0 7.0 0.0 -33.0 1176.0 Adventure Biography
1278 Tony Scott 142.0 0.0 Action|Crime|Thriller Brad Pitt Spy Game 121259.0 361.0 English 92.0 2001.0 7.0 0.0 -92.0 1279.0 Action Crime
1644 Terrence Malick 584.0 13.0 Drama|Fantasy Brad Pitt The Tree of Life 136367.0 975.0 English 32.0 2011.0 6.7 39000.0 -19.0 1645.0 Drama Fantasy
1679 Patrick Gilmore 98.0 26.0 Adventure|Animation|Comedy|Drama|Family|Fantas... Brad Pitt Sinbad: Legend of the Seven Seas 36144.0 91.0 English 60.0 2003.0 6.7 880.0 -34.0 1680.0 Adventure Animation
2059 Doug Liman 233.0 186.0 Action|Comedy|Crime|Romance|Thriller Brad Pitt Mr. & Mrs. Smith 348861.0 798.0 English 120.0 2005.0 6.5 0.0 66.0 2060.0 Action Comedy
617 Andrew Dominik 273.0 3.0 Biography|Crime|Drama|History|Western Brad Pitt The Assassination of Jesse James by the Coward... 136104.0 415.0 English 30.0 2007.0 7.5 0.0 -27.0 618.0 Biography Crime
2168 Steven Soderbergh 198.0 125.0 Crime|Thriller Brad Pitt Ocean's Twelve 284852.0 627.0 English 110.0 2004.0 6.4 0.0 15.0 2169.0 Crime Thriller
1090 Ridley Scott 238.0 39.0 Action|Drama|Thriller Leonardo DiCaprio Body of Lies 174248.0 263.0 English 70.0 2008.0 7.1 0.0 -31.0 1091.0 Action Drama
2189 Randall Wallace 83.0 56.0 Action|Adventure Leonardo DiCaprio The Man in the Iron Mask 125219.0 244.0 English 35.0 1998.0 6.4 0.0 21.0 2190.0 Action Adventure
2071 Sam Raimi 63.0 18.0 Action|Thriller|Western Leonardo DiCaprio The Quick and the Dead 69197.0 216.0 English 32.0 1995.0 6.4 0.0 -14.0 2072.0 Action Thriller
1908 Clint Eastwood 392.0 37.0 Biography|Crime|Drama Leonardo DiCaprio J. Edgar 102728.0 279.0 English 35.0 2011.0 6.6 16000.0 2.0 1909.0 Biography Crime
1789 Danny Boyle 118.0 39.0 Adventure|Drama|Thriller Leonardo DiCaprio The Beach 176169.0 548.0 English 50.0 2000.0 6.6 0.0 -11.0 1790.0 Adventure Drama
1570 Baz Luhrmann 106.0 46.0 Drama|Romance Leonardo DiCaprio Romeo + Juliet 167750.0 506.0 English 14.0 1996.0 6.8 10000.0 32.0 1571.0 Drama Romance
857 Sam Mendes 323.0 22.0 Drama|Romance Leonardo DiCaprio Revolutionary Road 152591.0 414.0 English 35.0 2008.0 7.3 0.0 -13.0 858.0 Drama Romance
616 Martin Scorsese 267.0 102.0 Biography|Drama Leonardo DiCaprio The Aviator 264318.0 799.0 English 110.0 2004.0 7.5 0.0 -8.0 617.0 Biography Drama
822 Baz Luhrmann 490.0 144.0 Drama|Romance Leonardo DiCaprio The Great Gatsby 362933.0 753.0 English 105.0 2013.0 7.3 115000.0 39.0 823.0 Drama Romance
28 Martin Scorsese 352.0 132.0 Crime|Drama|Thriller Leonardo DiCaprio The Departed 873649.0 2054.0 English 90.0 2006.0 8.5 29000.0 42.0 29.0 Crime Drama
35 Quentin Tarantino 765.0 162.0 Drama|Western Leonardo DiCaprio Django Unchained 955174.0 1193.0 English 100.0 2012.0 8.5 199000.0 62.0 36.0 Drama Western
103 Martin Scorsese 606.0 116.0 Biography|Comedy|Crime|Drama Leonardo DiCaprio The Wolf of Wall Street 780588.0 1138.0 English 100.0 2013.0 8.2 138000.0 16.0 104.0 Biography Comedy
136 Martin Scorsese 490.0 127.0 Mystery|Thriller Leonardo DiCaprio Shutter Island 786092.0 964.0 English 80.0 2010.0 8.1 53000.0 47.0 137.0 Mystery Thriller
9 Christopher Nolan 642.0 292.0 Action|Adventure|Sci-Fi|Thriller Leonardo DiCaprio Inception 1468200.0 2803.0 English 160.0 2010.0 8.8 175000.0 132.0 10.0 Action Adventure
175 Edward Zwick 166.0 57.0 Adventure|Drama|Thriller Leonardo DiCaprio Blood Diamond 400292.0 657.0 English 100.0 2006.0 8.0 14000.0 -43.0 176.0 Adventure Drama
212 Steven Spielberg 194.0 164.0 Biography|Crime|Drama Leonardo DiCaprio Catch Me If You Can 525801.0 667.0 English 52.0 2002.0 8.0 15000.0 112.0 213.0 Biography Crime
432 James Cameron 315.0 658.0 Drama|Romance Leonardo DiCaprio Titanic 793059.0 2528.0 English 200.0 1997.0 7.7 26000.0 458.0 433.0 Drama Romance
566 Martin Scorsese 233.0 77.0 Crime|Drama Leonardo DiCaprio Gangs of New York 314033.0 1166.0 English 100.0 2002.0 7.5 0.0 -23.0 567.0 Crime Drama
137 Alejandro G. Iñárritu 556.0 183.0 Adventure|Drama|Thriller|Western Leonardo DiCaprio The Revenant 406020.0 1188.0 English 135.0 2015.0 8.1 190000.0 48.0 138.0 Adventure Drama
2470 Robert Redford 227.0 14.0 Drama|Thriller|War Meryl Streep Lions for Lambs 41170.0 298.0 English 35.0 2007.0 6.2 0.0 -21.0 2471.0 Drama Thriller
2267 David Frankel 234.0 63.0 Comedy|Drama|Romance Meryl Streep Hope Springs 34258.0 178.0 English 30.0 2012.0 6.3 0.0 33.0 2268.0 Comedy Drama
2241 Curtis Hanson 42.0 46.0 Action|Adventure|Crime|Thriller Meryl Streep The River Wild 32544.0 69.0 English 45.0 1994.0 6.3 0.0 1.0 2242.0 Action Adventure
2192 Phyllida Lloyd 331.0 29.0 Biography|Drama|History Meryl Streep The Iron Lady 82327.0 350.0 English 13.0 2011.0 6.4 18000.0 16.0 2193.0 Biography Drama
1858 Nancy Meyers 187.0 112.0 Comedy|Drama|Romance Meryl Streep It's Complicated 69860.0 214.0 English 85.0 2009.0 6.6 0.0 27.0 1859.0 Comedy Drama
1534 David Frankel 208.0 124.0 Comedy|Drama|Romance Meryl Streep The Devil Wears Prada 286178.0 631.0 English 35.0 2006.0 6.8 0.0 89.0 1535.0 Comedy Drama
1158 Nora Ephron 252.0 94.0 Biography|Drama|Romance Meryl Streep Julie & Julia 79264.0 277.0 English 40.0 2009.0 7.0 13000.0 54.0 1159.0 Biography Drama
997 Sydney Pollack 66.0 87.0 Biography|Drama|Romance Meryl Streep Out of Africa 52339.0 200.0 English 31.0 1985.0 7.2 0.0 56.0 998.0 Biography Drama
467 Stephen Daldry 174.0 41.0 Drama|Romance Meryl Streep The Hours 102123.0 660.0 English 25.0 2002.0 7.6 0.0 16.0 468.0 Drama Romance
In [152]:
# Write your code for grouping the combined dataframe here
Grouped=All_Three.groupby('actor_1_name').mean()
Grouped
Out[152]:
num_critic_for_reviews gross num_voted_users num_user_for_reviews budget title_year imdb_score movie_facebook_likes Profit Rank
actor_1_name
Brad Pitt 252.125000 70.000000 300809.312500 784.937500 73.000000 2003.687500 7.268750 14930.000000 -3.000000 1020.875000
Leonardo DiCaprio 336.789474 130.052632 468319.000000 967.368421 84.368421 2005.578947 7.547368 51578.947368 45.684211 777.052632
Meryl Streep 191.222222 67.777778 86673.666667 319.666667 37.666667 2003.888889 6.711111 3444.444444 30.111111 1688.111111
In [158]:
# Write the code for finding the mean of critic reviews and audience reviews here
Grouped.sort_values(by=['num_critic_for_reviews','num_user_for_reviews'],ascending=[False,False],inplace=True)
Grouped
Out[158]:
num_critic_for_reviews gross num_voted_users num_user_for_reviews budget title_year imdb_score movie_facebook_likes Profit Rank
actor_1_name
Leonardo DiCaprio 336.789474 130.052632 468319.000000 967.368421 84.368421 2005.578947 7.547368 51578.947368 45.684211 777.052632
Brad Pitt 252.125000 70.000000 300809.312500 784.937500 73.000000 2003.687500 7.268750 14930.000000 -3.000000 1020.875000
Meryl Streep 191.222222 67.777778 86673.666667 319.666667 37.666667 2003.888889 6.711111 3444.444444 30.111111 1688.111111
In [222]:
Top_actor=Grouped.iloc[0:1]
Top_actor
Out[222]:
num_critic_for_reviews gross num_voted_users num_user_for_reviews budget title_year imdb_score movie_facebook_likes Profit Rank
actor_1_name
Leonardo DiCaprio 336.789474 130.052632 468319.0 967.368421 84.368421 2005.578947 7.547368 51578.947368 45.684211 777.052632

Checkpoint 6: Leonardo has aced both the lists!

In [279]:
# Write the code for calculating decade here
import time
start=time.process_time()
print('Start time is:',start)
F['title_year']=F['title_year'].astype('int')
F['decade']=0
for i in range(F.shape[0]):
    F['decade'].iloc[i]=int(str(F['title_year'].iloc[i])[:3]+str('0'))
end=time.process_time()
print('End time is:',end)
print('Time difference is:',end-start)
F.head()
Start time is: 28.40625
End time is: 28.90625
Time difference is: 0.5
Out[279]:
director_name num_critic_for_reviews gross genres actor_1_name movie_title num_voted_users num_user_for_reviews language budget title_year imdb_score movie_facebook_likes Profit Rank genre_1 genre_2 decade
0 Frank Darabont 199.0 28.0 Crime|Drama Morgan Freeman The Shawshank Redemption 1689764.0 4144.0 English 25.0 1994 9.3 108000.0 3.0 1 Crime Drama 1990
1 Francis Ford Coppola 208.0 134.0 Crime|Drama Al Pacino The Godfather 1155770.0 2238.0 English 6.0 1972 9.2 43000.0 128.0 2 Crime Drama 1970
2 Christopher Nolan 645.0 533.0 Action|Crime|Drama|Thriller Christian Bale The Dark Knight 1676169.0 4667.0 English 185.0 2008 9.0 37000.0 348.0 3 Action Crime 2000
3 Francis Ford Coppola 149.0 57.0 Crime|Drama Robert De Niro The Godfather: Part II 790926.0 650.0 English 13.0 1974 9.0 14000.0 44.0 4 Crime Drama 1970
4 Peter Jackson 328.0 377.0 Action|Adventure|Drama|Fantasy Orlando Bloom The Lord of the Rings: The Return of the King 1215718.0 3189.0 English 94.0 2003 8.9 16000.0 283.0 5 Action Adventure 2000
In [287]:
# Write your code for creating the data frame df_by_decade here 
df_by_decade=F.groupby(by='decade').sum()
df_by_decade.sort_values(by=['num_voted_users'],ascending=False,inplace=True)
df_by_decade
Out[287]:
num_critic_for_reviews gross num_voted_users num_user_for_reviews budget title_year imdb_score movie_facebook_likes Profit Rank
decade
2000 217323.0 72443.0 159434290.0 574468.0 59543.0 2287437 7501.0 4063401.0 12900.0 2025590
2010 232227.0 55761.0 113525728.0 275273.0 43342.0 1517428 4977.2 25659000.0 12419.0 1343704
1990 47935.0 30620.0 66598763.0 179677.0 20755.0 884169 3015.2 1729504.0 9865.0 681917
1980 15895.0 9740.0 18560945.0 43476.0 3475.0 273973 969.9 676489.0 6265.0 174421
1970 5472.0 3246.0 8200671.0 18702.0 395.0 67166 260.4 270000.0 2851.0 22810
1960 2883.0 977.0 2944828.0 9013.0 132.0 39293 155.6 100000.0 845.0 9042
1930 635.0 404.0 783649.0 1654.0 8.0 7751 32.6 30000.0 396.0 673
1950 590.0 61.0 654542.0 1500.0 7.0 7824 33.4 21000.0 54.0 296
1940 301.0 183.0 202040.0 612.0 6.0 5826 23.4 3000.0 177.0 1016
1920 260.0 0.0 111841.0 413.0 6.0 1927 8.3 12000.0 -6.0 71
In [299]:
df_by_decade['DECADE']=0
df_by_decade
Out[299]:
num_critic_for_reviews gross num_voted_users num_user_for_reviews budget title_year imdb_score movie_facebook_likes Profit Rank DECADE
decade
2000 217323.0 72443.0 159434290.0 574468.0 59543.0 2287437 7501.0 4063401.0 12900.0 2025590 0
2010 232227.0 55761.0 113525728.0 275273.0 43342.0 1517428 4977.2 25659000.0 12419.0 1343704 0
1990 47935.0 30620.0 66598763.0 179677.0 20755.0 884169 3015.2 1729504.0 9865.0 681917 0
1980 15895.0 9740.0 18560945.0 43476.0 3475.0 273973 969.9 676489.0 6265.0 174421 0
1970 5472.0 3246.0 8200671.0 18702.0 395.0 67166 260.4 270000.0 2851.0 22810 0
1960 2883.0 977.0 2944828.0 9013.0 132.0 39293 155.6 100000.0 845.0 9042 0
1930 635.0 404.0 783649.0 1654.0 8.0 7751 32.6 30000.0 396.0 673 0
1950 590.0 61.0 654542.0 1500.0 7.0 7824 33.4 21000.0 54.0 296 0
1940 301.0 183.0 202040.0 612.0 6.0 5826 23.4 3000.0 177.0 1016 0
1920 260.0 0.0 111841.0 413.0 6.0 1927 8.3 12000.0 -6.0 71 0
In [304]:
P=list(df_by_decade.index)
for i in range(df_by_decade.shape[0]):
    df_by_decade['DECADE'].iloc[i]=P[i]
df_by_decade
Out[304]:
num_critic_for_reviews gross num_voted_users num_user_for_reviews budget title_year imdb_score movie_facebook_likes Profit Rank DECADE
decade
2000 217323.0 72443.0 159434290 574468.0 59543.0 2287437 7501.0 4063401.0 12900.0 2025590 2000
2010 232227.0 55761.0 113525728 275273.0 43342.0 1517428 4977.2 25659000.0 12419.0 1343704 2010
1990 47935.0 30620.0 66598763 179677.0 20755.0 884169 3015.2 1729504.0 9865.0 681917 1990
1980 15895.0 9740.0 18560945 43476.0 3475.0 273973 969.9 676489.0 6265.0 174421 1980
1970 5472.0 3246.0 8200671 18702.0 395.0 67166 260.4 270000.0 2851.0 22810 1970
1960 2883.0 977.0 2944828 9013.0 132.0 39293 155.6 100000.0 845.0 9042 1960
1930 635.0 404.0 783649 1654.0 8.0 7751 32.6 30000.0 396.0 673 1930
1950 590.0 61.0 654542 1500.0 7.0 7824 33.4 21000.0 54.0 296 1950
1940 301.0 183.0 202040 612.0 6.0 5826 23.4 3000.0 177.0 1016 1940
1920 260.0 0.0 111841 413.0 6.0 1927 8.3 12000.0 -6.0 71 1920
In [309]:
df_by_decade.astype('int')
Out[309]:
num_critic_for_reviews gross num_voted_users num_user_for_reviews budget title_year imdb_score movie_facebook_likes Profit Rank DECADE
decade
2000 217323 72443 159434290 574468 59543 2287437 7501 4063401 12900 2025590 2000
2010 232227 55761 113525728 275273 43342 1517428 4977 25659000 12419 1343704 2010
1990 47935 30620 66598763 179677 20755 884169 3015 1729504 9865 681917 1990
1980 15895 9740 18560945 43476 3475 273973 969 676489 6265 174421 1980
1970 5472 3246 8200671 18702 395 67166 260 270000 2851 22810 1970
1960 2883 977 2944828 9013 132 39293 155 100000 845 9042 1960
1930 635 404 783649 1654 8 7751 32 30000 396 673 1930
1950 590 61 654542 1500 7 7824 33 21000 54 296 1950
1940 301 183 202040 612 6 5826 23 3000 177 1016 1940
1920 260 0 111841 413 6 1927 8 12000 -6 71 1920
In [329]:
# Write your code for plotting number of voted users vs decade
import matplotlib
import matplotlib.pyplot as plt
f = plt.figure()
f.set_figwidth(15)
f.set_figheight(10)
ax=plt.gca()
df_by_decade.plot(kind='line',x='DECADE',y='num_voted_users',ax=ax,linewidth=5,color='black')
df_by_decade.plot(kind='line',x='DECADE',y='num_user_for_reviews',ax=ax,linewidth=5,color='red')
plt.xlabel('Decade')
plt.ylabel('Vote')
plt.show()
In [ ]: